-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make alias protocol_compiler visible (#1190)
* Make alias protocol_compiler visible * Workaround for broken macOS CI See bazelbuild/bazel#10472 for further info.
- Loading branch information
Showing
5 changed files
with
578 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
module( | ||
name = "grpc", | ||
compatibility_level = 1, | ||
repo_name = "com_github_grpc_grpc", | ||
version = "1.48.1.bcr.3", | ||
) | ||
|
||
bazel_dep(name = "bazel_skylib", version = "1.2.0") | ||
bazel_dep(name = "boringssl", version = "0.0.0-20211025-d4f1ab9") | ||
bazel_dep(name = "c-ares", repo_name = "com_github_cares_cares", version = "1.15.0") | ||
bazel_dep(name = "abseil-cpp", repo_name = "com_google_absl", version = "20220623.1") | ||
bazel_dep(name = "protobuf", repo_name = "com_google_protobuf", version = "3.19.2") | ||
bazel_dep(name = "re2", repo_name = "com_googlesource_code_re2", version = "2021-09-01") | ||
bazel_dep(name = "rules_proto", version = "4.0.0") | ||
bazel_dep(name = "upb", version = "0.0.0-20220602-e5f2601") | ||
bazel_dep(name = "zlib", version = "1.2.13") | ||
bazel_dep(name = "rules_java", version = "5.1.0") | ||
bazel_dep(name = "rules_go", repo_name = "io_bazel_rules_go", version = "0.39.1") | ||
|
||
grpc_repo_deps_ext = use_extension("//bazel:grpc_deps.bzl", "grpc_repo_deps_ext") | ||
|
||
use_repo( | ||
grpc_repo_deps_ext, | ||
"com_envoyproxy_protoc_gen_validate", | ||
"com_google_googleapis", | ||
"com_github_cncf_udpa", | ||
"envoy_api", | ||
) | ||
|
||
grpc_extra_deps_ext = use_extension("//bazel:grpc_extra_deps.bzl", "grpc_extra_deps_ext") | ||
|
||
use_repo(grpc_extra_deps_ext, "com_google_googleapis_imports") |
Oops, something went wrong.