1java_library_host {
2    name: "protologtool-lib",
3    srcs: [
4        "src/com/android/protolog/tool/**/*.kt",
5    ],
6    static_libs: [
7        "protolog-common",
8        "javaparser",
9        "platformprotos",
10        "jsonlib",
11    ],
12}
13
14java_binary_host {
15    name: "protologtool",
16    manifest: "manifest.txt",
17    static_libs: [
18        "protologtool-lib",
19    ],
20}
21
22java_test_host {
23    name: "protologtool-tests",
24    test_suites: ["general-tests"],
25    srcs: [
26        "tests/**/*.kt",
27    ],
28    static_libs: [
29        "protologtool-lib",
30        "junit",
31        "mockito",
32    ],
33}
34