aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-02-19 05:54:27 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-02-19 05:58:42 -0800
commitf730a0259838558ccefcd48ad132fe039dd2ee6d (patch)
treec00762808a4dedda2ef1705abc7a9564f6ac8211 /tensorflow/c/BUILD
parentdc34d5d0425adfa2aa384b43731c6cfa2c29228d (diff)
Remove experimental C API from srcs rule as it requires other sources
PiperOrigin-RevId: 186213207
Diffstat (limited to 'tensorflow/c/BUILD')
-rw-r--r--tensorflow/c/BUILD6
1 files changed, 5 insertions, 1 deletions
diff --git a/tensorflow/c/BUILD b/tensorflow/c/BUILD
index 85cfa98908..5dfb743681 100644
--- a/tensorflow/c/BUILD
+++ b/tensorflow/c/BUILD
@@ -28,7 +28,11 @@ filegroup(
"*.cc",
"*.h",
],
- exclude = ["*test*"],
+ exclude = [
+ "c_api_experimental.cc",
+ "c_api_experimental.h",
+ "*test*",
+ ],
),
visibility = ["//visibility:public"],
)