aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/BUILD
diff options
context:
space:
mode:
authorGravatar Asim Shankar <ashankar@google.com>2016-11-11 16:48:56 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-11-11 17:03:21 -0800
commit2ff6ffac1234e11e5cbfd2c96f207407889c707a (patch)
treed0e1930a1f4aa62490d37bb72d781e9eed184341 /tensorflow/c/BUILD
parent1743ad893859ea342c3c6b04a5292b763ae4aead (diff)
C API: Package rules for a C library and header files.
The intent is to produce a libtensorflow.tar.gz as part of the release process to facilitate a leaner (no Python dependencies), smoother installation process for TensorFlow usage in other languages. Change: 138934248
Diffstat (limited to 'tensorflow/c/BUILD')
-rw-r--r--tensorflow/c/BUILD6
1 files changed, 6 insertions, 0 deletions
diff --git a/tensorflow/c/BUILD b/tensorflow/c/BUILD
index 7afac44452..824e8f064f 100644
--- a/tensorflow/c/BUILD
+++ b/tensorflow/c/BUILD
@@ -19,6 +19,12 @@ load(
# -----------------------------------------------------------------------------
# Public targets
+filegroup(
+ name = "headers",
+ srcs = ["c_api.h"],
+ visibility = ["//tensorflow:__subpackages__"],
+)
+
tf_cuda_library(
name = "c_api",
srcs = ["c_api.cc"],