device_google_zumapro/dumpstate/Android.bp
Hiroshi Akiyama c4dc97b468 dumpstate: fix missing dump_power.rc in Android.bp
Bug: 305532134
Test: adb bugreport and check dumpstate_board.txt
Change-Id: Ie5009983f43fe28483d4c30d3fc405f475ee7e7c
Signed-off-by: Hiroshi Akiyama <hiroshiakiyama@google.com>
2023-10-19 22:43:32 +00:00

36 lines
600 B
Text

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
sh_binary {
name: "dump_wlan.sh",
src: "dump_wlan.sh",
vendor: true,
sub_dir: "dump",
}
cc_binary {
name: "dump_power",
srcs: ["dump_power.cpp"],
cflags: [
"-Wall",
"-Wextra",
"-Werror",
],
shared_libs: [
"libbase",
"libdump",
"libdumpstateutil",
],
vendor: true,
relative_install_path: "dump",
init_rc: ["dump_power.rc"],
}
sh_binary {
name: "dump_gsa.sh",
src: "dump_gsa.sh",
vendor: true,
sub_dir: "dump",
}