Fixes #19735, will be backported to 29.x PiperOrigin-RevId: 708420839pull/19758/head
parent
b38749245c
commit
2887da22a1
4 changed files with 30 additions and 8 deletions
@ -1,5 +1,17 @@ |
|||||||
|
load("//bazel:proto_library.bzl", "proto_library") |
||||||
|
|
||||||
filegroup( |
filegroup( |
||||||
name = "go_features_proto_srcs", |
name = "go_features_proto_srcs", |
||||||
srcs = ["go_features.proto"], |
srcs = ["google/protobuf/go_features.proto"], |
||||||
visibility = ["//:__subpackages__"], |
visibility = ["//:__subpackages__"], |
||||||
) |
) |
||||||
|
|
||||||
|
proto_library( |
||||||
|
name = "go_features_proto", |
||||||
|
srcs = ["google/protobuf/go_features.proto"], |
||||||
|
strip_import_prefix = "/go", |
||||||
|
visibility = [ |
||||||
|
"//pkg:__pkg__", |
||||||
|
], |
||||||
|
deps = ["//:descriptor_proto"], |
||||||
|
) |
||||||
|
Loading…
Reference in new issue