aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/BUILD')
-rw-r--r--tensorflow/docs_src/BUILD14
1 files changed, 14 insertions, 0 deletions
diff --git a/tensorflow/docs_src/BUILD b/tensorflow/docs_src/BUILD
new file mode 100644
index 0000000000..34bf7b6a11
--- /dev/null
+++ b/tensorflow/docs_src/BUILD
@@ -0,0 +1,14 @@
+# Files used to generate TensorFlow docs.
+
+licenses(["notice"]) # Apache 2.0
+
+package(
+ default_visibility = ["//tensorflow:internal"],
+)
+
+exports_files(["LICENSE"])
+
+filegroup(
+ name = "docs_src",
+ data = glob(["**/*.md"]),
+)