blob: abf1bf95300e1a4be65561e16d4ea9efb22f0d2f [file] [log] [blame]
David Anderson04732142019-10-07 13:34:24 -07001cc_library_shared {
2 name: "android.hardware.boot@1.1-impl",
David Andersonc07c9062019-10-12 15:19:53 -07003 stem: "android.hardware.boot@1.0-impl-1.1",
David Anderson04732142019-10-07 13:34:24 -07004 defaults: [
5 "hidl_defaults",
6 "libboot_control_defaults",
7 ],
8 relative_install_path: "hw",
9 vendor: true,
10 recovery_available: true,
11 srcs: ["BootControl.cpp"],
12
13 shared_libs: [
14 "liblog",
15 "libhidlbase",
16 "libhardware",
17 "libutils",
18 "android.hardware.boot@1.0",
19 "android.hardware.boot@1.1",
20 ],
21 static_libs: [
22 "libboot_control",
23 "libfstab",
24 ],
25}
26
27cc_binary {
28 name: "android.hardware.boot@1.1-service",
29 defaults: ["hidl_defaults"],
30 relative_install_path: "hw",
31 vendor: true,
32 init_rc: ["android.hardware.boot@1.1-service.rc"],
33 srcs: ["service.cpp"],
34
David Andersonc07c9062019-10-12 15:19:53 -070035 vintf_fragments: [
36 "android.hardware.boot@1.1.xml",
37 ],
38
David Anderson04732142019-10-07 13:34:24 -070039 shared_libs: [
40 "liblog",
41 "libhardware",
42 "libhidlbase",
43 "libutils",
44 "android.hardware.boot@1.0",
45 "android.hardware.boot@1.1",
46 ],
47
48}