aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/distribute
diff options
context:
space:
mode:
authorGravatar Yuefeng Zhou <yuefengz@google.com>2018-07-27 17:55:09 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-27 17:58:55 -0700
commit3aa0bd836e295674a5d071861c98f5f3c2c5e2cf (patch)
tree9d4609553f5eb512434bc5b232fe867e40f7aed3 /tensorflow/python/distribute
parente56f30652248d83ffce0de048d0c59244b4aa9c4 (diff)
Fix build failure.
PiperOrigin-RevId: 206401196
Diffstat (limited to 'tensorflow/python/distribute')
-rw-r--r--tensorflow/python/distribute/BUILD13
1 files changed, 8 insertions, 5 deletions
diff --git a/tensorflow/python/distribute/BUILD b/tensorflow/python/distribute/BUILD
index a29043d8b8..2bd0b4320a 100644
--- a/tensorflow/python/distribute/BUILD
+++ b/tensorflow/python/distribute/BUILD
@@ -1,11 +1,13 @@
-licenses(["notice"]) # Apache 2.0
-
package(
- default_visibility = [
- "//tensorflow:internal",
- ],
+ default_visibility = ["//tensorflow:internal"],
)
+licenses(["notice"]) # Apache 2.0
+
+exports_files(["LICENSE"])
+
+load("//tensorflow:tensorflow.bzl", "py_test")
+
py_library(
name = "distribute_coordinator",
srcs = [
@@ -23,6 +25,7 @@ py_test(
size = "small",
srcs = ["distribute_coordinator_test.py"],
srcs_version = "PY2AND3",
+ tags = ["no_pip"],
deps = [
":distribute_coordinator",
"//tensorflow/core:protos_all_py",