Exclude some things from LineageOS builds

Change-Id: I34420b49a2f419b84f3af9aff048249d77e419ae
This commit is contained in:
Michael Bestas 2024-09-12 01:22:15 +03:00 committed by Michael Bestas
parent a5b9a862ed
commit 2801e361ab
No known key found for this signature in database
GPG Key ID: CC95044519BE6669
4 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ PRODUCT_PACKAGES += dump_aoc \
aocd \
aocxd
ifeq (,$(filter aosp_%,$(TARGET_PRODUCT)))
ifeq (,$(filter aosp_% lineage_%,$(TARGET_PRODUCT)))
# IAudioMetricExt HIDL
PRODUCT_PACKAGES += \
vendor.google.audiometricext@1.0-service-vendor

View File

@ -1,5 +1,5 @@
# When neither AOSP nor factory targets
ifeq (,$(filter aosp_% factory_%, $(TARGET_PRODUCT)))
ifeq (,$(filter aosp_% factory_% lineage_%, $(TARGET_PRODUCT)))
PRODUCT_PACKAGES += BetterBugStub
PRODUCT_PACKAGES_DEBUG += BetterBug
endif

View File

@ -1,5 +1,5 @@
ifneq ($(TARGET_BUILD_VARIANT), user)
ifeq (,$(filter aosp_%, $(TARGET_PRODUCT))) # Skip aosp target product
ifeq (,$(filter aosp_% lineage_%, $(TARGET_PRODUCT))) # Skip aosp target product
PRODUCT_PACKAGES_DEBUG += \
Gyotaku

View File

@ -6,7 +6,7 @@ PRODUCT_PACKAGES_DEBUG += \
ramdump \
# When neither AOSP nor factory targets
ifeq (,$(filter aosp_% factory_%, $(TARGET_PRODUCT)))
ifeq (,$(filter aosp_% factory_% lineage_%, $(TARGET_PRODUCT)))
PRODUCT_PACKAGES += SSRestartDetector
PRODUCT_PACKAGES_DEBUG += RamdumpUploader
endif