aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/BUILD')
-rw-r--r--tensorflow/BUILD43
1 files changed, 43 insertions, 0 deletions
diff --git a/tensorflow/BUILD b/tensorflow/BUILD
new file mode 100644
index 0000000000..0dd3cd0851
--- /dev/null
+++ b/tensorflow/BUILD
@@ -0,0 +1,43 @@
+# Description:
+# TensorFlow is a computational framework, primarily for use in machine
+# learning applications.
+
+package(default_visibility = [":internal"])
+
+licenses(["notice"]) # Apache 2.0
+
+exports_files([
+ "LICENSE",
+ "ACKNOWLEDGMENTS",
+])
+
+package_group(
+ name = "internal",
+ packages = ["//tensorflow/..."],
+)
+
+sh_binary(
+ name = "swig",
+ srcs = ["tools/swig/swig.sh"],
+ data = glob(["tools/swig/**"]),
+)
+
+filegroup(
+ name = "all_files",
+ srcs = glob(
+ ["**/*"],
+ exclude = [
+ "**/METADATA",
+ "**/OWNERS",
+ "g3doc/sitemap.md",
+ ],
+ ),
+ visibility = ["//tensorflow:__subpackages__"],
+)
+
+py_library(
+ name = "tensorflow_py",
+ srcs = ["__init__.py"],
+ visibility = ["//visibility:public"],
+ deps = ["//tensorflow/python"],
+)