Merge pull request #13257 from vjpai/pb_header

Make gRPC C++ library depend on protobuf_headers,  not protobuf
pull/13235/head
Vijay Pai 7 years ago committed by GitHub
commit 6da4f51e06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      BUILD
  2. 5
      WORKSPACE
  3. 1
      test/cpp/codegen/BUILD

@ -1545,7 +1545,7 @@ grpc_cc_library(
grpc_cc_library(
name = "grpc++_config_proto",
external_deps = [
"protobuf",
"protobuf_headers",
],
language = "c++",
public_hdrs = [

@ -23,6 +23,11 @@ bind(
actual = "@com_google_protobuf//:protoc_lib",
)
bind(
name = "protobuf_headers",
actual = "@com_google_protobuf//:protobuf_headers",
)
bind(
name = "protocol_compiler",
actual = "@com_google_protobuf//:protoc",

@ -51,6 +51,7 @@ grpc_cc_test(
],
external_deps = [
"gtest",
"protobuf",
],
)

Loading…
Cancel
Save