blob: fdf7a1e40f0a7c3b7db32d394f85ff05a37be786 [file] [log] [blame]
Steven Moreland90e3a502017-11-02 14:16:29 -07001cc_library_shared {
2 name: "android.hardware.boot@1.0-impl",
Chih-Hung Hsieh3f2ea622017-11-20 10:49:11 -08003 defaults: ["hidl_defaults"],
Steven Moreland90e3a502017-11-02 14:16:29 -07004 relative_install_path: "hw",
Hridya Valsarajucac42c12018-10-03 17:51:58 +00005 vendor: true,
Hridya Valsaraju865c3bc2018-07-17 21:26:24 -07006 recovery_available: true,
Steven Moreland90e3a502017-11-02 14:16:29 -07007 srcs: ["BootControl.cpp"],
8
9 shared_libs: [
10 "liblog",
11 "libhidlbase",
Steven Moreland90e3a502017-11-02 14:16:29 -070012 "libhardware",
13 "libutils",
14 "android.hardware.boot@1.0",
15 ],
16
17}
18
19cc_binary {
20 name: "android.hardware.boot@1.0-service",
Chih-Hung Hsieh3f2ea622017-11-20 10:49:11 -080021 defaults: ["hidl_defaults"],
Steven Moreland90e3a502017-11-02 14:16:29 -070022 relative_install_path: "hw",
23 vendor: true,
24 init_rc: ["android.hardware.boot@1.0-service.rc"],
25 srcs: ["service.cpp"],
26
27 shared_libs: [
28 "liblog",
29 "libhardware",
30 "libhidlbase",
Steven Moreland90e3a502017-11-02 14:16:29 -070031 "libutils",
32 "android.hardware.boot@1.0",
33 ],
34
35}