-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathBUILD.bazel
More file actions
59 lines (56 loc) · 1.79 KB
/
BUILD.bazel
File metadata and controls
59 lines (56 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
load("@rules_java//java:defs.bzl", "java_library")
load("//:testing.bzl", "junit4_test_suites")
package(default_applicable_licenses = [
"//:license",
])
java_library(
name = "tests",
testonly = True,
srcs = glob(["*.java"]),
deps = [
"//:java_truth",
"//common:cel_ast",
"//common:cel_descriptor_util",
"//common:cel_descriptors",
"//common:cel_source",
"//common:compiler_common",
"//common:container",
"//common:operator",
"//common:options",
"//common:proto_ast",
"//common:proto_json_adapter",
"//common:proto_v1alpha1_ast",
"//common:source_location",
"//common/ast",
"//common/internal",
"//common/internal:code_point_stream",
"//common/types",
"//common/types:cel_proto_types",
"//common/types:cel_v1alpha1_types",
"//common/values:cel_byte_string",
"//compiler",
"//compiler:compiler_builder",
"//parser:macro",
"@cel_spec//proto/cel/expr:checked_java_proto",
"@cel_spec//proto/cel/expr:syntax_java_proto",
"@cel_spec//proto/cel/expr/conformance/proto3:test_all_types_java_proto",
"@com_google_googleapis//google/api/expr/v1alpha1:expr_java_proto",
"@maven//:com_google_guava_guava",
"@maven//:com_google_guava_guava_testlib",
"@maven//:com_google_protobuf_protobuf_java",
"@maven//:com_google_testparameterinjector_test_parameter_injector",
"@maven//:com_google_truth_extensions_truth_proto_extension",
"@maven//:junit_junit",
"@maven//:org_antlr_antlr4_runtime",
],
)
junit4_test_suites(
name = "test_suites",
sizes = [
"small",
],
src_dir = "src/test/java",
deps = [
":tests",
],
)