1cc_binary {
2    name: "android.hardware.dumpstate@1.0-service.example",
3    init_rc: ["android.hardware.dumpstate@1.0-service.rc"],
4    relative_install_path: "hw",
5    vendor: true,
6    srcs: [
7        "DumpstateDevice.cpp",
8        "service.cpp",
9    ],
10    cflags: [
11        "-Wall",
12        "-Werror",
13    ],
14
15    shared_libs: [
16        "android.hardware.dumpstate@1.0",
17        "libbase",
18        "libcutils",
19        "libdumpstateutil",
20        "libhidlbase",
21        "liblog",
22        "libutils",
23    ],
24
25}
26