Merge "Enable resolution of startup const-string for non user builds"

am: 8fdf4e0f5b

Change-Id: Ia82d22d35bbc051fbcddd87bcab88c682c02cbf9
This commit is contained in:
Mathieu Chartier 2019-01-30 14:44:42 -08:00 committed by android-build-merger
commit 47200d864f
1 changed files with 9 additions and 0 deletions

View File

@ -87,6 +87,15 @@ PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
pm.dexopt.inactive=verify \
pm.dexopt.shared=speed
# Currently for all non-user builds only.
ifneq (user,$(TARGET_BUILD_VARIANT))
# Enable resolution of startup const strings.
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
dalvik.vm.dex2oat-resolve-startup-strings=true
endif
# Enable minidebuginfo generation unless overridden.
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
dalvik.vm.minidebuginfo=true \