From 7dbe976c515c9b2aabe2824cb2a4c40fca291ad5 Mon Sep 17 00:00:00 2001 From: suetfei Date: Tue, 8 Feb 2022 06:00:53 -0800 Subject: [PATCH] Internal cleaup for protos. PiperOrigin-RevId: 427170889 --- connections/implementation/proto/BUILD | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/connections/implementation/proto/BUILD b/connections/implementation/proto/BUILD index 66c9f20f..a01a2fdd 100644 --- a/connections/implementation/proto/BUILD +++ b/connections/implementation/proto/BUILD @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +load("//tools/build_defs/proto/cpp:cc_proto_library.bzl", "cc_proto_library") + licenses(["notice"]) proto_library( @@ -33,6 +35,13 @@ java_lite_proto_library( deps = [":offline_wire_formats_proto"], ) +cc_proto_library( + name = "offline_wire_formats_cc_proto", + deps = [ + ":offline_wire_formats_proto", + ], +) + filegroup( name = "offline_wire_formats_proto_config", srcs = ["offline_wire_formats_proto_config.asciipb"],