This repository has been archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathBUILD
73 lines (63 loc) · 1.77 KB
/
BUILD
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
61
62
63
64
65
66
67
68
69
70
71
72
73
# THIS FILE IS AUTO-GENERATED
package(default_visibility = ["//visibility:public"])
load("//tools/checkstyle:checkstyle.bzl", "checkstyle_test")
proto_library(
name = "config_proto",
srcs = ["config.proto"],
)
java_proto_library(
name = "config_java_proto",
deps = [":config_proto"],
)
java_library(
name = "aa_module",
srcs = ["AaModule.java"],
deps = [
":config_java_proto",
"//common",
"//common:dagger_with_annotation_processor",
"//common/repo",
"//third_party/maven/javax/inject:javax_inject",
"//tools/reviewer/aa/commands",
],
)
checkstyle_test(
name = "aa_module-checkstyle",
target = ":aa_module",
)
java_binary(
name = "aa_script_helper",
srcs = ["AaScriptHelper.java"],
main_class = "com.google.startupos.tools.reviewer.aa.AaScriptHelper",
deps = [
":aa_module",
":aa_tool",
"//common",
"//common:dagger_with_annotation_processor",
"//third_party/maven/com/google/flogger:flogger_system_backend",
"//third_party/maven/com/google/guava",
"//third_party/maven/javax/inject:javax_inject",
],
)
checkstyle_test(
name = "aa_script_helper-checkstyle",
target = ":aa_script_helper",
)
java_binary(
name = "aa_tool",
srcs = ["AaTool.java"],
main_class = "com.google.startupos.tools.reviewer.aa.AaTool",
deps = [
":aa_module",
"//common",
"//common:dagger_with_annotation_processor",
"//third_party/maven/com/google/flogger:flogger_system_backend",
"//third_party/maven/com/google/guava",
"//third_party/maven/javax/inject:javax_inject",
"//tools/reviewer/aa/commands",
],
)
checkstyle_test(
name = "aa_tool-checkstyle",
target = ":aa_tool",
)