pm.dexopt.* props in runtime_libart.mk becomes optional am: 8af29d4ec0

Original change: https://googleplex-android-review.googlesource.com/c/platform/build/+/12042310

Change-Id: I9c4c020af4448e631dbd7d1f21221bb054307de9
This commit is contained in:
Jiyong Park
2020-06-30 09:58:36 +00:00
committed by Automerger Merge Worker

View File

@@ -57,23 +57,23 @@ PRODUCT_SYSTEM_PROPERTIES += \
# On eng builds, make "boot" reasons only extract for faster turnaround.
ifeq (eng,$(TARGET_BUILD_VARIANT))
PRODUCT_SYSTEM_PROPERTIES += \
pm.dexopt.first-boot=extract \
pm.dexopt.boot=extract
pm.dexopt.first-boot?=extract \
pm.dexopt.boot?=extract
else
PRODUCT_SYSTEM_PROPERTIES += \
pm.dexopt.first-boot=quicken \
pm.dexopt.boot=verify
pm.dexopt.first-boot?=quicken \
pm.dexopt.boot?=verify
endif
# The install filter is speed-profile in order to enable the use of
# profiles from the dex metadata files. Note that if a profile is not provided
# or if it is empty speed-profile is equivalent to (quicken + empty app image).
PRODUCT_SYSTEM_PROPERTIES += \
pm.dexopt.install=speed-profile \
pm.dexopt.bg-dexopt=speed-profile \
pm.dexopt.ab-ota=speed-profile \
pm.dexopt.inactive=verify \
pm.dexopt.shared=speed
pm.dexopt.install?=speed-profile \
pm.dexopt.bg-dexopt?=speed-profile \
pm.dexopt.ab-ota?=speed-profile \
pm.dexopt.inactive?=verify \
pm.dexopt.shared?=speed
# Pass file with the list of updatable boot class path packages to dex2oat.
PRODUCT_SYSTEM_PROPERTIES += \