aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/debug/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/debug/BUILD')
-rw-r--r--tensorflow/python/debug/BUILD6
1 files changed, 4 insertions, 2 deletions
diff --git a/tensorflow/python/debug/BUILD b/tensorflow/python/debug/BUILD
index 84bcd8e701..952c4adbfa 100644
--- a/tensorflow/python/debug/BUILD
+++ b/tensorflow/python/debug/BUILD
@@ -15,6 +15,7 @@ exports_files(["LICENSE"])
load("//tensorflow:tensorflow.bzl", "cuda_py_test")
load("//tensorflow:tensorflow.bzl", "py_test")
+load("//tensorflow:tensorflow.bzl", "if_not_windows")
py_library(
name = "debug_py",
@@ -33,11 +34,12 @@ py_library(
py_library(
name = "debug_pip",
deps = [
- ":debug_examples",
":debug_py",
":offline_analyzer",
":session_debug_testlib",
- ],
+ ] + if_not_windows([
+ ":debug_examples",
+ ]),
)
py_library(