feat: adds python libraries for protobuf messages required by logging payloads.
PiperOrigin-RevId: 321404880
This commit is contained in:
parent
82f29df2e4
commit
3d29ffcf6c
|
|
@ -127,3 +127,26 @@ cc_grpc_library(
|
|||
grpc_only = True,
|
||||
deps = [":iam_policy_cc_proto"],
|
||||
)
|
||||
|
||||
##############################################################################
|
||||
# Python
|
||||
# ##############################################################################
|
||||
load(
|
||||
"@com_google_googleapis_imports//:imports.bzl",
|
||||
"py_proto_library",
|
||||
)
|
||||
|
||||
py_proto_library(
|
||||
name = "iam_policy_py_proto",
|
||||
deps = [":iam_policy_proto"]
|
||||
)
|
||||
|
||||
py_proto_library(
|
||||
name = "policy_py_proto",
|
||||
deps = [":policy_proto"]
|
||||
)
|
||||
|
||||
py_proto_library(
|
||||
name = "options_py_proto",
|
||||
deps = [":options_proto"]
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue