summaryrefslogtreecommitdiff
path: root/1.1/impl
diff options
context:
space:
mode:
authorLuK1337 <priv.luk@gmail.com>2021-01-05 14:15:09 +0100
committeralk3pInjection <webmaster@raspii.tech>2022-01-20 20:13:50 +0800
commitd05da1dc02cb923cddd3dab00737990e2cb9c2fe (patch)
tree0f2086b21b3b5ff1ffa543766f751da192205459 /1.1/impl
parent9f9c845d5e9cd10b30b0aab71306a89e51cad923 (diff)
Expose 1.1 impl via cc_defaultsHEADtachibanasugisawa
* Needed for device specific gpt-utils. Change-Id: I1d9e1b4727728f776594f630f639bd4ca7c4309c
Diffstat (limited to '1.1/impl')
-rw-r--r--1.1/impl/Android.bp14
1 files changed, 9 insertions, 5 deletions
diff --git a/1.1/impl/Android.bp b/1.1/impl/Android.bp
index 4c26db2..3c8e3a7 100644
--- a/1.1/impl/Android.bp
+++ b/1.1/impl/Android.bp
@@ -1,13 +1,18 @@
-cc_library_shared {
- name: "android.hardware.boot@1.1-impl-qti",
- stem: "android.hardware.boot@1.0-impl-1.1-qti",
+filegroup {
+ name: "android.hardware.boot@1.1-impl-qti_src",
+ srcs: ["BootControl.cpp"],
+}
+
+cc_defaults {
+ name: "android.hardware.boot@1.1-impl-qti_defaults",
defaults: [
"hidl_defaults",
+ "libboot_control_qti_defaults",
],
relative_install_path: "hw",
vendor: true,
recovery_available: true,
- srcs: ["BootControl.cpp"],
+ srcs: [":android.hardware.boot@1.1-impl-qti_src"],
shared_libs: [
"liblog",
"libhidlbase",
@@ -15,6 +20,5 @@ cc_library_shared {
"libutils",
"android.hardware.boot@1.0",
"android.hardware.boot@1.1",
- "libboot_control_qti",
],
}