From 9c89a70e6b62ec2914fa7ff72570c553e530b9b7 Mon Sep 17 00:00:00 2001 From: deannagarcia <69992229+deannagarcia@users.noreply.github.com> Date: Fri, 17 Feb 2023 13:26:53 -0800 Subject: [PATCH] Strip "src" from file name of plugin.proto In 22.x, we accidentally omitted stripping the "src" import prefix for plugin.proto. We stripped the prefix in 21.x and for all other well known types in 22.x. This reverts that unintentional change. --- src/google/protobuf/compiler/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/src/google/protobuf/compiler/BUILD.bazel b/src/google/protobuf/compiler/BUILD.bazel index cfbf714870..1d3a33570b 100644 --- a/src/google/protobuf/compiler/BUILD.bazel +++ b/src/google/protobuf/compiler/BUILD.bazel @@ -20,6 +20,7 @@ proto_library( "//:__pkg__", "//pkg:__pkg__", ], + strip_import_prefix = "src", deps = ["//:descriptor_proto"], )