Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
Add sample_config.proto to the config_java_proto BUILD target (#2852)
Browse files Browse the repository at this point in the history
* Add sample_config.proto to the config_java_proto BUILD target

* Cosmetic: convert tab to space
  • Loading branch information
vchudnov-g authored Jun 24, 2019
1 parent 438c88e commit 1b1ee16
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,17 @@ proto_library(
deps = ["@com_google_protobuf//:wrappers_proto"],
)

proto_library(
name = "sample_config_proto",
srcs = ["src/main/proto/com/google/api/codegen/samplegen/v1/sample_config_v1.proto"],
deps = ["@com_google_protobuf//:wrappers_proto"],
)

java_proto_library(
name = "config_java_proto",
deps = [":config_proto",
":config_v2_proto"],
":config_v2_proto",
":sample_config_proto"],
)

java_binary(
Expand Down

0 comments on commit 1b1ee16

Please sign in to comment.