aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/BUILD
diff options
context:
space:
mode:
authorGravatar Yifei Feng <yifeif@google.com>2018-07-02 17:07:06 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-02 17:10:57 -0700
commit73e38c29c74d9d9bf7128bf4737a410ff005611e (patch)
treef84c84429850d1b38cb4c0f0df24aadfefc7db8e /tensorflow/BUILD
parenteacdfdf6c0353ac0578afbd962dbbafa6121c28f (diff)
Merge changes from github.
PiperOrigin-RevId: 203037623
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 0bce474dfa..f362900387 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++"],
- }),
-)