Merge "Only include QfpCalibration on userdebug / eng builds" into 24D1-dev am: 7d713a08c1

Original change: https://googleplex-android-review.googlesource.com/c/device/google/caimito/+/26723440

Change-Id: I5160da0f1e23103306985aba7ea7cc484157c93a
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Alec Foster 2024-04-04 19:00:22 +00:00 committed by Automerger Merge Worker
commit be7fde6f08

View file

@ -17,12 +17,10 @@
PRODUCT_SOONG_NAMESPACES += \
vendor/qcom/fingerprint/qfp-service \
vendor/qcom/fingerprint/QFingerprintService \
vendor/qcom/fingerprint/QFPCalibration \
PRODUCT_PACKAGES += \
qfp-daemon \
QFingerprintService \
QFPCalibration \
QFingerprintService
PRODUCT_COPY_FILES += \
frameworks/native/data/etc/android.hardware.fingerprint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.fingerprint.xml
@ -36,6 +34,11 @@ PRODUCT_PROPERTY_OVERRIDES += \
persist.vendor.qfp.enable_setprop=0 \
log.tag.QFP=3
ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
PRODUCT_SOONG_NAMESPACES += \
vendor/qcom/fingerprint/QFPCalibration
endif
ifneq (,$(findstring factory, $(TARGET_PRODUCT)))
PRODUCT_PACKAGES += QfsFactoryTest
endif