1load("//bazel:proto_library.bzl", "proto_library") 2 3filegroup( 4 name = "go_features_proto_srcs", 5 srcs = ["google/protobuf/go_features.proto"], 6 visibility = ["//:__subpackages__"], 7) 8 9proto_library( 10 name = "go_features_proto", 11 srcs = ["google/protobuf/go_features.proto"], 12 strip_import_prefix = "/go", 13 visibility = [ 14 "//pkg:__pkg__", 15 ], 16 deps = ["//:descriptor_proto"], 17) 18