-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathBUILD.bazel
More file actions
54 lines (51 loc) · 1.48 KB
/
Copy pathBUILD.bazel
File metadata and controls
54 lines (51 loc) · 1.48 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
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(["*Test.java"]),
resources = ["//parser/src/test/resources:baselines"],
deps = [
"//:auto_value",
"//:java_truth",
"//common:cel_ast",
"//common:cel_source",
"//common:compiler_common",
"//common:operator",
"//common:options",
"//common:proto_ast",
"//common:source_location",
"//common/ast",
"//common/internal",
"//common/values:cel_byte_string",
"//extensions:optional_library",
"//parser",
"//parser:macro",
"//parser:parser_builder",
"//parser:parser_factory",
"//parser:unparser",
"//parser:unparser_visitor",
"//testing:adorner",
"//testing:baseline_test_case",
"@cel_spec//proto/cel/expr:syntax_java_proto",
"@maven//:com_google_errorprone_error_prone_annotations",
"@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//:junit_junit",
],
)
junit4_test_suites(
name = "test_suites",
sizes = [
"small",
],
src_dir = "src/test/java",
deps = [":tests"],
)