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

Commit 47d50f51 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: 85471ed8

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

Change-Id: Id5b74a7aa077a9a2b9c5377ae340ab6a96952b0c
parents 30ab9d19 85471ed8
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 += \