aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-07-02 09:14:30 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-02 09:17:23 -0700
commite0c1283d99ca46b883789fa0c116f1b153af7c4c (patch)
treeccb7aab21bf2486877521c36c4d77f33df8ce40e /tensorflow/contrib/BUILD
parent4443fe234bc778913090ebcf8a47be1e8ba14ccb (diff)
Exclude tensorflow/contrib/bigtable on Windows
Fix Windows failure caused by cl/202664219 PiperOrigin-RevId: 202960843
Diffstat (limited to 'tensorflow/contrib/BUILD')
-rw-r--r--tensorflow/contrib/BUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/contrib/BUILD b/tensorflow/contrib/BUILD
index 229b0c481f..8974e6867d 100644
--- a/tensorflow/contrib/BUILD
+++ b/tensorflow/contrib/BUILD
@@ -25,10 +25,8 @@ py_library(
"//tensorflow/contrib/all_reduce",
"//tensorflow/contrib/batching:batch_py",
"//tensorflow/contrib/bayesflow:bayesflow_py",
- "//tensorflow/contrib/bigtable",
"//tensorflow/contrib/boosted_trees:init_py",
"//tensorflow/contrib/checkpoint/python:checkpoint",
- "//tensorflow/contrib/cloud:cloud_py",
"//tensorflow/contrib/cluster_resolver:cluster_resolver_pip",
"//tensorflow/contrib/cluster_resolver:cluster_resolver_py",
"//tensorflow/contrib/coder:coder_py",
@@ -128,6 +126,8 @@ py_library(
"//tensorflow/contrib/fused_conv:fused_conv_py", # unresolved symbols, need to export more symbols
]) + if_not_windows([
"//tensorflow/contrib/ffmpeg:ffmpeg_ops_py",
+ "//tensorflow/contrib/cloud:cloud_py", # depends on bigtable
+ "//tensorflow/contrib/bigtable", # doesn't compile on Windows
"//tensorflow/contrib/lite/python:lite", # unix dependency, need to fix code
]),
)