[Bazel] Add back a filegroup for :well_known_protos (#10279)

pull/10286/head
Yash Tibrewal 2 years ago committed by GitHub
parent f049e5f029
commit c8b4ef27a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      BUILD.bazel

@ -156,6 +156,21 @@ cc_library(
visibility = ["//visibility:public"],
)
# DEPRECATED: Prefer :well_known_type_protos for the Well-Known Types
# (https://developers.google.com/protocol-buffers/docs/reference/google.protobuf)
# or :descriptor_proto(_srcs) for descriptor.proto (source), or
# :compiler_plugin_proto for compiler/plugin.proto.
filegroup(
name = "well_known_protos",
srcs = [
"src/google/protobuf/compiler/plugin.proto",
"src/google/protobuf/descriptor.proto",
":well_known_type_protos",
],
deprecation = "Prefer :well_known_type_protos instead.",
visibility = ["//visibility:public"],
)
filegroup(
name = "well_known_type_protos",
srcs = [

Loading…
Cancel
Save