Skip to content

Commit a4761d5

Browse files
Google APIscopybara-github
authored andcommitted
feat: add C++ library rules for the Live Stream API
PiperOrigin-RevId: 457707448
1 parent f37528b commit a4761d5

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

google/cloud/video/livestream/v1/BUILD.bazel

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,4 +362,20 @@ csharp_gapic_assembly_pkg(
362362
##############################################################################
363363
# C++
364364
##############################################################################
365-
# Put your C++ rules here
365+
load(
366+
"@com_google_googleapis_imports//:imports.bzl",
367+
"cc_grpc_library",
368+
"cc_proto_library",
369+
)
370+
371+
cc_proto_library(
372+
name = "livestream_cc_proto",
373+
deps = [":livestream_proto"],
374+
)
375+
376+
cc_grpc_library(
377+
name = "livestream_cc_grpc",
378+
srcs = [":livestream_proto"],
379+
grpc_only = True,
380+
deps = [":livestream_cc_proto"],
381+
)

0 commit comments

Comments
 (0)