David Anderson | 0473214 | 2019-10-07 13:34:24 -0700 | [diff] [blame] | 1 | cc_library_shared { |
| 2 | name: "android.hardware.boot@1.1-impl", |
| 3 | defaults: [ |
| 4 | "hidl_defaults", |
| 5 | "libboot_control_defaults", |
| 6 | ], |
| 7 | relative_install_path: "hw", |
| 8 | vendor: true, |
| 9 | recovery_available: true, |
| 10 | srcs: ["BootControl.cpp"], |
| 11 | |
| 12 | shared_libs: [ |
| 13 | "liblog", |
| 14 | "libhidlbase", |
| 15 | "libhardware", |
| 16 | "libutils", |
| 17 | "android.hardware.boot@1.0", |
| 18 | "android.hardware.boot@1.1", |
| 19 | ], |
| 20 | static_libs: [ |
| 21 | "libboot_control", |
| 22 | "libfstab", |
| 23 | ], |
| 24 | } |
| 25 | |
| 26 | cc_binary { |
| 27 | name: "android.hardware.boot@1.1-service", |
| 28 | defaults: ["hidl_defaults"], |
| 29 | relative_install_path: "hw", |
| 30 | vendor: true, |
| 31 | init_rc: ["android.hardware.boot@1.1-service.rc"], |
| 32 | srcs: ["service.cpp"], |
| 33 | |
| 34 | shared_libs: [ |
| 35 | "liblog", |
| 36 | "libhardware", |
| 37 | "libhidlbase", |
| 38 | "libutils", |
| 39 | "android.hardware.boot@1.0", |
| 40 | "android.hardware.boot@1.1", |
| 41 | ], |
| 42 | |
| 43 | } |