From 6f1dca01a7c3722b639399df7ce563e221c74a61 Mon Sep 17 00:00:00 2001 From: Sokwhan Huh Date: Fri, 14 Mar 2025 08:17:39 -0700 Subject: [PATCH] Internal Changes PiperOrigin-RevId: 736868562 --- common/BUILD.bazel | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/common/BUILD.bazel b/common/BUILD.bazel index 9ac8191ce..bd2b2251d 100644 --- a/common/BUILD.bazel +++ b/common/BUILD.bazel @@ -11,10 +11,10 @@ java_library( name = "common", deprecation = "Use split targets instead", exports = [ - "//common/src/main/java/dev/cel/common:cel_ast", - "//common/src/main/java/dev/cel/common:cel_descriptors", - "//common/src/main/java/dev/cel/common:cel_exception", - "//common/src/main/java/dev/cel/common:cel_source", + ":cel_ast", + ":cel_descriptors", + ":cel_exception", + ":cel_source", ], ) @@ -112,7 +112,6 @@ cel_android_library( java_library( name = "cel_exception", # used_by_android - visibility = ["//:internal"], exports = ["//common/src/main/java/dev/cel/common:cel_exception"], )