1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5sh_binary {
6    name: "dump_wlan.sh",
7    src: "dump_wlan.sh",
8    vendor: true,
9    sub_dir: "dump",
10}
11
12cc_binary {
13    name: "dump_power",
14    srcs: ["dump_power.cpp"],
15    cflags: [
16        "-Wall",
17	"-Wextra",
18	"-Werror",
19    ],
20    shared_libs: [
21        "libbase",
22        "libdump",
23        "libdumpstateutil",
24    ],
25    vendor: true,
26    relative_install_path: "dump",
27    init_rc: ["dump_power.rc"],
28}
29
30sh_binary {
31    name: "dump_gsa.sh",
32    src: "dump_gsa.sh",
33    vendor: true,
34    sub_dir: "dump",
35}
36
37