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
|
java_plugin {
name: "view-inspector-annotation-processor",
processor_class: "android.processor.view.inspector.PlatformInspectableProcessor",
srcs: ["src/java/**/*.java"],
java_resource_dirs: ["src/resources"],
static_libs: [
"javapoet",
"stub-annotations",
],
use_tools_jar: true,
}
java_test_host {
name: "view-inspector-annotation-processor-test",
srcs: ["test/java/**/*.java"],
java_resource_dirs: ["test/resources"],
static_libs: [
"junit",
"guava",
"view-inspector-annotation-processor"
],
test_suites: ["general-tests"],
}
|