forked from open-telemetry/opentelemetry-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With patch found by user posted in grpc now we can refer to grpc as... …
…@grpc :)
- Loading branch information
Showing
4 changed files
with
38 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/bazel/cc_grpc_library.bzl b/bazel/cc_grpc_library.bzl | ||
index 55ea11cd53f07..8177bf864ceaf 100644 | ||
--- a/bazel/cc_grpc_library.bzl | ||
+++ b/bazel/cc_grpc_library.bzl | ||
@@ -102,7 +102,7 @@ def cc_grpc_library( | ||
generate_cc( | ||
name = codegen_grpc_target, | ||
srcs = proto_targets, | ||
- plugin = "@com_github_grpc_grpc//src/compiler:grpc_cpp_plugin", | ||
+ plugin = Label("//src/compiler:grpc_cpp_plugin"), | ||
well_known_protos = well_known_protos, | ||
generate_mocks = generate_mocks, | ||
**kwargs | ||
@@ -114,6 +114,6 @@ def cc_grpc_library( | ||
hdrs = [":" + codegen_grpc_target], | ||
deps = deps + | ||
extra_deps + | ||
- ["@com_github_grpc_grpc//:grpc++_codegen_proto"], | ||
+ [Label("//:grpc++_codegen_proto")], | ||
**kwargs | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters