dd3a17feef
This allows projects to opt out for space limited devices. Also create a common_mini.mk and populate it with common stuff from the common_mini_*.mk files. Change-Id: I7d7dee73b70f97a778353ca136434a6e36edaf7e
12 lines
327 B
Makefile
12 lines
327 B
Makefile
# Inherit common CM stuff
|
|
$(call inherit-product, vendor/cm/config/common_mini.mk)
|
|
|
|
# Required CM packages
|
|
PRODUCT_PACKAGES += \
|
|
LatinIME
|
|
|
|
ifeq ($(TARGET_SCREEN_WIDTH) $(TARGET_SCREEN_HEIGHT),$(space))
|
|
PRODUCT_COPY_FILES += \
|
|
vendor/cm/prebuilt/common/bootanimation/800.zip:system/media/bootanimation.zip
|
|
endif
|