Files
hardware_interfaces/boot/1.0/default/Android.bp
Hridya Valsaraju f8169cc2bc Revert "Set vendor: true for boot control HAL"
This reverts commit f009da1bf5.

Reason for revert: Breaking presubmit boot test on walleye

Change-Id: Ibeebb94b22cf81087b2ee60407a33e9d7e8a4d18
2018-10-02 20:09:17 +00:00

38 lines
803 B
Plaintext

cc_library_shared {
name: "android.hardware.boot@1.0-impl",
defaults: ["hidl_defaults"],
relative_install_path: "hw",
vendor_available: true,
recovery_available: true,
srcs: ["BootControl.cpp"],
shared_libs: [
"liblog",
"libhidlbase",
"libhidltransport",
"libhardware",
"libutils",
"android.hardware.boot@1.0",
],
}
cc_binary {
name: "android.hardware.boot@1.0-service",
defaults: ["hidl_defaults"],
relative_install_path: "hw",
vendor: true,
init_rc: ["android.hardware.boot@1.0-service.rc"],
srcs: ["service.cpp"],
shared_libs: [
"liblog",
"libhardware",
"libhidlbase",
"libhidltransport",
"libutils",
"android.hardware.boot@1.0",
],
}