Add C++ library support for Google Cloud Storage protos
PiperOrigin-RevId: 311887398
This commit is contained in:
parent
7683d06845
commit
abd6b709a5
|
|
@ -372,4 +372,21 @@ csharp_gapic_assembly_pkg(
|
|||
##############################################################################
|
||||
# C++
|
||||
##############################################################################
|
||||
# Put your C++ rules here
|
||||
load(
|
||||
"@com_google_googleapis_imports//:imports.bzl",
|
||||
"cc_grpc_library",
|
||||
"cc_proto_library",
|
||||
)
|
||||
|
||||
cc_proto_library(
|
||||
name = "storage_cc_proto",
|
||||
deps = [":storage_proto"],
|
||||
)
|
||||
|
||||
cc_grpc_library(
|
||||
name = "storage_cc_grpc",
|
||||
srcs = [":storage_proto"],
|
||||
generate_mocks = True,
|
||||
grpc_only = True,
|
||||
deps = [":storage_cc_proto"],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue