19 lines
494 B
Makefile
19 lines
494 B
Makefile
# This file is sourced by builds to remove certain apps/features
|
|
|
|
# Remove stock aosp packages using filter-out (more reliable than -=)
|
|
PRODUCT_PACKAGES := $(filter-out \
|
|
WebViewShell \
|
|
Launcher3 \
|
|
Launcher3QuickStep \
|
|
Launcher3Go \
|
|
TrebuchetQuickStep \
|
|
Galaxy4 \
|
|
HoloSpiralWallpaper \
|
|
LiveWallpapers \
|
|
LiveWallpapersPicker \
|
|
MagicSmokeWallpapers \
|
|
NoiseField \
|
|
PhaseBeam \
|
|
VisualizationWallpapers \
|
|
PhotoTable, \
|
|
$(PRODUCT_PACKAGES))
|