aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/go/BUILD
diff options
context:
space:
mode:
authorGravatar Jonathan Hseu <jhseu@google.com>2016-08-23 09:01:25 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-08-23 10:04:53 -0700
commit783c52edeb3c676937dbb97ed0d40958015050d6 (patch)
tree80c74954f68dad26a6e76a1c0edcb979d4d1804c /tensorflow/go/BUILD
parent096069687c52e16eaa18c1db6e7bbf2737639257 (diff)
Initial version of the Go API. The API is subject to change.
Remaining work to do: - Generated ops. - Generated protocol buffers. - A few calls requiring protocol buffers aren't in this change. Change: 131066649
Diffstat (limited to 'tensorflow/go/BUILD')
-rw-r--r--tensorflow/go/BUILD22
1 files changed, 22 insertions, 0 deletions
diff --git a/tensorflow/go/BUILD b/tensorflow/go/BUILD
new file mode 100644
index 0000000000..d69233f4fe
--- /dev/null
+++ b/tensorflow/go/BUILD
@@ -0,0 +1,22 @@
+# Description:
+# Go API for TensorFlow.
+
+package(
+ default_visibility = ["//visibility:private"],
+)
+
+licenses(["notice"]) # Apache 2.0
+
+exports_files(["LICENSE"])
+
+filegroup(
+ name = "all_files",
+ srcs = glob(
+ ["**/*"],
+ exclude = [
+ "**/METADATA",
+ "**/OWNERS",
+ ],
+ ),
+ visibility = ["//tensorflow:__subpackages__"],
+)