Skip to content

Commit

Permalink
fix(bazel): add service_yaml to py_gapic_library (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahdietz committed Apr 14, 2022
1 parent eae0a07 commit 39fad2d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ py_gapic_library(
name = "{{name}}_py_gapic",
srcs = [":{{name}}_proto"],
grpc_service_config = {{grpc_service_config}},
service_yaml = {{service_yaml}},
)

# Open Source Packages
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ py_gapic_library(
name = "library_py_gapic",
srcs = [":library_proto"],
grpc_service_config = "library_example_grpc_service_config.json",
service_yaml = "library_example_v1.yaml",
)

# Open Source Packages
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ py_gapic_library(
name = "library_py_gapic",
srcs = [":library_proto"],
grpc_service_config = "library_example_grpc_service_config.json",
service_yaml = "//google/example/library:library_example_v1.yaml",
)

# Open Source Packages
Expand Down

0 comments on commit 39fad2d

Please sign in to comment.