aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/tflite_mobilenet.BUILD
diff options
context:
space:
mode:
authorGravatar Austin Anderson <angerson@google.com>2017-11-07 18:39:17 -0800
committerGravatar Andrew Selle <aselle@andyselle.com>2017-11-10 16:14:34 -0800
commit942545c98db7f29dbbd7b9ed765e1289656f93d5 (patch)
treef7ab7252f46337235aab4fedea3501907cf3f77b /third_party/tflite_mobilenet.BUILD
parent54837e40096c35322e75d43a13bbf44c933f59db (diff)
Fix Bazel builds for the TF Lite demo app
Adds a new remote repository for the mobilenet tflite models necessary for running the TF Lite demo app. PiperOrigin-RevId: 174946867
Diffstat (limited to 'third_party/tflite_mobilenet.BUILD')
-rw-r--r--third_party/tflite_mobilenet.BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/tflite_mobilenet.BUILD b/third_party/tflite_mobilenet.BUILD
new file mode 100644
index 0000000000..75663eff48
--- /dev/null
+++ b/third_party/tflite_mobilenet.BUILD
@@ -0,0 +1,13 @@
+package(default_visibility = ["//visibility:public"])
+
+licenses(["notice"]) # Apache 2.0
+
+filegroup(
+ name = "model_files",
+ srcs = glob(
+ ["**/*"],
+ exclude = [
+ "BUILD",
+ ],
+ ),
+)