blob: d7a00d09871868ebc81c2303b082c75f0c668a6e [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).
60ifeq ($(WITH_DEXPREOPT), true)
Calin Juravlecdff6b12019-05-01 15:34:47 -070061ifeq ($(PRODUCT_USES_DEFAULT_ART_CONFIG), true)
Calin Juravle6bfdcda2019-04-16 13:05:42 -070062
63boot_zip := $(PRODUCT_OUT)/boot.zip
Colin Crossd8badf52019-02-20 12:39:57 -080064bootclasspath_jars := $(DEXPREOPT_BOOTCLASSPATH_DEX_FILES)
Islam Elbannaab52f4b2022-11-04 15:51:07 +000065
66# TODO remove system_server_jars usages from boot.zip and depend directly on system_server.zip file.
satayev35a7a432021-05-04 16:14:02 +010067system_server_jars := \
68 $(foreach m,$(PRODUCT_SYSTEM_SERVER_JARS),\
69 $(PRODUCT_OUT)/system/framework/$(call word-colon,2,$(m)).jar)
Calin Juravle8955a992018-05-10 11:33:27 -070070
Calin Juravle6bfdcda2019-04-16 13:05:42 -070071$(boot_zip): PRIVATE_BOOTCLASSPATH_JARS := $(bootclasspath_jars)
72$(boot_zip): PRIVATE_SYSTEM_SERVER_JARS := $(system_server_jars)
Calin Juravleabdea212019-12-04 16:50:17 -080073$(boot_zip): $(bootclasspath_jars) $(system_server_jars) $(SOONG_ZIP) $(MERGE_ZIPS) $(DEXPREOPT_IMAGE_ZIP_boot) $(DEXPREOPT_IMAGE_ZIP_art)
Calin Juravle6bfdcda2019-04-16 13:05:42 -070074 @echo "Create boot package: $@"
Calin Juravle8955a992018-05-10 11:33:27 -070075 rm -f $@
Calin Juravle6bfdcda2019-04-16 13:05:42 -070076 $(SOONG_ZIP) -o $@.tmp \
Colin Crossd8badf52019-02-20 12:39:57 -080077 -C $(dir $(firstword $(PRIVATE_BOOTCLASSPATH_JARS)))/.. $(addprefix -f ,$(PRIVATE_BOOTCLASSPATH_JARS)) \
78 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_SYSTEM_SERVER_JARS))
Calin Juravleabdea212019-12-04 16:50:17 -080079 $(MERGE_ZIPS) $@ $@.tmp $(DEXPREOPT_IMAGE_ZIP_boot) $(DEXPREOPT_IMAGE_ZIP_art)
Calin Juravle6bfdcda2019-04-16 13:05:42 -070080 rm -f $@.tmp
Calin Juravle8955a992018-05-10 11:33:27 -070081
Calin Juravle6bfdcda2019-04-16 13:05:42 -070082$(call dist-for-goals, droidcore, $(boot_zip))
83
Islam Elbannaab52f4b2022-11-04 15:51:07 +000084# Build the system_server.zip which contains the Apex system server jars and standalone system server jars
85system_server_zip := $(PRODUCT_OUT)/system_server.zip
86apex_system_server_jars := \
87 $(foreach m,$(PRODUCT_APEX_SYSTEM_SERVER_JARS),\
88 $(PRODUCT_OUT)/apex/$(call word-colon,1,$(m))/javalib/$(call word-colon,2,$(m)).jar)
89
90apex_standalone_system_server_jars := \
91 $(foreach m,$(PRODUCT_APEX_STANDALONE_SYSTEM_SERVER_JARS),\
92 $(PRODUCT_OUT)/apex/$(call word-colon,1,$(m))/javalib/$(call word-colon,2,$(m)).jar)
93
94standalone_system_server_jars := \
95 $(foreach m,$(PRODUCT_STANDALONE_SYSTEM_SERVER_JARS),\
96 $(PRODUCT_OUT)/apex/$(call word-colon,1,$(m))/javalib/$(call word-colon,2,$(m)).jar)
97
98$(system_server_zip): PRIVATE_SYSTEM_SERVER_JARS := $(system_server_jars)
99$(system_server_zip): PRIVATE_APEX_SYSTEM_SERVER_JARS := $(apex_system_server_jars)
100$(system_server_zip): PRIVATE_APEX_STANDALONE_SYSTEM_SERVER_JARS := $(apex_standalone_system_server_jars)
101$(system_server_zip): PRIVATE_STANDALONE_SYSTEM_SERVER_JARS := $(standalone_system_server_jars)
102$(system_server_zip): $(system_server_jars) $(apex_system_server_jars) $(apex_standalone_system_server_jars) $(standalone_system_server_jars) $(SOONG_ZIP)
103 @echo "Create system server package: $@"
104 rm -f $@
105 $(SOONG_ZIP) -o $@ \
106 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_SYSTEM_SERVER_JARS)) \
107 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_APEX_SYSTEM_SERVER_JARS)) \
108 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_APEX_STANDALONE_SYSTEM_SERVER_JARS)) \
109 -C $(PRODUCT_OUT) $(addprefix -f ,$(PRIVATE_STANDALONE_SYSTEM_SERVER_JARS))
110
111$(call dist-for-goals, droidcore, $(system_server_zip))
112
Calin Juravlecdff6b12019-05-01 15:34:47 -0700113endif #PRODUCT_USES_DEFAULT_ART_CONFIG
Calin Juravle6bfdcda2019-04-16 13:05:42 -0700114endif #WITH_DEXPREOPT