summaryrefslogtreecommitdiff
path: root/products/atv_lowram_defaults.mk
diff options
context:
space:
mode:
Diffstat (limited to 'products/atv_lowram_defaults.mk')
-rw-r--r--products/atv_lowram_defaults.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/products/atv_lowram_defaults.mk b/products/atv_lowram_defaults.mk
index 7ce3557..aa43ae5 100644
--- a/products/atv_lowram_defaults.mk
+++ b/products/atv_lowram_defaults.mk
@@ -39,14 +39,14 @@ PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD := false
# leave less information available via JDWP.
PRODUCT_MINIMIZE_JAVA_DEBUG_INFO := true
-# Disable Scudo outside of eng builds to save RAM.
-ifneq (,$(filter eng, $(TARGET_BUILD_VARIANT)))
- PRODUCT_DISABLE_SCUDO := true
-endif
-
# Add the system properties.
TARGET_SYSTEM_PROP += \
build/make/target/board/go_defaults_common.prop
# Dedupe VNDK libraries with identical core variants.
TARGET_VNDK_USE_CORE_VARIANT := true
+
+# Use the low memory allocator outside of eng builds to save RSS.
+ifneq (,$(filter eng, $(TARGET_BUILD_VARIANT)))
+ MALLOC_SVELTE := true
+endif