aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/BUILD
diff options
context:
space:
mode:
authorGravatar Michael Case <mikecase@google.com>2018-06-29 14:21:35 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-29 14:24:29 -0700
commit56d3d718911749bb96fe97ef850bdf75e2290a39 (patch)
tree4ff5e47365d5404904eec4089c2fc7e905715323 /tensorflow/BUILD
parent834da2c3fddab1bbbce742db572cfe65dd320fcd (diff)
Internal Change.
PiperOrigin-RevId: 202706517
Diffstat (limited to 'tensorflow/BUILD')
-rw-r--r--tensorflow/BUILD10
1 files changed, 8 insertions, 2 deletions
diff --git a/tensorflow/BUILD b/tensorflow/BUILD
index 233fe21fbf..0bce474dfa 100644
--- a/tensorflow/BUILD
+++ b/tensorflow/BUILD
@@ -590,10 +590,16 @@ py_library(
cc_library(
name = "grpc",
- deps = ["@grpc"],
+ deps = select({
+ ":linux_s390x": ["@grpc//:grpc_unsecure"],
+ "//conditions:default": ["@grpc"],
+ }),
)
cc_library(
name = "grpc++",
- deps = ["@grpc//:grpc++"],
+ deps = select({
+ ":linux_s390x": ["@grpc//:grpc++_unsecure"],
+ "//conditions:default": ["@grpc//:grpc++"],
+ }),
)