aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/sycl
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 /third_party/sycl
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
Diffstat (limited to 'third_party/sycl')
-rw-r--r--third_party/sycl/BUILD15
1 files changed, 15 insertions, 0 deletions
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__"],
+)