rosemary: Build dummy HIDL libs

Change-Id: I4637a6c7e5fb600b1b919b6a9cdb9a0f6d19abb5
This commit is contained in:
Sebastiano Barezzi
2022-09-13 19:27:53 +01:00
committed by Matsvei Niaverau
parent eaaef9eeec
commit b452ff3e16
2 changed files with 19 additions and 0 deletions

View File

@@ -76,6 +76,13 @@ PRODUCT_PACKAGES += \
android.hardware.health@2.1-impl.recovery \
android.hardware.health@2.1-service
# HIDL
PRODUCT_PACKAGES += \
android.hidl.base@1.0 \
android.hidl.base@1.0.vendor \
libhidltransport.vendor \
libhwbinder.vendor
# Overlays
PRODUCT_ENFORCE_RRO_TARGETS := *

12
libhidl/Android.bp Normal file
View File

@@ -0,0 +1,12 @@
//
// Copyright (C) 2022 The LineageOS Project
//
// SPDX-License-Identifier: Apache-2.0
//
cc_library_shared {
name: "android.hidl.base@1.0",
shared_libs: ["libhidlbase"],
system_ext_specific: true,
vendor_available: true,
}