diff options
author | Naseer Ahmed <quic_naseer@quicinc.com> | 2023-02-22 17:11:34 -0500 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2023-02-28 10:47:34 -0800 |
commit | da003a2f1e20e737be010f19705b036bc78bc38e (patch) | |
tree | 4695f59bba95b29cd64a8cac2c5e5cdcc8274b81 | |
parent | d6ceaf0e98d484662ece6455263e6849263062f9 (diff) |
display: Update soong config used in SF
CRs-Fixed: 3414470
Change-Id: Ideaaf2628096dc6b24fe3f529d4f81f90e18d5b5
-rw-r--r-- | config/display-product-commonsys.mk | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/config/display-product-commonsys.mk b/config/display-product-commonsys.mk index 702b047..0b913da 100644 --- a/config/display-product-commonsys.mk +++ b/config/display-product-commonsys.mk @@ -1,5 +1,4 @@ PRODUCT_PACKAGES += libdisplayconfig.system \ - libqdMetaData.system \ libgralloc.system.qti \ libdrm \ liblayerext.qti \ @@ -8,14 +7,21 @@ PRODUCT_PACKAGES += libdisplayconfig.system \ libdisplayconfig.system.qti SOONG_CONFIG_NAMESPACES += qtidisplaycommonsys -SOONG_CONFIG_NAMESPACES += qtiunifeddraw # Soong Keys -SOONG_CONFIG_qtidisplaycommonsys := displayconfig_enabled -SOONG_CONFIG_qtiunifeddraw := qtiunifeddraw_enabled +SOONG_CONFIG_qtidisplaycommonsys := displayextension composer3ext # Soong Values -SOONG_CONFIG_qtidisplaycommonsys_displayconfig_enabled := false -SOONG_CONFIG_qtiunifeddraw_qtiunifeddraw_enabled := true + +# displayextension controls global compile time disablement of SF extensions +SOONG_CONFIG_qtidisplaycommonsys_displayextension := false + +# Variables can be added here on a transient basis to merge +# features that are not yet consumed in keystone +# Once the feature has been consumed, these can be removed +# and the feature can be enabled/disabled at run time via android +# properties +SOONG_CONFIG_qtidisplaycommonsys_composer3ext := false ifeq ($(call is-vendor-board-platform,QCOM),true) - SOONG_CONFIG_qtidisplaycommonsys_displayconfig_enabled := true + SOONG_CONFIG_qtidisplaycommonsys_displayextension := true + SOONG_CONFIG_qtidisplaycommonsys_composer3ext := true endif |