device_google_zuma/dumpstate/Android.bp
Hiroshi Akiyama 5aded2ebfe Migrate dump_power.sh contents into cpp for improved speed
Bug: 271355543
Test: adb bugreport and check dumpstate_board.txt
Change-Id: Ic4e7c1a8198aedc3d2f5b3880ce60aa45843ec2d
2023-09-11 17:07:22 +00:00

35 lines
554 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",
}
sh_binary {
name: "dump_gsa.sh",
src: "dump_gsa.sh",
vendor: true,
sub_dir: "dump",
}