You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
926 B
43 lines
926 B
LOCAL_PATH := $(call my-dir)
|
|
|
|
STOCK_GAPPS_DEVICES += \
|
|
%bacon \
|
|
%berkeley \
|
|
%ether \
|
|
%nash \
|
|
%shamu \
|
|
$(PIXEL_CODENAMES)
|
|
|
|
NANO_GAPPS_DEVICES += \
|
|
# %bacon \
|
|
%jfltevzw \
|
|
%molly
|
|
|
|
EXCLUDE_GAPPS_DEVICES += \
|
|
%flo \
|
|
%foster \
|
|
%fugu \
|
|
%m8 \
|
|
%tv_molly
|
|
|
|
GAPPS_DEVICES += \
|
|
$(STOCK_GAPPS_DEVICES) \
|
|
$(NANO_GAPPS_DEVICES)
|
|
|
|
ifneq ($(filter $(STOCK_GAPPS_DEVICES),$(TARGET_PRODUCT)),)
|
|
GAPPS_VARIANT := stock
|
|
GAPPS_FORCE_PACKAGE_OVERRIDES := true
|
|
GAPPS_FORCE_PIXEL_LAUNCHER := true
|
|
GAPPS_EXCLUDED_PACKAGES := GoogleCamera
|
|
endif # Stock GApps
|
|
|
|
|
|
ifneq ($(filter $(NANO_GAPPS_DEVICES),$(TARGET_PRODUCT)),)
|
|
GAPPS_VARIANT := nano
|
|
GAPPS_FORCE_PACKAGE_OVERRIDES := true
|
|
GAPPS_FORCE_PIXEL_LAUNCHER := true
|
|
endif # Nano GApps
|
|
|
|
ifneq ($(filter $(GAPPS_DEVICES),$(TARGET_PRODUCT)),)
|
|
$(call inherit-product-if-exists, vendor/opengapps/build/opengapps-packages.mk)
|
|
endif # GApps Inclusion
|
|
|