Files
hardware_interfaces/boot/1.1/default/Android.bp
David Anderson c07c90699a Fix requests for IBootControl 1.0 when using the 1.1 HAL.
Bug: 138861550
Test: cuttlefish boots
Change-Id: I10587a70dca716366a5cf48c8bc8c1bc4fb9f93a
Merged-In: I10587a70dca716366a5cf48c8bc8c1bc4fb9f93a
2019-10-17 20:46:07 +00:00

49 lines
1.0 KiB
Plaintext

cc_library_shared {
name: "android.hardware.boot@1.1-impl",
stem: "android.hardware.boot@1.0-impl-1.1",
defaults: [
"hidl_defaults",
"libboot_control_defaults",
],
relative_install_path: "hw",
vendor: true,
recovery_available: true,
srcs: ["BootControl.cpp"],
shared_libs: [
"liblog",
"libhidlbase",
"libhardware",
"libutils",
"android.hardware.boot@1.0",
"android.hardware.boot@1.1",
],
static_libs: [
"libboot_control",
"libfstab",
],
}
cc_binary {
name: "android.hardware.boot@1.1-service",
defaults: ["hidl_defaults"],
relative_install_path: "hw",
vendor: true,
init_rc: ["android.hardware.boot@1.1-service.rc"],
srcs: ["service.cpp"],
vintf_fragments: [
"android.hardware.boot@1.1.xml",
],
shared_libs: [
"liblog",
"libhardware",
"libhidlbase",
"libutils",
"android.hardware.boot@1.0",
"android.hardware.boot@1.1",
],
}