mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
We are switching BootControl from HIDL to AIDL. All clients must be compatible with both implementations. To ease implementation, create a wrapper that will use AIDL if possible, and fallback to HIDL otherwise. Test: th Bug: 227536004 Change-Id: Ia40cb384058a0052f7c5c39766534c23a095ca59
22 lines
521 B
Plaintext
22 lines
521 B
Plaintext
|
|
|
|
cc_library {
|
|
name: "libboot_control_client",
|
|
srcs: [
|
|
"BootControlClient.cpp"
|
|
],
|
|
export_include_dirs: ["include"],
|
|
export_shared_lib_headers: ["android.hardware.boot-V1-ndk"],
|
|
recovery_available: true,
|
|
shared_libs: [
|
|
"android.hardware.boot-V1-ndk",
|
|
"android.hardware.boot@1.0",
|
|
"android.hardware.boot@1.1",
|
|
"android.hardware.boot@1.2",
|
|
"libhidlbase",
|
|
"libbinder_ndk",
|
|
"libbase",
|
|
"libcutils",
|
|
"libutils",
|
|
],
|
|
} |