Steven Moreland | 90e3a50 | 2017-11-02 14:16:29 -0700 | [diff] [blame] | 1 | cc_library_shared { |
| 2 | name: "android.hardware.boot@1.0-impl", |
Chih-Hung Hsieh | 3f2ea62 | 2017-11-20 10:49:11 -0800 | [diff] [blame^] | 3 | defaults: ["hidl_defaults"], |
Steven Moreland | 90e3a50 | 2017-11-02 14:16:29 -0700 | [diff] [blame] | 4 | relative_install_path: "hw", |
| 5 | vendor: true, |
| 6 | srcs: ["BootControl.cpp"], |
| 7 | |
| 8 | shared_libs: [ |
| 9 | "liblog", |
| 10 | "libhidlbase", |
| 11 | "libhidltransport", |
| 12 | "libhardware", |
| 13 | "libutils", |
| 14 | "android.hardware.boot@1.0", |
| 15 | ], |
| 16 | |
| 17 | } |
| 18 | |
| 19 | cc_binary { |
| 20 | name: "android.hardware.boot@1.0-service", |
Chih-Hung Hsieh | 3f2ea62 | 2017-11-20 10:49:11 -0800 | [diff] [blame^] | 21 | defaults: ["hidl_defaults"], |
Steven Moreland | 90e3a50 | 2017-11-02 14:16:29 -0700 | [diff] [blame] | 22 | 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", |
| 31 | "libhidltransport", |
| 32 | "libutils", |
| 33 | "android.hardware.boot@1.0", |
| 34 | ], |
| 35 | |
| 36 | } |