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:
parent
0795e3f854
commit
51547c9436
|
|
@ -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"],
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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"],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue