Skip to content

Commit

Permalink
fix: missing flag in cc_grpc_library (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan committed Nov 17, 2021
1 parent 5f8b46b commit 940ffd3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,5 +342,6 @@ cc_proto_library(
cc_grpc_library(
name = "{{name}}_cc_grpc",
srcs = [":{{name}}_proto"],
grpc_only = True,
deps = [":{{name}}_cc_proto"],
)
Original file line number Diff line number Diff line change
Expand Up @@ -172,5 +172,6 @@ cc_proto_library(
cc_grpc_library(
name = "{{name}}_cc_grpc",
srcs = [":{{name}}_proto"],
grpc_only = True,
deps = [":{{name}}_cc_proto"],
)
Original file line number Diff line number Diff line change
Expand Up @@ -176,5 +176,6 @@ cc_proto_library(
cc_grpc_library(
name = "types_cc_grpc",
srcs = [":types_proto"],
grpc_only = True,
deps = [":types_cc_proto"],
)
Original file line number Diff line number Diff line change
Expand Up @@ -368,5 +368,6 @@ cc_proto_library(
cc_grpc_library(
name = "library_cc_grpc",
srcs = [":library_proto"],
grpc_only = True,
deps = [":library_cc_proto"],
)
Original file line number Diff line number Diff line change
Expand Up @@ -358,5 +358,6 @@ cc_proto_library(
cc_grpc_library(
name = "library_cc_grpc",
srcs = [":library_proto"],
grpc_only = True,
deps = [":library_cc_proto"],
)

0 comments on commit 940ffd3

Please sign in to comment.