Bug: 117616612 Test: atest --host view-inspector-annotation-processor-test Change-Id: I48f62544655adbc33e3ccdd3301d6dc471fe4163
28 lines
518 B
Plaintext
28 lines
518 B
Plaintext
java_library_host {
|
|
name: "view-inspector-annotation-processor",
|
|
|
|
srcs: ["src/java/**/*.java"],
|
|
java_resource_dirs: ["src/resources"],
|
|
|
|
static_libs: [
|
|
"javapoet",
|
|
],
|
|
|
|
use_tools_jar: true,
|
|
}
|
|
|
|
java_test_host {
|
|
name: "view-inspector-annotation-processor-test",
|
|
|
|
srcs: ["test/java/**/*.java"],
|
|
java_resource_dirs: ["test/resources"],
|
|
|
|
static_libs: [
|
|
"guava",
|
|
"junit",
|
|
"view-inspector-annotation-processor",
|
|
],
|
|
|
|
test_suites: ["general-tests"],
|
|
}
|