From 6df33a4b8a105d4382c212f46128e1539a3fae6a Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Thu, 10 Oct 2024 13:15:01 -0700 Subject: [PATCH] Fix Bazel dependency cycle issue affecting Kythe (#18768) The fact that our `:protobuf_nowkt` target actually does depend on the well-known types is causing a dependency cycle for Kythe. This fixes that so that `:protobuf_nowkt` no longer depends on the well-known types. PiperOrigin-RevId: 684160567 --- BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.bazel b/BUILD.bazel index 89d8e98f0021..32b26cbdc9c4 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -266,7 +266,7 @@ alias( alias( name = "protobuf_nowkt", - actual = "//src/google/protobuf:protobuf_layering_check_legacy", + actual = "//src/google/protobuf", deprecation = "Use //:protobuf instead", visibility = ["//visibility:public"], )