2013-06-27 21:02:46 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2013 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Provides a functioning ART environment without Android frameworks
|
|
|
|
|
2016-11-17 22:54:49 +01:00
|
|
|
# Additional mixins to the boot classpath.
|
|
|
|
PRODUCT_PACKAGES += \
|
2017-11-30 18:13:36 +01:00
|
|
|
android.test.base \
|
2016-11-17 22:54:49 +01:00
|
|
|
|
|
|
|
# Why are we pulling in ext, which is frameworks/base, depending on tagsoup and nist-sip?
|
|
|
|
PRODUCT_PACKAGES += \
|
2014-12-08 23:46:29 +01:00
|
|
|
ext \
|
2016-11-17 22:54:49 +01:00
|
|
|
|
2019-07-05 23:39:19 +02:00
|
|
|
# Runtime (Bionic) APEX module.
|
2019-01-14 16:23:48 +01:00
|
|
|
PRODUCT_PACKAGES += com.android.runtime
|
2019-07-05 23:39:19 +02:00
|
|
|
|
|
|
|
# ART APEX module.
|
2019-10-28 21:07:57 +01:00
|
|
|
# Note that this package includes the minimal boot classpath JARs (listed in
|
2020-03-23 16:35:00 +01:00
|
|
|
# ART_APEX_JARS), which should no longer be added directly to PRODUCT_PACKAGES.
|
2020-10-12 16:58:11 +02:00
|
|
|
PRODUCT_PACKAGES += com.android.art-autoselect
|
|
|
|
PRODUCT_HOST_PACKAGES += com.android.art-autoselect
|
2016-11-17 22:54:49 +01:00
|
|
|
|
|
|
|
# Certificates.
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
cacerts \
|
|
|
|
|
2018-02-20 11:56:48 +01:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
hiddenapi-package-whitelist.xml \
|
|
|
|
|
2020-05-29 10:50:03 +02:00
|
|
|
PRODUCT_SYSTEM_PROPERTIES += \
|
2014-07-08 19:35:29 +02:00
|
|
|
dalvik.vm.image-dex2oat-Xms=64m \
|
|
|
|
dalvik.vm.image-dex2oat-Xmx=64m \
|
|
|
|
dalvik.vm.dex2oat-Xms=64m \
|
|
|
|
dalvik.vm.dex2oat-Xmx=512m \
|
2015-11-05 17:49:49 +01:00
|
|
|
dalvik.vm.usejit=true \
|
2016-01-29 00:58:02 +01:00
|
|
|
dalvik.vm.usejitprofiles=true \
|
2017-02-07 04:03:05 +01:00
|
|
|
dalvik.vm.dexopt.secondary=true \
|
2016-01-29 00:58:02 +01:00
|
|
|
dalvik.vm.appimageformat=lz4
|
2017-04-25 13:25:33 +02:00
|
|
|
|
2020-05-29 10:50:03 +02:00
|
|
|
PRODUCT_SYSTEM_PROPERTIES += \
|
2017-08-09 19:57:33 +02:00
|
|
|
ro.dalvik.vm.native.bridge=0
|
|
|
|
|
2017-04-25 13:25:33 +02:00
|
|
|
# Different dexopt types for different package update/install times.
|
|
|
|
# On eng builds, make "boot" reasons only extract for faster turnaround.
|
|
|
|
ifeq (eng,$(TARGET_BUILD_VARIANT))
|
2020-05-29 10:50:03 +02:00
|
|
|
PRODUCT_SYSTEM_PROPERTIES += \
|
2020-06-23 09:46:38 +02:00
|
|
|
pm.dexopt.first-boot?=extract \
|
|
|
|
pm.dexopt.boot?=extract
|
2017-04-25 13:25:33 +02:00
|
|
|
else
|
2020-05-29 10:50:03 +02:00
|
|
|
PRODUCT_SYSTEM_PROPERTIES += \
|
2020-06-23 09:46:38 +02:00
|
|
|
pm.dexopt.first-boot?=quicken \
|
|
|
|
pm.dexopt.boot?=verify
|
2017-04-25 13:25:33 +02:00
|
|
|
endif
|
|
|
|
|
2018-03-29 03:31:51 +02:00
|
|
|
# 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).
|
2020-05-29 10:50:03 +02:00
|
|
|
PRODUCT_SYSTEM_PROPERTIES += \
|
2020-06-23 09:46:38 +02:00
|
|
|
pm.dexopt.install?=speed-profile \
|
2020-10-30 00:40:28 +01:00
|
|
|
pm.dexopt.install-fast?=skip \
|
|
|
|
pm.dexopt.install-bulk?=speed-profile \
|
|
|
|
pm.dexopt.install-bulk-secondary?=verify \
|
|
|
|
pm.dexopt.install-bulk-downgraded?=verify \
|
|
|
|
pm.dexopt.install-bulk-secondary-downgraded?=extract \
|
2020-06-23 09:46:38 +02:00
|
|
|
pm.dexopt.bg-dexopt?=speed-profile \
|
|
|
|
pm.dexopt.ab-ota?=speed-profile \
|
|
|
|
pm.dexopt.inactive?=verify \
|
|
|
|
pm.dexopt.shared?=speed
|
2017-11-03 22:37:32 +01:00
|
|
|
|
2020-04-06 13:12:34 +02:00
|
|
|
# Pass file with the list of updatable boot class path packages to dex2oat.
|
2020-05-29 10:50:03 +02:00
|
|
|
PRODUCT_SYSTEM_PROPERTIES += \
|
2020-04-06 13:12:34 +02:00
|
|
|
dalvik.vm.dex2oat-updatable-bcp-packages-file=/system/etc/updatable-bcp-packages.txt
|
|
|
|
|
2019-01-25 18:16:28 +01:00
|
|
|
# Enable resolution of startup const strings.
|
2020-05-29 10:50:03 +02:00
|
|
|
PRODUCT_SYSTEM_PROPERTIES += \
|
2019-01-25 18:16:28 +01:00
|
|
|
dalvik.vm.dex2oat-resolve-startup-strings=true
|
|
|
|
|
2019-04-08 22:32:06 +02:00
|
|
|
# Specify default block size of 512K to enable parallel image decompression.
|
2020-05-29 10:50:03 +02:00
|
|
|
PRODUCT_SYSTEM_PROPERTIES += \
|
2019-04-08 22:32:06 +02:00
|
|
|
dalvik.vm.dex2oat-max-image-block-size=524288
|
|
|
|
|
2017-11-03 22:37:32 +01:00
|
|
|
# Enable minidebuginfo generation unless overridden.
|
2020-05-29 10:50:03 +02:00
|
|
|
PRODUCT_SYSTEM_PROPERTIES += \
|
2019-01-08 18:02:14 +01:00
|
|
|
dalvik.vm.minidebuginfo=true \
|
2017-11-03 22:37:32 +01:00
|
|
|
dalvik.vm.dex2oat-minidebuginfo=true
|
2019-01-29 23:58:28 +01:00
|
|
|
|
2019-05-02 00:34:47 +02:00
|
|
|
PRODUCT_USES_DEFAULT_ART_CONFIG := true
|