blob: 08311ca4811ca6813def98d54a6de3154ecac4bc [file] [log] [blame]
Ying Wange7874c42010-09-17 16:36:06 -07001####################################
Brian Carlstromced4bff2013-11-14 23:44:56 -08002# dexpreopt support - typically used on user builds to run dexopt (for Dalvik) or dex2oat (for ART) ahead of time
Ying Wange7874c42010-09-17 16:36:06 -07003#
4####################################
5
Colin Cross6db5b0e2018-11-16 21:26:33 -08006include $(BUILD_SYSTEM)/dex_preopt_config.mk
Alex Light4e358ab2016-06-16 14:47:10 -07007
Nicolas Geoffraycdd43432017-03-24 14:45:59 +00008# Method returning whether the install path $(1) should be for system_other.
Andreas Gampe4ed21d12017-06-16 10:24:54 -07009# Under SANITIZE_LITE, we do not want system_other. Just put things under /data/asan.
10ifeq ($(SANITIZE_LITE),true)
11install-on-system-other =
12else
Nicolas Geoffray4a0ad4a2017-06-12 15:19:16 +010013install-on-system-other = $(filter-out $(PRODUCT_DEXPREOPT_SPEED_APPS) $(PRODUCT_SYSTEM_SERVER_APPS),$(basename $(notdir $(filter $(foreach f,$(SYSTEM_OTHER_ODEX_FILTER),$(TARGET_OUT)/$(f)),$(1)))))
Andreas Gampe4ed21d12017-06-16 10:24:54 -070014endif
Nicolas Geoffraycdd43432017-03-24 14:45:59 +000015
Nicolas Geoffray7e8ca9a2019-04-05 17:49:56 +010016# We want to install the profile even if we are not using preopt since it is required to generate
17# the image on the device.
18ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(DEXPREOPT_IMAGE_PROFILE_BUILT_INSTALLED),$(PRODUCT_OUT))
19
Nicolas Geoffray269bc742019-02-22 15:33:23 +000020# Install boot images. Note that there can be multiple.
David Srbecky6dd11ec2020-02-11 13:46:45 +000021my_boot_image_arch := TARGET_ARCH
22my_boot_image_out := $(PRODUCT_OUT)
23my_boot_image_syms := $(TARGET_OUT_UNSTRIPPED)
Yo Chiang3ca49802020-07-01 20:16:07 +080024DEFAULT_DEX_PREOPT_INSTALLED_IMAGE_MODULE := \
25 $(foreach my_boot_image_name,$(DEXPREOPT_IMAGE_NAMES),$(strip \
26 $(eval include $(BUILD_SYSTEM)/dex_preopt_libart.mk) \
27 $(my_boot_image_module)))
David Srbecky6dd11ec2020-02-11 13:46:45 +000028ifdef TARGET_2ND_ARCH
29 my_boot_image_arch := TARGET_2ND_ARCH
Yo Chiang3ca49802020-07-01 20:16:07 +080030 2ND_DEFAULT_DEX_PREOPT_INSTALLED_IMAGE_MODULE := \
31 $(foreach my_boot_image_name,$(DEXPREOPT_IMAGE_NAMES),$(strip \
32 $(eval include $(BUILD_SYSTEM)/dex_preopt_libart.mk) \
33 $(my_boot_image_module)))
David Srbecky6dd11ec2020-02-11 13:46:45 +000034endif
35# Install boot images for testing on host. We exclude framework image as it is not part of art manifest.
36my_boot_image_arch := HOST_ARCH
37my_boot_image_out := $(HOST_OUT)
38my_boot_image_syms := $(HOST_OUT)/symbols
Yo Chiang3ca49802020-07-01 20:16:07 +080039HOST_BOOT_IMAGE_MODULE := \
40 $(foreach my_boot_image_name,art_host,$(strip \
41 $(eval include $(BUILD_SYSTEM)/dex_preopt_libart.mk) \
42 $(my_boot_image_module)))
43HOST_BOOT_IMAGE := $(call module-installed-files,$(HOST_BOOT_IMAGE_MODULE))
David Srbecky6dd11ec2020-02-11 13:46:45 +000044ifdef HOST_2ND_ARCH
45 my_boot_image_arch := HOST_2ND_ARCH
Yo Chiang3ca49802020-07-01 20:16:07 +080046 2ND_HOST_BOOT_IMAGE_MODULE := \
47 $(foreach my_boot_image_name,art_host,$(strip \
48 $(eval include $(BUILD_SYSTEM)/dex_preopt_libart.mk) \
49 $(my_boot_image_module)))
50 2ND_HOST_BOOT_IMAGE := $(call module-installed-files,$(2ND_HOST_BOOT_IMAGE_MODULE))
David Srbecky6dd11ec2020-02-11 13:46:45 +000051endif
52my_boot_image_arch :=
53my_boot_image_out :=
54my_boot_image_syms :=
Yo Chiang3ca49802020-07-01 20:16:07 +080055my_boot_image_module :=
Brian Carlstromced4bff2013-11-14 23:44:56 -080056
Calin Juravle6bfdcda2019-04-16 13:05:42 -070057# Build the boot.zip which contains the boot jars and their compilation output
58# We can do this only if preopt is enabled and if the product uses libart config (which sets the
59# default properties for preopting).
Jiakai Zhang53dd8952024-01-18 17:22:13 +000060# At the time of writing, this is only for ART Cloud.
Calin Juravle6bfdcda2019-04-16 13:05:42 -070061ifeq ($(WITH_DEXPREOPT), true)
Jiakai Zhang5b5ab172023-11-17 22:22:52 +000062ifneq ($(WITH_DEXPREOPT_ART_BOOT_IMG_ONLY), true)
Calin Juravlecdff6b12019-05-01 15:34:47 -070063ifeq ($(PRODUCT_USES_DEFAULT_ART_CONFIG), true)
Calin Juravle6bfdcda2019-04-16 13:05:42 -070064
65boot_zip := $(PRODUCT_OUT)/boot.zip
Colin Crossd8badf52019-02-20 12:39:57 -080066bootclasspath_jars := $(DEXPREOPT_BOOTCLASSPATH_DEX_FILES)
Islam Elbannaab52f4b2022-11-04 15:51:07 +000067
68# TODO remove system_server_jars usages from boot.zip and depend directly on system_server.zip file.
Nick Chameyev3bb4b5d2022-12-19 16:05:28 +000069
70# Use "/system" path for JARs with "platform:" prefix.
71# These JARs counterintuitively use "platform" prefix but they will
72# be actually installed to /system partition.
73platform_system_server_jars = $(filter platform:%, $(PRODUCT_SYSTEM_SERVER_JARS))
satayev35a7a432021-05-04 16:14:02 +010074system_server_jars := \
Nick Chameyev3bb4b5d2022-12-19 16:05:28 +000075 $(foreach m,$(platform_system_server_jars),\
satayev35a7a432021-05-04 16:14:02 +010076 $(PRODUCT_OUT)/system/framework/$(call word-colon,2,$(m)).jar)
Calin Juravle8955a992018-05-10 11:33:27 -070077
Nick Chameyev3bb4b5d2022-12-19 16:05:28 +000078# For the remaining system server JARs use the partition signified by the prefix.
79# For example, prefix "system_ext:" will use "/system_ext" path.
80other_system_server_jars = $(filter-out $(platform_system_server_jars), $(PRODUCT_SYSTEM_SERVER_JARS))
81system_server_jars += \
82 $(foreach m,$(other_system_server_jars),\
83 $(PRODUCT_OUT)/$(call word-colon,1,$(m))/framework/$(call word-colon,2,$(m)).jar)
84
Jiakai Zhanga5551c52023-06-09 17:44:50 +010085# Infix can be 'art' (ART image for testing), 'boot' (primary), or 'mainline' (mainline extension).
86# Soong creates a set of variables for Make, one or each boot image. The only reason why the ART
87# image is exposed to Make is testing (art gtests) and benchmarking (art golem benchmarks). Install
88# rules that use those variables are in dex_preopt_libart.mk. Here for dexpreopt purposes the infix
89# is always 'boot' or 'mainline'.
90DEXPREOPT_INFIX := $(if $(filter true,$(DEX_PREOPT_WITH_UPDATABLE_BCP)),mainline,boot)
91
92# The input variables are written by build/soong/java/dexpreopt_bootjars.go. Examples can be found
93# at the bottom of build/soong/java/dexpreopt_config_testing.go.
94dexpreopt_root_dir := $(dir $(patsubst %/,%,$(dir $(firstword $(bootclasspath_jars)))))
Prashant Dubey029a6152023-09-18 17:57:53 +000095bootclasspath_arg := $(subst $(space),:,$(patsubst $(dexpreopt_root_dir)%,%,$(DEXPREOPT_BOOTCLASSPATH_DEX_FILES)))
96bootclasspath_locations_arg := $(subst $(space),:,$(DEXPREOPT_BOOTCLASSPATH_DEX_LOCATIONS))
Jiakai Zhanga5551c52023-06-09 17:44:50 +010097boot_images := $(subst :,$(space),$(DEXPREOPT_IMAGE_LOCATIONS_ON_DEVICE$(DEXPREOPT_INFIX)))
98boot_image_arg := $(subst $(space),:,$(patsubst /%,%,$(boot_images)))
Jiakai Zhang53dd8952024-01-18 17:22:13 +000099uffd_gc_flag_txt := $(OUT_DIR)/soong/dexpreopt/uffd_gc_flag.txt
Jiakai Zhanga5551c52023-06-09 17:44:50 +0100100
Jiakai Zhang34914f62023-06-12 11:18:12 +0100101boot_zip_metadata_txt := $(dir $(boot_zip))boot_zip/METADATA.txt
Jiakai Zhang53dd8952024-01-18 17:22:13 +0000102$(boot_zip_metadata_txt): $(uffd_gc_flag_txt)
Jiakai Zhanga5551c52023-06-09 17:44:50 +0100103$(boot_zip_metadata_txt):
104 rm -f $@
Prashant Dubey029a6152023-09-18 17:57:53 +0000105 echo "bootclasspath = $(bootclasspath_arg)" >> $@
106 echo "bootclasspath-locations = $(bootclasspath_locations_arg)" >> $@
Jiakai Zhanga5551c52023-06-09 17:44:50 +0100107 echo "boot-image = $(boot_image_arg)" >> $@
Jiakai Zhang53dd8952024-01-18 17:22:13 +0000108 echo "extra-args = `cat $(uffd_gc_flag_txt)`" >> $@
Jiakai Zhanga5551c52023-06-09 17:44:50 +0100109
110$(call dist-for-goals, droidcore, $(boot_zip_metadata_txt))
111
Calin Juravle6bfdcda2019-04-16 13:05:42 -0700112$(boot_zip): PRIVATE_BOOTCLASSPATH_JARS := $(bootclasspath_jars)
113$(boot_zip): PRIVATE_SYSTEM_SERVER_JARS := $(system_server_jars)
Jiakai Zhanga5551c52023-06-09 17:44:50 +0100114$(boot_zip): $(bootclasspath_jars) $(system_server_jars) $(SOONG_ZIP) $(MERGE_ZIPS) $(DEXPREOPT_IMAGE_ZIP_boot) $(DEXPREOPT_IMAGE_ZIP_art) $(DEXPREOPT_IMAGE_ZIP_mainline) $(boot_zip_metadata_txt)
Calin Juravle6bfdcda2019-04-16 13:05:42 -0700115 @echo "Create boot package: $@"
Calin Juravle8955a992018-05-10 11:33:27 -0700116 rm -f $@
Calin Juravle6bfdcda2019-04-16 13:05:42 -0700117 $(SOONG_ZIP) -o $@.tmp \
Colin Crossd8badf52019-02-20 12:39:57 -0800118 -C $(dir $(firstword $(PRIVATE_BOOTCLASSPATH_JARS)))/.. $(addprefix -f ,$(PRIVATE_BOOTCLASSPATH_JARS)) \
Jiakai Zhanga5551c52023-06-09 17:44:50 +0100119 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_SYSTEM_SERVER_JARS)) \
Jiakai Zhang34914f62023-06-12 11:18:12 +0100120 -j -f $(boot_zip_metadata_txt)
Jiakai Zhanga5551c52023-06-09 17:44:50 +0100121 $(MERGE_ZIPS) $@ $@.tmp $(DEXPREOPT_IMAGE_ZIP_boot) $(DEXPREOPT_IMAGE_ZIP_art) $(DEXPREOPT_IMAGE_ZIP_mainline)
Calin Juravle6bfdcda2019-04-16 13:05:42 -0700122 rm -f $@.tmp
Calin Juravle8955a992018-05-10 11:33:27 -0700123
Calin Juravle6bfdcda2019-04-16 13:05:42 -0700124$(call dist-for-goals, droidcore, $(boot_zip))
125
Pranav Gupta1da72192023-03-18 07:02:44 +0000126ifneq (,$(filter true,$(ART_MODULE_BUILD_FROM_SOURCE) $(MODULE_BUILD_FROM_SOURCE)))
Islam Elbannaab52f4b2022-11-04 15:51:07 +0000127# Build the system_server.zip which contains the Apex system server jars and standalone system server jars
128system_server_zip := $(PRODUCT_OUT)/system_server.zip
129apex_system_server_jars := \
130 $(foreach m,$(PRODUCT_APEX_SYSTEM_SERVER_JARS),\
131 $(PRODUCT_OUT)/apex/$(call word-colon,1,$(m))/javalib/$(call word-colon,2,$(m)).jar)
132
133apex_standalone_system_server_jars := \
134 $(foreach m,$(PRODUCT_APEX_STANDALONE_SYSTEM_SERVER_JARS),\
135 $(PRODUCT_OUT)/apex/$(call word-colon,1,$(m))/javalib/$(call word-colon,2,$(m)).jar)
136
137standalone_system_server_jars := \
138 $(foreach m,$(PRODUCT_STANDALONE_SYSTEM_SERVER_JARS),\
139 $(PRODUCT_OUT)/apex/$(call word-colon,1,$(m))/javalib/$(call word-colon,2,$(m)).jar)
140
141$(system_server_zip): PRIVATE_SYSTEM_SERVER_JARS := $(system_server_jars)
142$(system_server_zip): PRIVATE_APEX_SYSTEM_SERVER_JARS := $(apex_system_server_jars)
143$(system_server_zip): PRIVATE_APEX_STANDALONE_SYSTEM_SERVER_JARS := $(apex_standalone_system_server_jars)
144$(system_server_zip): PRIVATE_STANDALONE_SYSTEM_SERVER_JARS := $(standalone_system_server_jars)
145$(system_server_zip): $(system_server_jars) $(apex_system_server_jars) $(apex_standalone_system_server_jars) $(standalone_system_server_jars) $(SOONG_ZIP)
146 @echo "Create system server package: $@"
147 rm -f $@
148 $(SOONG_ZIP) -o $@ \
149 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_SYSTEM_SERVER_JARS)) \
150 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_APEX_SYSTEM_SERVER_JARS)) \
151 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_APEX_STANDALONE_SYSTEM_SERVER_JARS)) \
152 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_STANDALONE_SYSTEM_SERVER_JARS))
153
154$(call dist-for-goals, droidcore, $(system_server_zip))
155
Pranav Gupta1da72192023-03-18 07:02:44 +0000156endif #ART_MODULE_BUILD_FROM_SOURCE || MODULE_BUILD_FROM_SOURCE
Calin Juravlecdff6b12019-05-01 15:34:47 -0700157endif #PRODUCT_USES_DEFAULT_ART_CONFIG
Jiakai Zhang5b5ab172023-11-17 22:22:52 +0000158endif #WITH_DEXPREOPT_ART_BOOT_IMG_ONLY
Calin Juravle6bfdcda2019-04-16 13:05:42 -0700159endif #WITH_DEXPREOPT