From 163665bbfc821ae4ab42fb069fbb63499e3644b4 Mon Sep 17 00:00:00 2001 From: Jason Zaman Date: Sat, 31 Oct 2020 16:21:41 -0700 Subject: [PATCH] systemlibs: protobuf: fix merge conflict The merge of PR 44222 ended up with duplicate keys in the bazel rule Signed-off-by: Jason Zaman --- third_party/systemlibs/protobuf.BUILD | 4 ---- 1 file changed, 4 deletions(-) diff --git a/third_party/systemlibs/protobuf.BUILD b/third_party/systemlibs/protobuf.BUILD index abd2a1bb757..48f49ad8dc2 100644 --- a/third_party/systemlibs/protobuf.BUILD +++ b/third_party/systemlibs/protobuf.BUILD @@ -124,11 +124,7 @@ py_library( [proto_library( name = proto[0] + "_proto", - name = proto[0] + "_proto", - srcs = [proto[1][0]], srcs = [proto[1][0]], visibility = ["//visibility:public"], - visibility = ["//visibility:public"], - deps = [dep + "_proto" for dep in proto[1][1]], deps = [dep + "_proto" for dep in proto[1][1]], ) for proto in WELL_KNOWN_PROTO_MAP.items()] -- GitLab