mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 23:07:49 +00:00
Since it only prints a date.
Bug: 140115084
Test: boot device and check that this can run (as I've also had to
update file contexts for it)
Change-Id: Id22452cec4f32c2bbfa07065cb5e9c5d2b9936bf
27 lines
542 B
Plaintext
27 lines
542 B
Plaintext
cc_binary {
|
|
name: "android.hardware.dumpstate@1.0-service.example",
|
|
init_rc: ["android.hardware.dumpstate@1.0-service.rc"],
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
srcs: [
|
|
"DumpstateDevice.cpp",
|
|
"service.cpp",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
|
|
shared_libs: [
|
|
"android.hardware.dumpstate@1.0",
|
|
"libbase",
|
|
"libcutils",
|
|
"libdumpstateutil",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
|
|
}
|