aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazel
diff options
context:
space:
mode:
authorGravatar Ian Sturdy <sturdy@google.com>2018-03-07 12:11:21 -0800
committerGravatar Ian Sturdy <sturdy@google.com>2018-03-07 12:11:21 -0800
commit3a8c0d6a192cc969d9f9e5d72a968251d93459a7 (patch)
tree172682f6749333b460e2f0fadfde4b82837a7056 /bazel
parentec27b28121dec4c8a6cad0eab60efec706114718 (diff)
Add external bindings for targets needed for the cc_grpc_library rule.
Diffstat (limited to 'bazel')
-rw-r--r--bazel/grpc_deps.bzl10
1 files changed, 10 insertions, 0 deletions
diff --git a/bazel/grpc_deps.bzl b/bazel/grpc_deps.bzl
index a441c3ff3d..6b3a55379e 100644
--- a/bazel/grpc_deps.bzl
+++ b/bazel/grpc_deps.bzl
@@ -57,6 +57,16 @@ def grpc_deps():
actual = "@com_github_gflags_gflags//:gflags",
)
+ native.bind(
+ name = "grpc_cpp_plugin",
+ actual = "@com_github_grpc_grpc//:grpc_cpp_plugin"
+ )
+
+ native.bind(
+ name = "grpc++_codegen_proto",
+ actual = "@com_github_grpc_grpc//:grpc++_codegen_proto"
+ )
+
if "boringssl" not in native.existing_rules():
native.http_archive(
name = "boringssl",