blob: c9b74925ee973375f80a48b125fdcc344645308f [file] [log] [blame]
Steven Moreland90e3a502017-11-02 14:16:29 -07001cc_library_shared {
2 name: "android.hardware.boot@1.0-impl",
3 relative_install_path: "hw",
4 vendor: true,
5 srcs: ["BootControl.cpp"],
6
7 shared_libs: [
8 "liblog",
9 "libhidlbase",
10 "libhidltransport",
11 "libhardware",
12 "libutils",
13 "android.hardware.boot@1.0",
14 ],
15
16}
17
18cc_binary {
19 name: "android.hardware.boot@1.0-service",
20 relative_install_path: "hw",
21 vendor: true,
22 init_rc: ["android.hardware.boot@1.0-service.rc"],
23 srcs: ["service.cpp"],
24
25 shared_libs: [
26 "liblog",
27 "libhardware",
28 "libhidlbase",
29 "libhidltransport",
30 "libutils",
31 "android.hardware.boot@1.0",
32 ],
33
34}