Skip to content

Commit 9e36f4e

Browse files
Google APIscopybara-github
authored andcommitted
feat: generate java files for error_reason.proto, bigquery_audit_metadata.proto and localized_text.proto
PiperOrigin-RevId: 393186792
1 parent 4b6bb3d commit 9e36f4e

3 files changed

Lines changed: 23 additions & 1 deletion

File tree

google/api/BUILD.bazel

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ proto_library(
9090
deps = [":annotations_proto"],
9191
)
9292

93+
proto_library(
94+
name = "error_reason_proto",
95+
srcs = ["error_reason.proto"],
96+
)
97+
9398
proto_library(
9499
name = "field_behavior_proto",
95100
srcs = ["field_behavior.proto"],
@@ -255,6 +260,7 @@ java_proto_library(
255260
"distribution_proto",
256261
"documentation_proto",
257262
"endpoint_proto",
263+
"error_reason_proto",
258264
"field_behavior_proto",
259265
"http_proto",
260266
"httpbody_proto",

google/cloud/audit/BUILD.bazel

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,19 @@ proto_library(
2121
],
2222
)
2323

24+
proto_library(
25+
name = "bigquery_audit_metadata_proto",
26+
srcs = [
27+
"bigquery_audit_metadata.proto",
28+
],
29+
deps = [
30+
"//google/iam/v1:policy_proto",
31+
"//google/rpc:status_proto",
32+
"@com_google_protobuf//:duration_proto",
33+
"@com_google_protobuf//:timestamp_proto",
34+
],
35+
)
36+
2437
##############################################################################
2538
# Java
2639
##############################################################################
@@ -32,7 +45,9 @@ load(
3245

3346
java_proto_library(
3447
name = "audit_java_proto",
35-
deps = [":audit_proto"],
48+
deps = [":audit_proto",
49+
":bigquery_audit_metadata_proto",
50+
],
3651
)
3752

3853
java_grpc_library(

google/type/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ java_proto_library(
118118
":fraction_proto",
119119
":interval_proto",
120120
":latlng_proto",
121+
":localized_text_proto",
121122
":money_proto",
122123
":month_proto",
123124
":phone_number_proto",

0 commit comments

Comments
 (0)