You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
# TFLite Support is a toolkit that helps users to develop ML and deploy TFLite
|
|
# models onto mobile devices.
|
|
|
|
package(
|
|
default_visibility = ["//visibility:private"],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
# LINT.IfChange
|
|
package_group(
|
|
name = "users",
|
|
packages = [
|
|
# tensorflow_examples/... dep,
|
|
"//tensorflow_lite_support/...",
|
|
"//third_party/tensorflow_models/...",
|
|
],
|
|
)
|
|
# Remove internal path from tensorflow_lite_support:users in the copybara file.
|
|
# LINT.ThenChange(//tensorflow_lite_support/copy.bara.sky)
|
|
|
|
# Config setting for determining if we are building for Android.
|
|
config_setting(
|
|
name = "android",
|
|
values = {"crosstool_top": "//external:android/crosstool"},
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
# Config setting for determining if we are building for macos.
|
|
config_setting(
|
|
name = "macos",
|
|
values = {
|
|
"apple_platform_type": "macos",
|
|
"cpu": "darwin",
|
|
},
|
|
visibility = ["//visibility:public"],
|
|
)
|