chore(python): Add build rule for //google/rpc:rpc-py to prepare for release

chore: Add build rule for //google/rpc:http_proto to prepare for release
chore(python): Add build rule for //google/rpc:http_py_proto to prepare for release

PiperOrigin-RevId: 707115605
This commit is contained in:
Google APIs 2024-12-17 08:39:40 -08:00 committed by Copybara-Service
parent b82d9bc55c
commit bc87a7e197

View file

@ -20,6 +20,11 @@ proto_library(
],
)
proto_library(
name = "http_proto",
srcs = ["http.proto"],
)
proto_library(
name = "status_proto",
srcs = ["status.proto"],
@ -109,7 +114,7 @@ cc_proto_library(
##############################################################################
# Python
##############################################################################
load("@com_google_googleapis_imports//:imports.bzl", "py_proto_library")
load("@com_google_googleapis_imports//:imports.bzl", "py_gapic_assembly_pkg", "py_proto_library")
py_proto_library(
name = "code_py_proto",
@ -121,11 +126,27 @@ py_proto_library(
deps = [":error_details_proto"],
)
py_proto_library(
name = "http_py_proto",
deps = [":http_proto"],
)
py_proto_library(
name = "status_py_proto",
deps = [":status_proto"],
)
# Open Source Packages
py_gapic_assembly_pkg(
name = "rpc-py",
deps = [
":code_py_proto",
":error_details_py_proto",
":http_py_proto",
":status_py_proto",
],
)
##############################################################################
# PHP
##############################################################################