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
|
|
|
|
|
2017-06-15 18:46:58 +02:00
|
|
|
ifeq ($(TARGET_CORE_JARS),)
|
|
|
|
$(error TARGET_CORE_JARS is empty; cannot update PRODUCT_PACKAGES variable)
|
|
|
|
endif
|
|
|
|
|
2016-11-17 22:54:49 +01:00
|
|
|
# Minimal boot classpath. This should be a subset of PRODUCT_BOOT_JARS, and equivalent to
|
|
|
|
# TARGET_CORE_JARS.
|
2013-06-27 21:02:46 +02:00
|
|
|
PRODUCT_PACKAGES += \
|
2017-06-15 18:46:58 +02:00
|
|
|
$(TARGET_CORE_JARS)
|
2016-11-17 22:54:49 +01:00
|
|
|
|
|
|
|
# Additional mixins to the boot classpath.
|
|
|
|
PRODUCT_PACKAGES += \
|
2016-11-29 13:15:13 +01:00
|
|
|
legacy-test \
|
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
|
|
|
|
|
|
|
# Why are we pulling in expat, which is used in frameworks, only, it seem?
|
|
|
|
PRODUCT_PACKAGES += \
|
2014-12-08 23:46:29 +01:00
|
|
|
libexpat \
|
2016-11-17 22:54:49 +01:00
|
|
|
|
|
|
|
# Libcore.
|
|
|
|
PRODUCT_PACKAGES += \
|
2014-12-08 23:46:29 +01:00
|
|
|
libjavacore \
|
2015-02-17 17:55:52 +01:00
|
|
|
libopenjdk \
|
2016-11-17 22:54:49 +01:00
|
|
|
|
|
|
|
# Libcore ICU. TODO: Try to figure out if/why we need them explicitly.
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
libicui18n \
|
|
|
|
libicuuc \
|
|
|
|
|
|
|
|
# ART.
|
2017-06-23 00:35:14 +02:00
|
|
|
PRODUCT_PACKAGES += art-runtime
|
2016-11-17 22:54:49 +01:00
|
|
|
# ART/dex helpers.
|
2017-06-23 00:35:14 +02:00
|
|
|
PRODUCT_PACKAGES += art-tools
|
2016-11-17 22:54:49 +01:00
|
|
|
|
|
|
|
# Certificates.
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
cacerts \
|
|
|
|
|
2017-11-03 07:33:10 +01:00
|
|
|
PRODUCT_SYSTEM_DEFAULT_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
|
|
|
|
2017-08-09 19:57:33 +02:00
|
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
|
|
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))
|
2017-11-03 07:33:10 +01:00
|
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
2017-04-25 13:25:33 +02:00
|
|
|
pm.dexopt.first-boot=extract \
|
|
|
|
pm.dexopt.boot=extract
|
|
|
|
else
|
2017-11-03 07:33:10 +01:00
|
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
2017-04-25 13:25:33 +02:00
|
|
|
pm.dexopt.first-boot=quicken \
|
|
|
|
pm.dexopt.boot=verify
|
|
|
|
endif
|
|
|
|
|
2017-11-03 07:33:10 +01:00
|
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
2017-04-25 13:25:33 +02:00
|
|
|
pm.dexopt.install=quicken \
|
|
|
|
pm.dexopt.bg-dexopt=speed-profile \
|
2017-06-15 22:49:10 +02:00
|
|
|
pm.dexopt.ab-ota=speed-profile \
|
2017-09-18 22:05:24 +02:00
|
|
|
pm.dexopt.inactive=verify \
|
|
|
|
pm.dexopt.shared=speed
|
2017-11-03 22:37:32 +01:00
|
|
|
|
|
|
|
# Enable minidebuginfo generation unless overridden.
|
2017-11-13 04:08:40 +01:00
|
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
2017-11-03 22:37:32 +01:00
|
|
|
dalvik.vm.dex2oat-minidebuginfo=true
|