aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <bsteiner@google.com>2016-11-09 16:11:16 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-11-09 16:22:46 -0800
commit58b4581d0ef07a3016d44bfae0cc28738bce2e90 (patch)
tree3c4718574d152fca9ae04da7330d49962bb19aff
parent2c3f8bb5b4c49613a872f57b7d0a2d539049a573 (diff)
List all the files in third_party/sycl in a new "all_files" filegroup, which is then added to the list of dependencies in the main "all_opensource_files" filegroup
Change: 138698669
-rw-r--r--tensorflow/BUILD1
-rw-r--r--third_party/sycl/BUILD15
2 files changed, 16 insertions, 0 deletions
diff --git a/tensorflow/BUILD b/tensorflow/BUILD
index ac4dbba22d..ccef57b5a8 100644
--- a/tensorflow/BUILD
+++ b/tensorflow/BUILD
@@ -182,6 +182,7 @@ filegroup(
"//tensorflow/tools/tfprof/internal:all_files",
"//tensorflow/user_ops:all_files",
"//third_party/hadoop:all_files",
+ "//third_party/sycl:all_files",
],
visibility = [":__subpackages__"],
)
diff --git a/third_party/sycl/BUILD b/third_party/sycl/BUILD
index e69de29bb2..fbdf19f205 100644
--- a/third_party/sycl/BUILD
+++ b/third_party/sycl/BUILD
@@ -0,0 +1,15 @@
+package(default_visibility = ["//visibility:public"])
+
+licenses(["notice"]) # Apache 2.0
+
+filegroup(
+ name = "all_files",
+ srcs = glob(
+ ["**/*"],
+ exclude = [
+ "**/METADATA",
+ "**/OWNERS",
+ ],
+ ),
+ visibility = ["//tensorflow:__subpackages__"],
+)