From 99b2739a66cd8bcf9ece03a1d5fd5484fd9f2bb4 Mon Sep 17 00:00:00 2001 From: Mathieu Chartier Date: Tue, 24 Oct 2017 14:12:58 -0700 Subject: [PATCH] Add PRODUCT_MINIMIZE_JAVA_DEBUG_INFO to go_defaults_common Strip the local variable table and the local variable type table to reduce the size of the system image. This has no bearing on stack traces, but will leave less information available via JDWP Bug: 67374015 Test: make and flash Change-Id: Ie592221b893f7fa7433fe10e8c08ff70b5de4e47 --- target/product/go_defaults_common.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/target/product/go_defaults_common.mk b/target/product/go_defaults_common.mk index 221aa8a92..ca58c1dd8 100644 --- a/target/product/go_defaults_common.mk +++ b/target/product/go_defaults_common.mk @@ -57,3 +57,8 @@ PRODUCT_PROPERTY_OVERRIDES += dalvik.vm.heapsize=256m # Do not generate libartd. PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD := false + +# Strip the local variable table and the local variable type table to reduce +# the size of the system image. This has no bearing on stack traces, but will +# leave less information available via JDWP. +PRODUCT_MINIMIZE_JAVA_DEBUG_INFO := true