aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/BUILD
diff options
context:
space:
mode:
authorGravatar Michael Case <mikecase@google.com>2018-06-29 16:11:50 -0700
committerGravatar Michael Case <mikecase@google.com>2018-06-29 16:11:50 -0700
commit5d636b95de694196bd85e80e284b4ea2c75b88a2 (patch)
treec2ee6bedb60b4daaba2533be834ec6c938ff79c8 /tensorflow/contrib/BUILD
parenteea2006d59cf71985335142317367a786ed41d44 (diff)
Attempt to fix Windows Bazel build.
Excluded dependency on contrib/bigtable from Windows build. There are several Bazel build errors when trying to build it.
Diffstat (limited to 'tensorflow/contrib/BUILD')
-rw-r--r--tensorflow/contrib/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/BUILD b/tensorflow/contrib/BUILD
index 229b0c481f..1c91f471da 100644
--- a/tensorflow/contrib/BUILD
+++ b/tensorflow/contrib/BUILD
@@ -25,7 +25,6 @@ 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",
@@ -127,6 +126,7 @@ py_library(
}) + if_not_windows_cuda([
"//tensorflow/contrib/fused_conv:fused_conv_py", # unresolved symbols, need to export more symbols
]) + if_not_windows([
+ "//tensorflow/contrib/bigtable",
"//tensorflow/contrib/ffmpeg:ffmpeg_ops_py",
"//tensorflow/contrib/lite/python:lite", # unix dependency, need to fix code
]),