-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathBUILD.bazel
More file actions
60 lines (50 loc) · 1.53 KB
/
BUILD.bazel
File metadata and controls
60 lines (50 loc) · 1.53 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
60
load("@rules_java//java:defs.bzl", "java_library")
package(
default_applicable_licenses = ["//:license"],
default_visibility = ["//:internal"],
)
java_library(
name = "runtime_exception",
# used_by_android
exports = ["//common/src/main/java/dev/cel/common/exceptions:runtime_exception"],
)
java_library(
name = "attribute_not_found",
# used_by_android
exports = ["//common/src/main/java/dev/cel/common/exceptions:attribute_not_found"],
)
java_library(
name = "divide_by_zero",
# used_by_android
exports = ["//common/src/main/java/dev/cel/common/exceptions:divide_by_zero"],
)
java_library(
name = "index_out_of_bounds",
# used_by_android
exports = ["//common/src/main/java/dev/cel/common/exceptions:index_out_of_bounds"],
)
java_library(
name = "bad_format",
# used_by_android
exports = ["//common/src/main/java/dev/cel/common/exceptions:bad_format"],
)
java_library(
name = "numeric_overflow",
# used_by_android
exports = ["//common/src/main/java/dev/cel/common/exceptions:numeric_overflow"],
)
java_library(
name = "invalid_argument",
# used_by_android
exports = ["//common/src/main/java/dev/cel/common/exceptions:invalid_argument"],
)
java_library(
name = "iteration_budget_exceeded",
# used_by_android
exports = ["//common/src/main/java/dev/cel/common/exceptions:iteration_budget_exceeded"],
)
java_library(
name = "overload_not_found",
# used_by_android
exports = ["//common/src/main/java/dev/cel/common/exceptions:overload_not_found"],
)