device_google_zuma/dumpstate/Android.bp
Adam Shih 948564f82b migrate power section to its own script
Bug: 240530709
Test: adb bugreport
Change-Id: I879525a3c067de1e6e6598d7a29741fd42d2f639
2023-02-08 07:11:44 +00:00

42 lines
857 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",
}
sh_binary {
name: "dump_power.sh",
src: "dump_power.sh",
vendor: true,
sub_dir: "dump",
}
cc_binary {
name: "android.hardware.dumpstate-service.zuma",
srcs: [
"Dumpstate.cpp",
"service.cpp",
],
init_rc: ["android.hardware.dumpstate-service.zuma.rc"],
vintf_fragments: ["android.hardware.dumpstate-service.zuma.xml"],
cflags: [
"-Wall",
"-Werror",
],
shared_libs: [
"libbase",
"libbinder_ndk",
"libcutils",
"libdumpstateutil",
"liblog",
"libutils",
"android.hardware.dumpstate-V1-ndk",
],
vendor: true,
relative_install_path: "hw",
}