mirror of
https://github.com/googleapis/googleapis.git
synced 2026-08-17 13:06:47 +02:00
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:
parent
b82d9bc55c
commit
bc87a7e197
1 changed files with 22 additions and 1 deletions
|
|
@ -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
|
||||
##############################################################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue