Put back C++ targets for cloud trace v2 api.

PiperOrigin-RevId: 282803841
This commit is contained in:
Google APIs 2019-11-27 11:19:41 -08:00 committed by Copybara-Service
parent d8896a3d8a
commit e42eaaa9ab
1 changed files with 18 additions and 1 deletions

View File

@ -365,4 +365,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 = "trace_cc_proto",
deps = [":trace_proto"],
)
cc_grpc_library(
name = "trace_cc_grpc",
srcs = [":trace_proto"],
generate_mocks = True,
grpc_only = True,
deps = [":trace_cc_proto"],
)