blob: 4c51b10b67040ce75361727c4500fe59219f50c0 [file] [log] [blame]
Ying Wange7874c42010-09-17 16:36:06 -07001####################################
2# Dexpreopt on the boot jars
3#
4####################################
5
6# TODO: replace it with device's BOOTCLASSPATH
Wink Savillec16c9452012-06-30 16:13:26 -07007DEXPREOPT_BOOT_JARS := core:core-junit:bouncycastle:ext:framework:telephony-common:mms-common:android.policy:services:apache-xml
Ying Wange7874c42010-09-17 16:36:06 -07008DEXPREOPT_BOOT_JARS_MODULES := $(subst :, ,$(DEXPREOPT_BOOT_JARS))
9
10DEXPREOPT_BUILD_DIR := $(OUT_DIR)
11DEXPREOPT_PRODUCT_DIR := $(patsubst $(DEXPREOPT_BUILD_DIR)/%,%,$(PRODUCT_OUT))/dex_bootjars
12DEXPREOPT_BOOT_JAR_DIR := system/framework
13DEXPREOPT_DEXOPT := $(patsubst $(DEXPREOPT_BUILD_DIR)/%,%,$(DEXOPT))
14
15DEXPREOPT_BOOT_JAR_DIR_FULL_PATH := $(DEXPREOPT_BUILD_DIR)/$(DEXPREOPT_PRODUCT_DIR)/$(DEXPREOPT_BOOT_JAR_DIR)
16
17DEXPREOPT_BOOT_ODEXS := $(foreach b,$(DEXPREOPT_BOOT_JARS_MODULES),\
18 $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(b).odex)
19
Dan Bornsteinc8c09e22010-09-29 11:54:15 -070020# If the target is a uniprocessor, then explicitly tell the preoptimizer
21# that fact. (By default, it always optimizes for an SMP target.)
22ifeq ($(TARGET_CPU_SMP),true)
23DEXPREOPT_UNIPROCESSOR :=
24else
25DEXPREOPT_UNIPROCESSOR := --uniprocessor
26endif
27
Ying Wange7874c42010-09-17 16:36:06 -070028# $(1): the .jar or .apk to remove classes.dex
29define dexpreopt-remove-classes.dex
30$(hide) $(AAPT) remove $(1) classes.dex
31endef
32
33# $(1): the input .jar or .apk file
34# $(2): the output .odex file
35define dexpreopt-one-file
36$(hide) $(DEXPREOPT) --dexopt=$(DEXPREOPT_DEXOPT) --build-dir=$(DEXPREOPT_BUILD_DIR) \
37 --product-dir=$(DEXPREOPT_PRODUCT_DIR) --boot-dir=$(DEXPREOPT_BOOT_JAR_DIR) \
Dan Bornsteinc8c09e22010-09-29 11:54:15 -070038 --boot-jars=$(DEXPREOPT_BOOT_JARS) $(DEXPREOPT_UNIPROCESSOR) \
Ying Wange7874c42010-09-17 16:36:06 -070039 $(patsubst $(DEXPREOPT_BUILD_DIR)/%,%,$(1)) \
40 $(patsubst $(DEXPREOPT_BUILD_DIR)/%,%,$(2))
41endef
42
43# $(1): boot jar module name
44define _dexpreopt-boot-jar
45$(eval _dbj_jar := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(1).jar)
46$(eval _dbj_odex := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(1).odex)
47$(eval _dbj_jar_no_dex := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(1)_nodex.jar)
Ying Wanga83940f2010-09-24 18:09:04 -070048$(eval _dbj_src_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(1),,COMMON)/javalib.jar)
Ying Wange7874c42010-09-17 16:36:06 -070049$(eval $(_dbj_odex): PRIVATE_DBJ_JAR := $(_dbj_jar))
50$(_dbj_odex) : $(_dbj_src_jar) | $(ACP) $(DEXPREOPT) $(DEXOPT)
51 @echo "Dexpreopt Boot Jar: $$@"
52 $(hide) rm -f $$@
53 $(hide) mkdir -p $$(dir $$@)
Ying Wang84ed6fa2011-01-18 17:21:20 -080054 $(hide) $(ACP) -fp $$< $$(PRIVATE_DBJ_JAR)
Ying Wange7874c42010-09-17 16:36:06 -070055 $$(call dexpreopt-one-file,$$(PRIVATE_DBJ_JAR),$$@)
56
57$(_dbj_jar_no_dex) : $(_dbj_src_jar) | $(ACP) $(AAPT)
58 $$(call copy-file-to-target)
59 $$(call dexpreopt-remove-classes.dex,$$@)
60
61$(eval _dbj_jar :=)
62$(eval _dbj_odex :=)
Ying Wang84ed6fa2011-01-18 17:21:20 -080063$(eval _dbj_jar_no_dex :=)
Ying Wange7874c42010-09-17 16:36:06 -070064$(eval _dbj_src_jar :=)
65endef
66
67$(foreach b,$(DEXPREOPT_BOOT_JARS_MODULES),$(eval $(call _dexpreopt-boot-jar,$(b))))
68
69# $(1): the rest list of boot jars
70define _build-dexpreopt-boot-jar-dependency-pair
71$(if $(filter 1,$(words $(1)))$(filter 0,$(words $(1))),,\
72 $(eval _bdbjdp_target := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(word 2,$(1)).odex) \
73 $(eval _bdbjdp_dep := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(word 1,$(1)).odex) \
74 $(eval $(call add-dependency,$(_bdbjdp_target),$(_bdbjdp_dep))) \
75 $(eval $(call _build-dexpreopt-boot-jar-dependency-pair,$(wordlist 2,999,$(1)))))
76endef
77
78define _build-dexpreopt-boot-jar-dependency
79$(call _build-dexpreopt-boot-jar-dependency-pair,$(DEXPREOPT_BOOT_JARS_MODULES))
80endef
81
82$(eval $(call _build-dexpreopt-boot-jar-dependency))