fix: add C++ build rules for Bigtable Admin V2.

PiperOrigin-RevId: 306508794
This commit is contained in:
Google APIs 2020-04-14 13:58:46 -07:00 committed by Copybara-Service
parent c0a072159e
commit fea22b1d9f
1 changed files with 19 additions and 1 deletions

View File

@ -382,4 +382,22 @@ csharp_gapic_assembly_pkg(
##############################################################################
# C++
##############################################################################
# Put your C++ rules here
#
# PLEASE DO NOT DELETE
# These rules are not auto-generated, but they are used by OSS C++ projects.
load(
"@com_google_googleapis_imports//:imports.bzl",
"cc_grpc_library",
"cc_proto_library")
cc_proto_library(
name = "admin_cc_proto",
deps = [":admin_proto"],
)
cc_grpc_library(
name = "admin_cc_grpc",
srcs = [":admin_proto"],
grpc_only = True,
deps = [":admin_cc_proto"],
)