David Anderson | 0473214 | 2019-10-07 13:34:24 -0700 | [diff] [blame] | 1 | cc_library_shared { |
| 2 | name: "android.hardware.boot@1.1-impl", |
David Anderson | c07c906 | 2019-10-12 15:19:53 -0700 | [diff] [blame] | 3 | stem: "android.hardware.boot@1.0-impl-1.1", |
David Anderson | 0473214 | 2019-10-07 13:34:24 -0700 | [diff] [blame] | 4 | 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 | |
| 27 | cc_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 Anderson | c07c906 | 2019-10-12 15:19:53 -0700 | [diff] [blame] | 35 | vintf_fragments: [ |
| 36 | "android.hardware.boot@1.1.xml", |
| 37 | ], |
| 38 | |
David Anderson | 0473214 | 2019-10-07 13:34:24 -0700 | [diff] [blame] | 39 | 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 | } |