37 lines
715 B
Makefile
37 lines
715 B
Makefile
# Inherit common tequila stuff
|
|
$(call inherit-product, vendor/tequila/config/common_mobile.mk)
|
|
|
|
PRODUCT_SIZE := full
|
|
|
|
# Include {Lato,Rubik} fonts
|
|
$(call inherit-product-if-exists, external/google-fonts/lato/fonts.mk)
|
|
$(call inherit-product-if-exists, external/google-fonts/rubik/fonts.mk)
|
|
|
|
# Apps
|
|
PRODUCT_PACKAGES += \
|
|
Eleven \
|
|
Etar \
|
|
Profiles \
|
|
Recorder \
|
|
Seedvault
|
|
|
|
ifneq ($(PRODUCT_NO_CAMERA),true)
|
|
PRODUCT_PACKAGES += \
|
|
Aperture
|
|
endif
|
|
|
|
ifneq ($(TARGET_EXCLUDES_AUDIOFX),true)
|
|
PRODUCT_PACKAGES += \
|
|
AudioFX
|
|
endif
|
|
|
|
# Extra cmdline tools
|
|
PRODUCT_PACKAGES += \
|
|
unrar \
|
|
zstd
|
|
|
|
# Fonts
|
|
PRODUCT_PACKAGES += \
|
|
fonts_customization.xml \
|
|
FontLatoOverlay \
|
|
FontRubikOverlay
|