aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/tools
diff options
context:
space:
mode:
authorGravatar gracehoney <31743510+aaroey@users.noreply.github.com>2018-08-03 14:54:07 -0700
committerGravatar gracehoney <31743510+aaroey@users.noreply.github.com>2018-08-03 14:54:07 -0700
commit8636c6dbbe1446cc139e6c23a435ca7cd0844fca (patch)
tree58e19d65a3cfcefe693681d6e8033cb93f081ed5 /tensorflow/python/tools
parent16007c5820b7cd3fd6406871860d16d05e7ca97f (diff)
Fix windows build.
Diffstat (limited to 'tensorflow/python/tools')
-rw-r--r--tensorflow/python/tools/BUILD6
1 files changed, 4 insertions, 2 deletions
diff --git a/tensorflow/python/tools/BUILD b/tensorflow/python/tools/BUILD
index 13e59d75d0..4add925b89 100644
--- a/tensorflow/python/tools/BUILD
+++ b/tensorflow/python/tools/BUILD
@@ -8,6 +8,7 @@ licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
load("//tensorflow:tensorflow.bzl", "py_test")
+load("//tensorflow:tensorflow.bzl", "if_not_windows")
# Transitive dependencies of this target will be included in the pip package.
py_library(
@@ -63,14 +64,15 @@ py_binary(
srcs = ["import_pb_to_tensorboard.py"],
srcs_version = "PY2AND3",
deps = [
- "//tensorflow/contrib/tensorrt:init_py",
"//tensorflow/core:protos_all_py",
"//tensorflow/python:client",
"//tensorflow/python:framework",
"//tensorflow/python:framework_ops",
"//tensorflow/python:platform",
"//tensorflow/python:summary",
- ],
+ ] + if_not_windows([
+ "//tensorflow/contrib/tensorrt:init_py",
+ ]),
)
py_test(