pdk_config.mk revision 15cbe8e3d45d0a9688e92f8979eaaa71b07f6df4
1# This file defines the rule to fuse the platform.zip into the current PDK build.
2
3.PHONY: pdk fusion
4pdk fusion: $(DEFAULT_GOAL)
5
6# What to build:
7# pdk fusion if:
8# 1) PDK_FUSION_PLATFORM_ZIP is passed in from the environment
9# or
10# 2) the platform.zip exists in the default location
11# or
12# 3) fusion is a command line build goal,
13#    PDK_FUSION_PLATFORM_ZIP is needed anyway, then do we need the 'fusion' goal?
14# otherwise pdk only if:
15# 1) pdk is a command line build goal
16# or
17# 2) TARGET_BUILD_PDK is passed in from the environment
18
19# if PDK_FUSION_PLATFORM_ZIP is specified, do not override.
20ifndef PDK_FUSION_PLATFORM_ZIP
21_pdk_fusion_default_platform_zip = $(wildcard \
22vendor/pdk/$(TARGET_DEVICE)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform/platform.zip \
23vendor/pdk/$(TARGET_DEVICE)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform/platform.zip)
24ifneq (,$(_pdk_fusion_default_platform_zip))
25PDK_FUSION_PLATFORM_ZIP := $(word 1, $(_pdk_fusion_default_platform_zip))
26TARGET_BUILD_PDK := true
27$(info $(PDK_FUSION_PLATFORM_ZIP) found, do a PDK fusion build.)
28endif # _pdk_fusion_default_platform_zip
29endif # !PDK_FUSION_PLATFORM_ZIP
30
31ifneq (,$(filter pdk fusion, $(MAKECMDGOALS)))
32TARGET_BUILD_PDK := true
33ifneq (,$(filter fusion, $(MAKECMDGOALS)))
34ifndef PDK_FUSION_PLATFORM_ZIP
35  $(error Specify PDK_FUSION_PLATFORM_ZIP to do a PDK fusion.)
36endif
37endif  # fusion
38endif  # pdk or fusion
39
40ifneq (,$(filter platform-java, $(MAKECMDGOALS))$(PDK_FUSION_PLATFORM_ZIP))
41# additional items to add to platform.zip for platform-java build
42# For these dirs, add classes.jar and javalib.jar from the dir to platform.zip
43# all paths under out dir
44PDK_PLATFORM_JAVA_ZIP_JAVA_LIB_DIR := \
45	target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates \
46	target/common/obj/JAVA_LIBRARIES/core_intermediates \
47	target/common/obj/JAVA_LIBRARIES/core-junit_intermediates \
48	target/common/obj/JAVA_LIBRARIES/ext_intermediates \
49	target/common/obj/JAVA_LIBRARIES/framework_intermediates \
50	target/common/obj/JAVA_LIBRARIES/framework2_intermediates \
51	target/common/obj/JAVA_LIBRARIES/android.test.runner_intermediates \
52	target/common/obj/JAVA_LIBRARIES/telephony-common_intermediates \
53	target/common/obj/JAVA_LIBRARIES/voip-common_intermediates \
54	target/common/obj/JAVA_LIBRARIES/mms-common_intermediates
55# not java libraries
56PDK_PLATFORM_JAVA_ZIP_CONTENTS := \
57	target/common/obj/APPS/framework-res_intermediates/package-export.apk \
58	target/common/obj/APPS/framework-res_intermediates/src/R.stamp
59PDK_PLATFORM_JAVA_ZIP_CONTENTS += $(foreach lib_dir,$(PDK_PLATFORM_JAVA_ZIP_JAVA_LIB_DIR),\
60    $(lib_dir)/classes.jar $(lib_dir)/javalib.jar)
61endif # platform-java or FUSION build
62
63# check and override java support level
64ifneq ($(TARGET_BUILD_PDK)$(PDK_FUSION_PLATFORM_ZIP),)
65ifneq ($(wildcard external/proguard),)
66TARGET_BUILD_JAVA_SUPPORT_LEVEL := sdk
67else # no proguard
68TARGET_BUILD_JAVA_SUPPORT_LEVEL :=
69endif
70# platform supprot is set after checking platform.zip
71endif # PDK
72
73ifdef PDK_FUSION_PLATFORM_ZIP
74TARGET_BUILD_PDK := true
75ifeq (,$(wildcard $(PDK_FUSION_PLATFORM_ZIP)))
76  $(error Cannot find file $(PDK_FUSION_PLATFORM_ZIP).)
77endif
78
79_pdk_fusion_intermediates := $(call intermediates-dir-for, PACKAGING, pdk_fusion)
80_pdk_fusion_stamp := $(_pdk_fusion_intermediates)/pdk_fusion.stamp
81
82_pdk_fusion_file_list := $(shell unzip -Z -1 $(PDK_FUSION_PLATFORM_ZIP) \
83    '*[^/]' -x 'target/common/*' 2>/dev/null)
84_pdk_fusion_java_file_list := \
85	$(shell unzip -Z -1 $(PDK_FUSION_PLATFORM_ZIP) 'target/common/*' 2>/dev/null)
86_pdk_fusion_files := $(addprefix $(_pdk_fusion_intermediates)/,\
87    $(_pdk_fusion_file_list) $(_pdk_fusion_java_file_list))
88
89ifneq ($(_pdk_fusion_java_file_list),)
90# This represents whether java build can use platform API or not
91# This should not be used in Android.mk
92TARGET_BUILD_PDK_JAVA_PLATFORM := true
93ifneq ($(TARGET_BUILD_JAVA_SUPPORT_LEVEL),)
94TARGET_BUILD_JAVA_SUPPORT_LEVEL := platform
95endif
96endif
97
98$(_pdk_fusion_stamp) : $(PDK_FUSION_PLATFORM_ZIP)
99	@echo "Unzip $(dir $@) <- $<"
100	$(hide) rm -rf $(dir $@) && mkdir -p $(dir $@)
101	$(hide) unzip -qo $< -d $(dir $@)
102	$(call split-long-arguments,-touch,$(_pdk_fusion_files))
103	$(hide) touch $@
104
105
106$(_pdk_fusion_files) : $(_pdk_fusion_stamp)
107
108
109# Implicit pattern rules to copy the fusion files to the system image directory.
110# Note that if there is already explicit rule in the build system to generate a file,
111# the pattern rule will be just ignored by make.
112# That's desired by us: we want only absent files from the platform zip package.
113# Copy with the last-modified time preserved, never follow symbolic links.
114$(PRODUCT_OUT)/% : $(_pdk_fusion_intermediates)/% $(_pdk_fusion_stamp)
115	@mkdir -p $(dir $@)
116	$(hide) rm -rf $@
117	$(hide) cp -fpPR $< $@
118
119ifeq (true,$(TARGET_BUILD_PDK_JAVA_PLATFORM))
120
121define JAVA_dependency_template
122$(OUT_DIR)/$(strip $(1)): $(_pdk_fusion_intermediates)/$(strip $(1)) $(OUT_DIR)/$(strip $(2)) \
123  $(_pdk_fusion_stamp)
124	@mkdir -p $$(dir $$@)
125	$(hide) cp -fpPR $$< $$@
126endef
127
128# needs explicit dependency as package-export.apk is not explicitly pulled
129$(eval $(call JAVA_dependency_template,\
130target/common/obj/APPS/framework-res_intermediates/src/R.stamp,\
131target/common/obj/APPS/framework-res_intermediates/package-export.apk))
132
133# javalib.jar should pull classes.jar as classes.jar is not explicitly pulled.
134$(foreach lib_dir,$(PDK_PLATFORM_JAVA_ZIP_JAVA_LIB_DIR),\
135$(eval $(call JAVA_dependency_template,$(lib_dir)/javalib.jar,\
136$(lib_dir)/classes.jar)))
137
138# implicit rules for all others
139$(TARGET_COMMON_OUT_ROOT)/% : $(_pdk_fusion_intermediates)/target/common/% $(_pdk_fusion_stamp)
140	@mkdir -p $(dir $@)
141	$(hide) cp -fpPR $< $@
142endif
143
144ALL_PDK_FUSION_FILES := $(addprefix $(PRODUCT_OUT)/, $(_pdk_fusion_file_list))
145
146endif # PDK_FUSION_PLATFORM_ZIP
147
148ifeq ($(TARGET_BUILD_PDK),true)
149$(info PDK TARGET_BUILD_JAVA_SUPPORT_LEVEL $(TARGET_BUILD_JAVA_SUPPORT_LEVEL))
150ifeq ($(TARGET_BUILD_PDK_JAVA_PLATFORM),)
151
152# SDK used for Java build under PDK
153PDK_BUILD_SDK_VERSION := $(lastword $(TARGET_AVAILABLE_SDK_VERSIONS))
154$(info PDK Build uses SDK $(PDK_BUILD_SDK_VERSION))
155
156else # PDK_JAVA
157
158$(info PDK Build uses the current platform API)
159
160endif # PDK_JAVA
161
162endif # BUILD_PDK
163
164ifneq (,$(filter platform platform-java, $(MAKECMDGOALS))$(filter true,$(TARGET_BUILD_PDK)))
165# files under $(PRODUCT_OUT)/symbols to help debugging.
166# Source not included to PDK due to dependency issue, so provide symbols instead.
167PDK_SYMBOL_FILES_LIST := \
168	system/bin/app_process
169
170ifdef PDK_FUSION_PLATFORM_ZIP
171# symbols should be explicitly pulled for fusion build
172$(foreach f,$(PDK_SYMBOL_FILES_LIST),\
173  $(eval $(call add-dependency,$(PRODUCT_OUT)/$(f),$(PRODUCT_OUT)/symbols/$(f))))
174endif # PLATFORM_ZIP
175endif # platform.zip build or PDK
176