1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
cc_binary {
name: "android.hardware.light@2.0-service.pme",
relative_install_path: "hw",
init_rc: ["android.hardware.light@2.0-service.pme.rc"],
srcs: ["service.cpp", "Light.cpp"],
shared_libs: [
"libcutils",
"libhardware",
"libhidlbase",
"libhidltransport",
"liblog",
"libhwbinder",
"libutils",
"android.hardware.light@2.0",
],
proprietary: true,
}
|