aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazel/grpc_deps.bzl
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2018-05-31 16:45:03 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2018-05-31 16:45:03 -0700
commit483b4b7bded98fd008e7db6007a95a8a32d943e5 (patch)
tree733c1483d20b35782096d93ab93ba86629f764e1 /bazel/grpc_deps.bzl
parent2a0d447d272cea8a5e077a16799f860edef7295e (diff)
Treat nanopb as a regular external dep
Diffstat (limited to 'bazel/grpc_deps.bzl')
-rw-r--r--bazel/grpc_deps.bzl10
1 files changed, 8 insertions, 2 deletions
diff --git a/bazel/grpc_deps.bzl b/bazel/grpc_deps.bzl
index 53073941f3..50d1d24303 100644
--- a/bazel/grpc_deps.bzl
+++ b/bazel/grpc_deps.bzl
@@ -2,6 +2,12 @@
def grpc_deps():
"""Loads dependencies need to compile and test the grpc library."""
+
+ native.bind(
+ name = "nanopb",
+ actual = "@com_github_grpc_grpc//third_party/nanopb:nanopb",
+ )
+
native.bind(
name = "libssl",
actual = "@boringssl//:ssl",
@@ -59,12 +65,12 @@ def grpc_deps():
native.bind(
name = "grpc_cpp_plugin",
- actual = "@com_github_grpc_grpc//: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"
+ actual = "@com_github_grpc_grpc//:grpc++_codegen_proto",
)
if "boringssl" not in native.existing_rules():