feat: C++ rules for frequently-mentioned services

These services come up in random bugs, requests for help on GitHub, etc. We think having the C++ rules for them would be useful, as there is some demand for them.

PiperOrigin-RevId: 348695619
This commit is contained in:
Google APIs 2020-12-22 14:37:37 -08:00 committed by Copybara-Service
parent 0795e3f854
commit 51547c9436
2 changed files with 34 additions and 2 deletions

View File

@ -330,4 +330,20 @@ 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 = "speech_cc_proto",
deps = [":speech_proto"],
)
cc_grpc_library(
name = "speech_cc_grpc",
srcs = [":speech_proto"],
grpc_only = True,
deps = [":speech_cc_proto"],
)

View File

@ -353,4 +353,20 @@ 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 = "texttospeech_cc_proto",
deps = [":texttospeech_proto"],
)
cc_grpc_library(
name = "texttospeech_cc_grpc",
srcs = [":texttospeech_proto"],
grpc_only = True,
deps = [":texttospeech_cc_proto"],
)