1# 2# Copyright (C) 2013 The Android Open Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17# Provides a functioning ART environment without Android frameworks 18 19PRODUCT_PACKAGES += \ 20 apache-xml \ 21 bouncycastle \ 22 cacerts \ 23 conscrypt \ 24 core-junit \ 25 core-libart \ 26 dalvikvm \ 27 dex2oat \ 28 dexdeps \ 29 dexdump \ 30 dexlist \ 31 dmtracedump \ 32 dx \ 33 ext \ 34 hprof-conv \ 35 libart \ 36 libcrypto \ 37 libexpat \ 38 libicui18n \ 39 libicuuc \ 40 libjavacore \ 41 libnativehelper \ 42 libssl \ 43 libz \ 44 oatdump \ 45 okhttp \ 46 patchoat 47 48PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \ 49 dalvik.vm.image-dex2oat-Xms=64m \ 50 dalvik.vm.image-dex2oat-Xmx=64m \ 51 dalvik.vm.dex2oat-Xms=64m \ 52 dalvik.vm.dex2oat-Xmx=512m \ 53 ro.dalvik.vm.native.bridge=0 \ 54