Add C++ library support for Google Cloud Storage protos

PiperOrigin-RevId: 311887398
This commit is contained in:
Google APIs 2020-05-16 08:07:56 -07:00 committed by Copybara-Service
parent 7683d06845
commit abd6b709a5
1 changed files with 18 additions and 1 deletions

View File

@ -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"],
)