update dumpstate to latest version

Bug: 240530709
Test: adb bugreport
Change-Id: I49ffdcadce89e3dc8859819576998df56928a75a
This commit is contained in:
Adam Shih 2022-10-19 14:21:00 +08:00
parent 3abe730880
commit c745e34cb4
15 changed files with 469 additions and 719 deletions

28
dumpstate/Android.bp Normal file
View file

@ -0,0 +1,28 @@
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
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",
}