aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/android/assets/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/examples/android/assets/BUILD')
-rw-r--r--tensorflow/examples/android/assets/BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/tensorflow/examples/android/assets/BUILD b/tensorflow/examples/android/assets/BUILD
new file mode 100644
index 0000000000..c827de7be1
--- /dev/null
+++ b/tensorflow/examples/android/assets/BUILD
@@ -0,0 +1,15 @@
+package(default_visibility = ["//visibility:public"])
+
+licenses(["notice"]) # Apache 2.0
+
+# It is necessary to use this filegroup rather than globbing the files in this
+# folder directly the examples/android:tensorflow_demo target due to the fact
+# that assets_dir is necessarily set to "" there (to allow using other
+# arbitrary targets as assets).
+filegroup(
+ name = "asset_files",
+ srcs = glob(
+ ["**/*"],
+ exclude = ["BUILD"],
+ ),
+)