From 942545c98db7f29dbbd7b9ed765e1289656f93d5 Mon Sep 17 00:00:00 2001 From: Austin Anderson Date: Tue, 7 Nov 2017 18:39:17 -0800 Subject: 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 --- third_party/tflite_mobilenet.BUILD | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 third_party/tflite_mobilenet.BUILD (limited to 'third_party/tflite_mobilenet.BUILD') 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", + ], + ), +) -- cgit v1.2.3