Synchronize new proto/yaml changes.

PiperOrigin-RevId: 259747297
This commit is contained in:
Google APIs 2019-07-24 08:40:55 -07:00 committed by Copybara-Service
parent 3035bd51e2
commit 731d7736e0
1 changed files with 21 additions and 0 deletions

View File

@ -185,3 +185,24 @@ go_gapic_assembly_pkg(
"//google/logging/type:ltype_go_proto",
],
)
##############################################################################
# C++
##############################################################################
load(
"@com_google_googleapis_imports//:imports.bzl",
"cc_grpc_library",
"cc_proto_library",
)
cc_proto_library(
name = "logging_cc_proto",
deps = [":logging_proto"],
)
cc_grpc_library(
name = "logging_cc_grpc",
srcs = [":logging_proto"],
deps = [":logging_cc_proto"],
grpc_only = True,
)