fix: add C++ build rules for Bigtable Admin V2.
PiperOrigin-RevId: 306508794
This commit is contained in:
parent
c0a072159e
commit
fea22b1d9f
|
|
@ -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"],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue