blob: 9d7579de93beb5eeb6a1c158aeed63bfe88716be [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
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700342ND_TARGET_CORE_OAT := $(2ND_ART_TEST_DIR)/core.oat
Brian Carlstrom16192862011-09-12 17:50:06 -070035
Brian Carlstroma004aa92012-02-08 18:05:09 -080036HOST_CORE_OAT_OUT := $(HOST_OUT_JAVA_LIBRARIES)/core.oat
37TARGET_CORE_OAT_OUT := $(ART_TEST_OUT)/core.oat
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700382ND_TARGET_CORE_OAT_OUT := $(2ND_ART_TEST_OUT)/core.oat
Brian Carlstrome24fa612011-09-29 00:53:55 -070039
Brian Carlstroma004aa92012-02-08 18:05:09 -080040HOST_CORE_IMG_OUT := $(HOST_OUT_JAVA_LIBRARIES)/core.art
41TARGET_CORE_IMG_OUT := $(ART_TEST_OUT)/core.art
Andreas Gampeafbaa1a2014-03-25 18:09:32 -0700422ND_TARGET_CORE_IMG_OUT := $(2ND_ART_TEST_OUT)/core.art
Brian Carlstroma004aa92012-02-08 18:05:09 -080043
Dave Allison70202782013-10-22 17:52:19 -070044TARGET_INSTRUCTION_SET_FEATURES := $(DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES)
45
Nicolas Geoffray1db132d2014-03-26 10:56:24 +000046# Use dex2oat debug version for better error reporting
47$(HOST_CORE_IMG_OUT): $(HOST_CORE_DEX_FILES) $(DEX2OATD_DEPENDENCY)
Shih-wei Liao8cfa8822012-04-21 01:54:10 -070048 @echo "host dex2oat: $@ ($?)"
49 @mkdir -p $(dir $@)
Nicolas Geoffray1db132d2014-03-26 10:56:24 +000050 $(hide) $(DEX2OATD) --runtime-arg -Xms16m --runtime-arg -Xmx16m --image-classes=$(PRELOADED_CLASSES) $(addprefix \
Dave Allison70202782013-10-22 17:52:19 -070051 --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 -080052 --oat-location=$(HOST_CORE_OAT) --image=$(HOST_CORE_IMG_OUT) --base=$(LIBART_IMG_HOST_BASE_ADDRESS) \
Andreas Gampe922141a2014-03-12 10:59:26 -070053 --instruction-set=$(ART_HOST_ARCH) --host --android-root=$(HOST_OUT)
Brian Carlstrom27ec9612011-09-19 20:20:38 -070054
Brian Carlstrom73666be2012-03-10 20:25:10 -080055$(HOST_CORE_OAT_OUT): $(HOST_CORE_IMG_OUT)
Brian Carlstrom2b7cdf42011-10-13 11:18:28 -070056
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070057define create-oat-target-targets
Nicolas Geoffray668e9d82014-04-02 11:33:28 +010058$$($(1)TARGET_CORE_IMG_OUT): $$($(1)TARGET_CORE_DEX_FILES) $$(DEX2OATD_DEPENDENCY)
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070059 @echo "target dex2oat: $$@ ($$?)"
60 @mkdir -p $$(dir $$@)
Nicolas Geoffray668e9d82014-04-02 11:33:28 +010061 $$(hide) $$(DEX2OATD) --runtime-arg -Xms16m --runtime-arg -Xmx16m --image-classes=$$(PRELOADED_CLASSES) $$(addprefix \
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070062 --dex-file=,$$(TARGET_CORE_DEX_FILES)) $$(addprefix --dex-location=,$$(TARGET_CORE_DEX_LOCATIONS)) --oat-file=$$($(1)TARGET_CORE_OAT_OUT) \
63 --oat-location=$$($(1)TARGET_CORE_OAT) --image=$$($(1)TARGET_CORE_IMG_OUT) --base=$$(LIBART_IMG_TARGET_BASE_ADDRESS) \
64 --instruction-set=$$($(1)TARGET_ARCH) --instruction-set-features=$$(TARGET_INSTRUCTION_SET_FEATURES) --android-root=$$(PRODUCT_OUT)/system
65
Andreas Gampe2fe07922014-04-21 07:50:39 -070066# This "renaming" eases declaration in art/Android.mk
67TARGET_CORE_IMG_OUT$($(1)ART_PHONY_TEST_TARGET_SUFFIX) := $($(1)TARGET_CORE_IMG_OUT)
68
Andreas Gampeafbaa1a2014-03-25 18:09:32 -070069$$($(1)TARGET_CORE_OAT_OUT): $$($(1)TARGET_CORE_IMG_OUT)
70endef
71
72ifdef TARGET_2ND_ARCH
73$(eval $(call create-oat-target-targets,2ND_))
74endif
75$(eval $(call create-oat-target-targets,))
76
Brian Carlstrom2b7cdf42011-10-13 11:18:28 -070077
Brian Carlstromcb91f1a2013-02-01 12:55:09 -080078ifeq ($(ART_BUILD_HOST),true)
Brian Carlstrom85545cd2012-06-27 14:28:06 -070079include $(CLEAR_VARS)
80LOCAL_MODULE := core.art-host
81LOCAL_MODULE_TAGS := optional
Brian Carlstromc0ee6502013-07-12 18:09:50 -070082LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common.mk
83LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.oat.mk
Brian Carlstrom51c24672013-07-11 16:00:56 -070084LOCAL_ADDITIONAL_DEPENDENCIES += $(HOST_CORE_IMG_OUT)
Brian Carlstrom85545cd2012-06-27 14:28:06 -070085include $(BUILD_PHONY_PACKAGE)
Brian Carlstrom660f8f02014-01-28 16:05:27 -080086endif # ART_BUILD_HOST
Brian Carlstrom85545cd2012-06-27 14:28:06 -070087
Brian Carlstrom2b070962013-10-29 13:35:25 -070088# If we aren't building the host toolchain, skip building the target core.art.
89ifeq ($(WITH_HOST_DALVIK),true)
Brian Carlstromdc959ea2013-10-28 00:44:49 -070090ifeq ($(ART_BUILD_TARGET),true)
91include $(CLEAR_VARS)
92LOCAL_MODULE := core.art
93LOCAL_MODULE_TAGS := optional
94LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common.mk
95LOCAL_ADDITIONAL_DEPENDENCIES += art/build/Android.oat.mk
96LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_CORE_IMG_OUT)
97include $(BUILD_PHONY_PACKAGE)
Brian Carlstrom660f8f02014-01-28 16:05:27 -080098endif # ART_BUILD_TARGET
99endif # WITH_HOST_DALVIK