aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-03-22 08:01:43 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-03-22 14:06:14 -0700
commitd48632335f62890b29d57744cab118056d3bb85a (patch)
treef54afd3f77ec52ef6bc87b17878426ded702162c
parent20a316fbbd51faa01e3e52c2e2e64d45c55d4df3 (diff)
Expose filegroups from the android example.
Change: 117827602
-rw-r--r--tensorflow/examples/android/BUILD20
1 files changed, 20 insertions, 0 deletions
diff --git a/tensorflow/examples/android/BUILD b/tensorflow/examples/android/BUILD
index 9c13975772..0165f5e2c3 100644
--- a/tensorflow/examples/android/BUILD
+++ b/tensorflow/examples/android/BUILD
@@ -95,3 +95,23 @@ filegroup(
),
visibility = ["//tensorflow:__subpackages__"],
)
+
+filegroup(
+ name = "java_files",
+ srcs = glob(["src/**/*.java"]),
+)
+
+filegroup(
+ name = "jni_files",
+ srcs = glob([
+ "jni/**/*.cc",
+ "jni/**/*.h",
+ ]),
+)
+
+filegroup(
+ name = "resource_files",
+ srcs = glob(["res/**"]),
+)
+
+exports_files(["AndroidManifest.xml"])