From 491d27e4e65417e16501b4dc2ebe74d8567a8d5a Mon Sep 17 00:00:00 2001 From: deannagarcia <69992229+deannagarcia@users.noreply.github.com> Date: Fri, 17 Feb 2023 13:33:10 -0800 Subject: [PATCH] Add plugin.proto to the list of well known files for python In 21.x, depending on "//python:well_known_types_py_pb2" provided a transitive dependency to `compiler/plugin.proto`. That dependency was incorrectly removed for 22.x. --- python/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/python/BUILD.bazel b/python/BUILD.bazel index e67422b4ac..5fcece7f04 100644 --- a/python/BUILD.bazel +++ b/python/BUILD.bazel @@ -54,6 +54,7 @@ internal_py_proto_library( internal_copy_files( name = "copied_wkt_proto_files", srcs = [ + "//:compiler_plugin_proto", "//:well_known_type_protos", "//src/google/protobuf:descriptor_proto_srcs", ],