blob: 10dc2d3fd231953af795715105fdab3a08a14c17 [file] [log] [blame]
Brian Carlstrom16192862011-09-12 17:50:06 -07001#
2# Copyright (C) 2011 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
Brian Carlstrom27ec9612011-09-19 20:20:38 -070017########################################################################
Brian Carlstrom7ab763c2013-12-09 00:38:02 -080018# Rules to build a smaller "core" image to support core libraries
19# (that is, non-Android frameworks) testing on the host and target
20#
21# The main rules to build the default "boot" image are in
22# build/core/dex_preopt_libart.mk
Brian Carlstrom3b010aa2013-06-25 23:06:36 -070023TARGET_CORE_JARS := core-libart conscrypt okhttp core-junit bouncycastle
Brian Carlstrom87587cb2012-03-08 11:42:50 -080024HOST_CORE_JARS := $(addsuffix -hostdex,$(TARGET_CORE_JARS))
Brian Carlstrom16192862011-09-12 17:50:06 -070025
Brian Carlstroma004aa92012-02-08 18:05:09 -080026HOST_CORE_DEX_LOCATIONS := $(foreach jar,$(HOST_CORE_JARS), $(HOST_OUT_JAVA_LIBRARIES)/$(jar).jar)
27TARGET_CORE_DEX_LOCATIONS := $(foreach jar,$(TARGET_CORE_JARS),/$(DEXPREOPT_BOOT_JAR_DIR)/$(jar).jar)
28
29HOST_CORE_DEX_FILES := $(foreach jar,$(HOST_CORE_JARS), $(call intermediates-dir-for,JAVA_LIBRARIES,$(jar),t,COMMON)/javalib.jar)
30TARGET_CORE_DEX_FILES := $(foreach jar,$(TARGET_CORE_JARS),$(call intermediates-dir-for,JAVA_LIBRARIES,$(jar), ,COMMON)/javalib.jar)
Brian Carlstrom16192862011-09-12 17:50:06 -070031
Brian Carlstrom27ec9612011-09-19 20:20:38 -070032HOST_CORE_OAT := $(HOST_OUT_JAVA_LIBRARIES)/core.oat
Brian Carlstroma004aa92012-02-08 18:05:09 -080033TARGET_CORE_OAT := $(ART_TEST_DIR)/core.oat
Brian Carlstrom16192862011-09-12 17:50:06 -070034
Brian Carlstroma004aa92012-02-08 18:05:09 -080035HOST_CORE_OAT_OUT := $(HOST_OUT_JAVA_LIBRARIES)/core.oat
36TARGET_CORE_OAT_OUT := $(ART_TEST_OUT)/core.oat
Brian Carlstrome24fa612011-09-29 00:53:55 -070037
Brian Carlstroma004aa92012-02-08 18:05:09 -080038HOST_CORE_IMG_OUT := $(HOST_OUT_JAVA_LIBRARIES)/core.art
39TARGET_CORE_IMG_OUT := $(ART_TEST_OUT)/core.art
40
Dave Allison70202782013-10-22 17:52:19 -070041TARGET_INSTRUCTION_SET_FEATURES := $(DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES)
42
TDYa12758e63f92012-04-24 13:16:47 -070043$(HOST_CORE_IMG_OUT): $(HOST_CORE_DEX_FILES) $(DEX2OAT_DEPENDENCY)
Shih-wei Liao8cfa8822012-04-21 01:54:10 -070044 @echo "host dex2oat: $@ ($?)"
45 @mkdir -p $(dir $@)
Brian Carlstrom7ab763c2013-12-09 00:38:02 -080046 $(hide) $(DEX2OAT) --runtime-arg -Xms16m --runtime-arg -Xmx16m --image-classes=$(PRELOADED_CLASSES) $(addprefix \
Dave Allison70202782013-10-22 17:52:19 -070047 --dex-file=,$(HOST_CORE_DEX_FILES)) $(addprefix --dex-location=,$(HOST_CORE_DEX_LOCATIONS)) --oat-file=$(HOST_CORE_OAT_OUT) \
Brian Carlstrom7ab763c2013-12-09 00:38:02 -080048 --oat-location=$(HOST_CORE_OAT) --image=$(HOST_CORE_IMG_OUT) --base=$(LIBART_IMG_HOST_BASE_ADDRESS) \
Dave Allison70202782013-10-22 17:52:19 -070049 --instruction-set=$(HOST_ARCH) --host --android-root=$(HOST_OUT)
Brian Carlstrom27ec9612011-09-19 20:20:38 -070050
Shih-wei Liao8cfa8822012-04-21 01:54:10 -070051$(TARGET_CORE_IMG_OUT): $(TARGET_CORE_DEX_FILES) $(DEX2OAT_DEPENDENCY)
52 @echo "target dex2oat: $@ ($?)"
53 @mkdir -p $(dir $@)
Brian Carlstrom7ab763c2013-12-09 00:38:02 -080054 $(hide) $(DEX2OAT) --runtime-arg -Xms16m --runtime-arg -Xmx16m --image-classes=$(PRELOADED_CLASSES) $(addprefix \
Dave Allison70202782013-10-22 17:52:19 -070055 --dex-file=,$(TARGET_CORE_DEX_FILES)) $(addprefix --dex-location=,$(TARGET_CORE_DEX_LOCATIONS)) --oat-file=$(TARGET_CORE_OAT_OUT) \
Brian Carlstrom7ab763c2013-12-09 00:38:02 -080056 --oat-location=$(TARGET_CORE_OAT) --image=$(TARGET_CORE_IMG_OUT) --base=$(LIBART_IMG_TARGET_BASE_ADDRESS) \
Dave Allison70202782013-10-22 17:52:19 -070057 --instruction-set=$(TARGET_ARCH) --instruction-set-features=$(TARGET_INSTRUCTION_SET_FEATURES) --host-prefix=$(PRODUCT_OUT) --android-root=$(PRODUCT_OUT)/system
Brian Carlstrom27ec9612011-09-19 20:20:38 -070058
Brian Carlstrom73666be2012-03-10 20:25:10 -080059$(HOST_CORE_OAT_OUT): $(HOST_CORE_IMG_OUT)
Brian Carlstrom2b7cdf42011-10-13 11:18:28 -070060
Brian Carlstrom73666be2012-03-10 20:25:10 -080061$(TARGET_CORE_OAT_OUT): $(TARGET_CORE_IMG_OUT)
Brian Carlstrom2b7cdf42011-10-13 11:18:28 -070062
Brian Carlstromcb91f1a2013-02-01 12:55:09 -080063ifeq ($(ART_BUILD_HOST),true)
Brian Carlstrom85545cd2012-06-27 14:28:06 -070064include $(CLEAR_VARS)
65LOCAL_MODULE := core.art-host
66LOCAL_MODULE_TAGS := optional
Brian Carlstromc0ee6502013-07-12 18:09:50 -070067LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common.mk
68LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.oat.mk
Brian Carlstrom51c24672013-07-11 16:00:56 -070069LOCAL_ADDITIONAL_DEPENDENCIES += $(HOST_CORE_IMG_OUT)
Brian Carlstrom85545cd2012-06-27 14:28:06 -070070include $(BUILD_PHONY_PACKAGE)
Brian Carlstrom660f8f02014-01-28 16:05:27 -080071endif # ART_BUILD_HOST
Brian Carlstrom85545cd2012-06-27 14:28:06 -070072
Brian Carlstrom2b070962013-10-29 13:35:25 -070073# If we aren't building the host toolchain, skip building the target core.art.
74ifeq ($(WITH_HOST_DALVIK),true)
Brian Carlstromdc959ea2013-10-28 00:44:49 -070075ifeq ($(ART_BUILD_TARGET),true)
76include $(CLEAR_VARS)
77LOCAL_MODULE := core.art
78LOCAL_MODULE_TAGS := optional
79LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common.mk
80LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.oat.mk
81LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_CORE_IMG_OUT)
82include $(BUILD_PHONY_PACKAGE)
Brian Carlstrom660f8f02014-01-28 16:05:27 -080083endif # ART_BUILD_TARGET
84endif # WITH_HOST_DALVIK