ef66a8b7da
Test: reboot and verify iorapd is not running
Bug: 123595428
Bug: 72170747
(cherry picked from commit 3dbd7356de
)
Merged-In: I9c53714d6a35f8cb016e0baceeb12482d50557a5
Change-Id: I8a8a93ca088c577e0e7ac9600313c433c573f759
97 lines
3.1 KiB
Makefile
97 lines
3.1 KiB
Makefile
#
|
|
# 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
|
|
|
|
ifeq ($(TARGET_CORE_JARS),)
|
|
$(error TARGET_CORE_JARS is empty; cannot update PRODUCT_PACKAGES variable)
|
|
endif
|
|
|
|
# Minimal boot classpath. This should be a subset of PRODUCT_BOOT_JARS, and equivalent to
|
|
# TARGET_CORE_JARS.
|
|
PRODUCT_PACKAGES += \
|
|
$(TARGET_CORE_JARS)
|
|
|
|
# Additional mixins to the boot classpath.
|
|
PRODUCT_PACKAGES += \
|
|
android.test.base \
|
|
|
|
# Why are we pulling in ext, which is frameworks/base, depending on tagsoup and nist-sip?
|
|
PRODUCT_PACKAGES += \
|
|
ext \
|
|
|
|
# Android Runtime APEX module.
|
|
PRODUCT_PACKAGES += com.android.runtime
|
|
PRODUCT_HOST_PACKAGES += com.android.runtime
|
|
|
|
# Certificates.
|
|
PRODUCT_PACKAGES += \
|
|
cacerts \
|
|
|
|
PRODUCT_PACKAGES += \
|
|
hiddenapi-package-whitelist.xml \
|
|
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
dalvik.vm.image-dex2oat-Xms=64m \
|
|
dalvik.vm.image-dex2oat-Xmx=64m \
|
|
dalvik.vm.dex2oat-Xms=64m \
|
|
dalvik.vm.dex2oat-Xmx=512m \
|
|
dalvik.vm.usejit=true \
|
|
dalvik.vm.usejitprofiles=true \
|
|
dalvik.vm.dexopt.secondary=true \
|
|
dalvik.vm.appimageformat=lz4
|
|
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
ro.dalvik.vm.native.bridge=0
|
|
|
|
# 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))
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
pm.dexopt.first-boot=extract \
|
|
pm.dexopt.boot=extract
|
|
else
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
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_DEFAULT_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
|
|
|
|
# Enable resolution of startup const strings.
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
dalvik.vm.dex2oat-resolve-startup-strings=true
|
|
|
|
# Specify default block size of 512K to enable parallel image decompression.
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
dalvik.vm.dex2oat-max-image-block-size=524288
|
|
|
|
# Enable minidebuginfo generation unless overridden.
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
dalvik.vm.minidebuginfo=true \
|
|
dalvik.vm.dex2oat-minidebuginfo=true
|
|
|
|
# Disable iorapd by default
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
ro.iorapd.enable=false
|