From 483b4b7bded98fd008e7db6007a95a8a32d943e5 Mon Sep 17 00:00:00 2001 From: David Garcia Quintas Date: Thu, 31 May 2018 16:45:03 -0700 Subject: Treat nanopb as a regular external dep --- bazel/grpc_deps.bzl | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'bazel/grpc_deps.bzl') 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(): -- cgit v1.2.3