Kelvin Zhang | b66d2a0 | 2022-06-15 13:10:58 -0700 | [diff] [blame] | 1 | |
| 2 | |
Bob Badour | d3d6065 | 2022-06-23 07:14:55 -0700 | [diff] [blame] | 3 | package { |
| 4 | // See: http://go/android-license-faq |
| 5 | // A large-scale-change added 'default_applicable_licenses' to import |
| 6 | // all of the 'license_kinds' from "hardware_interfaces_license" |
| 7 | // to get the below license kinds: |
| 8 | // SPDX-license-identifier-Apache-2.0 |
| 9 | default_applicable_licenses: ["hardware_interfaces_license"], |
| 10 | } |
| 11 | |
Kelvin Zhang | b66d2a0 | 2022-06-15 13:10:58 -0700 | [diff] [blame] | 12 | cc_library { |
| 13 | name: "libboot_control_client", |
| 14 | srcs: [ |
| 15 | "BootControlClient.cpp" |
| 16 | ], |
| 17 | export_include_dirs: ["include"], |
| 18 | export_shared_lib_headers: ["android.hardware.boot-V1-ndk"], |
| 19 | recovery_available: true, |
| 20 | shared_libs: [ |
| 21 | "android.hardware.boot-V1-ndk", |
| 22 | "android.hardware.boot@1.0", |
| 23 | "android.hardware.boot@1.1", |
| 24 | "android.hardware.boot@1.2", |
| 25 | "libhidlbase", |
| 26 | "libbinder_ndk", |
| 27 | "libbase", |
| 28 | "libcutils", |
| 29 | "libutils", |
| 30 | ], |
Bob Badour | d3d6065 | 2022-06-23 07:14:55 -0700 | [diff] [blame] | 31 | } |