Remove unused apps (RamdumpService and SSRestartDetector) from factory build targets.

After ag/26620507, the two apps are built in factory build targets.
They don't need them so we should not build them.

Bug: 298102808
Design: go/sys-software-logging
Test: Manual
Flag: NONE N/A
Change-Id: Ie442c7a95e7fe764749031281e7740c3a4b5a768
This commit is contained in:
Enzo Liao 2024-05-06 19:58:06 +08:00
parent 51ca75b081
commit 882ef5add8

View file

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