Files
rk35xx-android14/external/tflite-support/tensorflow_lite_support/BUILD
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

39 lines
1.0 KiB
Python

# 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"],
)