From 76cdd012507acf18950b525d22557d7d0bffbeba Mon Sep 17 00:00:00 2001 From: Nolen Johnson Date: Tue, 18 Jun 2019 03:51:03 +0000 Subject: [PATCH] lineage: partner_gms: Add minimal configuration flag Change-Id: I245138b19448a193f8cbd12d5d26db295a4f4cdd --- config/partner_gms.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/partner_gms.mk b/config/partner_gms.mk index bb516ecd..78aca8ea 100644 --- a/config/partner_gms.mk +++ b/config/partner_gms.mk @@ -2,6 +2,10 @@ ifeq ($(WITH_GMS),true) ifeq ($(WITH_GMS_FI),true) $(call inherit-product-if-exists, vendor/partner_gms/products/fi.mk) else +ifeq ($(WITH_GMS_MINIMAL),true) +$(call inherit-product-if-exists, vendor/partner_gms/products/gms_minimal.mk) +else $(call inherit-product-if-exists, vendor/partner_gms/products/gms.mk) endif endif +endif