Skip to content

Commit

Permalink
feat: add C++ rules for Pub/Sub Lite
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 409506444
  • Loading branch information
Google APIs authored and Copybara-Service committed Nov 12, 2021
1 parent e03933d commit 2c411a8
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion google/cloud/pubsublite/v1/BUILD.bazel
Expand Up @@ -303,4 +303,20 @@ 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 = "pubsublite_cc_proto",
deps = [":pubsublite_proto"],
)

cc_grpc_library(
name = "pubsublite_cc_grpc",
srcs = [":pubsublite_proto"],
grpc_only = True,
deps = [":pubsublite_cc_proto"],
)

0 comments on commit 2c411a8

Please sign in to comment.