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} 28 29sh_binary { 30 name: "dump_gsa.sh", 31 src: "dump_gsa.sh", 32 vendor: true, 33 sub_dir: "dump", 34} 35 36