aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/BUILD
diff options
context:
space:
mode:
authorGravatar Asim Shankar <ashankar@google.com>2017-01-13 12:20:46 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-13 12:29:29 -0800
commitfb067ef2f3e0075d385d120a2a6367dddb76636c (patch)
treea26e515f89cd2f001be3fd92ebae6314a1803220 /tensorflow/c/BUILD
parentc4e3d4a74e86fce3a09badd20952f067ff340f32 (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: 144470928
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 a6bc8fdc49..9e8ea84baf 100644
--- a/tensorflow/c/BUILD
+++ b/tensorflow/c/BUILD
@@ -20,6 +20,12 @@ load(
# -----------------------------------------------------------------------------
# Public targets
+filegroup(
+ name = "headers",
+ srcs = ["c_api.h"],
+ visibility = ["//tensorflow:__subpackages__"],
+)
+
tf_cuda_library(
name = "c_api",
srcs = ["c_api.cc"],