Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit be2948a1 authored by Jiyong Park's avatar Jiyong Park Committed by Automerger Merge Worker
Browse files

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

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

Change-Id: I9c4c020af4448e631dbd7d1f21221bb054307de9
parents 4a6ee53f 8af29d4e
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -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 += \