Skip to content

Commit

Permalink
Internal Changes
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 670658197
  • Loading branch information
l46kok authored and copybara-github committed Sep 6, 2024
1 parent a377c16 commit 3dd3c20
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions common/src/main/java/dev/cel/common/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ COMMON_SOURCES = [
"CelDescriptorUtil.java",
"CelDescriptors.java",
"CelException.java",
"CelProtoAbstractSyntaxTree.java", # TODO Split target after migrating callers
"CelSource.java",
]

Expand All @@ -32,6 +31,11 @@ SOURCE_SOURCES = [
"Source.java",
]

# keep sorted
PROTO_AST_SOURCE = [
"CelProtoAbstractSyntaxTree.java",
]

# keep sorted
PROTO_V1ALPHA1_AST_SOURCE = [
"CelProtoV1Alpha1AbstractSyntaxTree.java",
Expand All @@ -49,7 +53,6 @@ java_library(
"//:auto_value",
"//common/annotations",
"//common/ast",
"//common/ast:expr_converter",
"//common/internal",
"//common/internal:file_descriptor_converter",
"//common/types",
Expand Down Expand Up @@ -108,7 +111,7 @@ java_library(

java_library(
name = "proto_ast",
srcs = ["CelProtoAbstractSyntaxTree.java"],
srcs = PROTO_AST_SOURCE,
tags = [
],
deps = [
Expand Down

0 comments on commit 3dd3c20

Please sign in to comment.