1java_plugin {
2    name: "view-inspector-annotation-processor",
3
4    processor_class: "android.processor.view.inspector.PlatformInspectableProcessor",
5
6    srcs: ["src/java/**/*.java"],
7    java_resource_dirs: ["src/resources"],
8
9    static_libs: [
10        "javapoet",
11        "stub-annotations",
12    ],
13
14    use_tools_jar: true,
15}
16
17java_test_host {
18    name: "view-inspector-annotation-processor-test",
19
20    srcs: ["test/java/**/*.java"],
21    java_resource_dirs: ["test/resources"],
22
23    static_libs: [
24        "junit",
25        "guava",
26        "view-inspector-annotation-processor"
27    ],
28
29    test_suites: ["general-tests"],
30}
31