aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/BUILD
diff options
context:
space:
mode:
authorGravatar Yifei Feng <yifeif@google.com>2018-07-02 17:41:04 -0700
committerGravatar Yifei Feng <yifeif@google.com>2018-07-02 17:41:04 -0700
commitbf6ce077c426f2aa28034cf7ff6abff338dba63d (patch)
treea0629b6e3531b1ea214430d8d97a56d2e86b4305 /tensorflow/BUILD
parent16a965c5c9a64ef82ccfcb849dd61e6aad00d10e (diff)
parent4e55e566e17e5cbef4db8d86df5ea22c244c7031 (diff)
Merge commit for internal changes
Diffstat (limited to 'tensorflow/BUILD')
-rw-r--r--tensorflow/BUILD32
1 files changed, 16 insertions, 16 deletions
diff --git a/tensorflow/BUILD b/tensorflow/BUILD
index 6129fd0434..51eea94847 100644
--- a/tensorflow/BUILD
+++ b/tensorflow/BUILD
@@ -438,6 +438,22 @@ filegroup(
data = glob(["docs_src/**/*.md"]),
)
+cc_library(
+ name = "grpc",
+ deps = select({
+ ":linux_s390x": ["@grpc//:grpc_unsecure"],
+ "//conditions:default": ["@grpc"],
+ }),
+)
+
+cc_library(
+ name = "grpc++",
+ deps = select({
+ ":linux_s390x": ["@grpc//:grpc++_unsecure"],
+ "//conditions:default": ["@grpc//:grpc++"],
+ }),
+)
+
# A shared object which includes registration mechanisms for ops and
# kernels. Does not include the implementations of any ops or kernels. Instead,
# the library which loads libtensorflow_framework.so
@@ -587,19 +603,3 @@ py_library(
visibility = ["//visibility:public"],
deps = ["//tensorflow/python:no_contrib"],
)
-
-cc_library(
- name = "grpc",
- deps = select({
- ":linux_s390x": ["@grpc//:grpc_unsecure"],
- "//conditions:default": ["@grpc"],
- }),
-)
-
-cc_library(
- name = "grpc++",
- deps = select({
- ":linux_s390x": ["@grpc//:grpc++_unsecure"],
- "//conditions:default": ["@grpc//:grpc++"],
- }),
-)