Skip to content

Commit bfbc309

Browse files
committed
Add explicit load for @rules_proto
1 parent f328ac6 commit bfbc309

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

bazel/grpc_deps.bzl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,14 @@ def grpc_deps():
138138
url = "https://github.com/bazelbuild/rules_cc/archive/624b5d59dfb45672d4239422fa1e3de1822ee110.tar.gz", #2019-08-15
139139
)
140140

141+
if not native.existing_rule("rules_proto"):
142+
http_archive(
143+
name = "rules_proto",
144+
sha256 = "88b0a90433866b44bb4450d4c30bc5738b8c4f9c9ba14e9661deb123f56a833d",
145+
strip_prefix = "rules_proto-b0cc14be5da05168b01db282fe93bdf17aa2b9f4",
146+
urls = ["https://github.com/bazelbuild/rules_proto/archive/b0cc14be5da05168b01db282fe93bdf17aa2b9f4.tar.gz"],
147+
)
148+
141149
if "com_github_gflags_gflags" not in native.existing_rules():
142150
http_archive(
143151
name = "com_github_gflags_gflags",

0 commit comments

Comments
 (0)