pdk_config.mk revision 1e961acf0c203b62c535d509f7f41813e8b21a5a
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# Most PDK project paths should be using vendor/pdk/TARGET_DEVICE
22# but some legacy ones (e.g. mini_armv7a_neon generic PDK) were setup
23# with vendor/pdk/TARGET_PRODUCT.
24_pdk_fusion_default_platform_zip = $(wildcard \
25vendor/pdk/$(TARGET_DEVICE)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform/platform.zip \
26vendor/pdk/$(TARGET_DEVICE)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform/platform.zip \
27vendor/pdk/$(TARGET_PRODUCT)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform/platform.zip \
28vendor/pdk/$(TARGET_PRODUCT)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform/platform.zip)
29ifneq (,$(_pdk_fusion_default_platform_zip))
30PDK_FUSION_PLATFORM_ZIP := $(word 1, $(_pdk_fusion_default_platform_zip))
31TARGET_BUILD_PDK := true
32$(info $(PDK_FUSION_PLATFORM_ZIP) found, do a PDK fusion build.)
33endif # _pdk_fusion_default_platform_zip
34endif # !PDK_FUSION_PLATFORM_ZIP
35
36ifneq (,$(filter pdk fusion, $(MAKECMDGOALS)))
37TARGET_BUILD_PDK := true
38ifneq (,$(filter fusion, $(MAKECMDGOALS)))
39ifndef PDK_FUSION_PLATFORM_ZIP
40  $(error Specify PDK_FUSION_PLATFORM_ZIP to do a PDK fusion.)
41endif
42endif  # fusion
43endif  # pdk or fusion
44
45PDK_PLATFORM_JAVA_ZIP_JAVA_TARGET_LIB_DIR :=
46PDK_PLATFORM_JAVA_ZIP_JAVA_HOST_LIB_DIR := \
47	host/common/obj/JAVA_LIBRARIES/bouncycastle-host_intermediates
48PDK_PLATFORM_JAVA_ZIP_CONTENTS :=
49
50ifneq (,$(filter platform-java, $(MAKECMDGOALS))$(PDK_FUSION_PLATFORM_ZIP))
51# additional items to add to platform.zip for platform-java build
52# For these dirs, add classes.jar and javalib.jar from the dir to platform.zip
53# all paths under out dir
54PDK_PLATFORM_JAVA_ZIP_JAVA_TARGET_LIB_DIR += \
55	target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates \
56	target/common/obj/JAVA_LIBRARIES/core-libart_intermediates \
57	target/common/obj/JAVA_LIBRARIES/core-junit_intermediates \
58	target/common/obj/JAVA_LIBRARIES/ext_intermediates \
59	target/common/obj/JAVA_LIBRARIES/framework_intermediates \
60	target/common/obj/JAVA_LIBRARIES/framework2_intermediates \
61	target/common/obj/JAVA_LIBRARIES/android.test.runner_intermediates \
62	target/common/obj/JAVA_LIBRARIES/telephony-common_intermediates \
63	target/common/obj/JAVA_LIBRARIES/voip-common_intermediates \
64	target/common/obj/JAVA_LIBRARIES/ims-common_intermediates \
65	target/common/obj/JAVA_LIBRARIES/mms-common_intermediates \
66	target/common/obj/JAVA_LIBRARIES/android-ex-camera2_intermediates \
67	target/common/obj/JAVA_LIBRARIES/android-common_intermediates \
68
69# not java libraries
70PDK_PLATFORM_JAVA_ZIP_CONTENTS += \
71	target/common/obj/APPS/framework-res_intermediates/package-export.apk \
72	target/common/obj/APPS/framework-res_intermediates/src/R.stamp
73endif # platform-java or FUSION build
74
75PDK_PLATFORM_JAVA_ZIP_JAVA_LIB_DIR := \
76	$(PDK_PLATFORM_JAVA_ZIP_JAVA_TARGET_LIB_DIR) \
77	$(PDK_PLATFORM_JAVA_ZIP_JAVA_HOST_LIB_DIR)
78
79PDK_PLATFORM_JAVA_ZIP_CONTENTS += $(foreach lib_dir,$(PDK_PLATFORM_JAVA_ZIP_JAVA_LIB_DIR),\
80    $(lib_dir)/classes.jar $(lib_dir)/javalib.jar)
81
82# check and override java support level
83ifneq ($(TARGET_BUILD_PDK)$(PDK_FUSION_PLATFORM_ZIP),)
84ifneq ($(wildcard external/proguard),)
85TARGET_BUILD_JAVA_SUPPORT_LEVEL := sdk
86else # no proguard
87TARGET_BUILD_JAVA_SUPPORT_LEVEL :=
88endif
89# platform supprot is set after checking platform.zip
90endif # PDK
91
92ifdef PDK_FUSION_PLATFORM_ZIP
93TARGET_BUILD_PDK := true
94ifeq (,$(wildcard $(PDK_FUSION_PLATFORM_ZIP)))
95  $(error Cannot find file $(PDK_FUSION_PLATFORM_ZIP).)
96endif
97
98_pdk_fusion_intermediates := $(call intermediates-dir-for, PACKAGING, pdk_fusion)
99_pdk_fusion_stamp := $(_pdk_fusion_intermediates)/pdk_fusion.stamp
100
101_pdk_fusion_file_list := $(shell unzip -Z -1 $(PDK_FUSION_PLATFORM_ZIP) \
102    '*[^/]' -x 'target/common/*' 2>/dev/null)
103_pdk_fusion_java_file_list := \
104	$(shell unzip -Z -1 $(PDK_FUSION_PLATFORM_ZIP) 'target/common/*' 2>/dev/null)
105_pdk_fusion_files := $(addprefix $(_pdk_fusion_intermediates)/,\
106    $(_pdk_fusion_file_list) $(_pdk_fusion_java_file_list))
107
108ifneq ($(_pdk_fusion_java_file_list),)
109# This represents whether java build can use platform API or not
110# This should not be used in Android.mk
111TARGET_BUILD_PDK_JAVA_PLATFORM := true
112ifneq ($(TARGET_BUILD_JAVA_SUPPORT_LEVEL),)
113TARGET_BUILD_JAVA_SUPPORT_LEVEL := platform
114endif
115endif
116
117$(_pdk_fusion_stamp) : $(PDK_FUSION_PLATFORM_ZIP)
118	@echo "Unzip $(dir $@) <- $<"
119	$(hide) rm -rf $(dir $@) && mkdir -p $(dir $@)
120	$(hide) unzip -qo $< -d $(dir $@)
121	$(call split-long-arguments,-touch,$(_pdk_fusion_files))
122	$(hide) touch $@
123
124
125$(_pdk_fusion_files) : $(_pdk_fusion_stamp)
126
127
128# Implicit pattern rules to copy the fusion files to the system image directory.
129# Note that if there is already explicit rule in the build system to generate a file,
130# the pattern rule will be just ignored by make.
131# That's desired by us: we want only absent files from the platform zip package.
132# Copy with the last-modified time preserved, never follow symbolic links.
133$(PRODUCT_OUT)/% : $(_pdk_fusion_intermediates)/% $(_pdk_fusion_stamp)
134	@mkdir -p $(dir $@)
135	$(hide) rm -rf $@
136	$(hide) cp -fpPR $< $@
137
138# implicit rules for host java files
139$(HOST_COMMON_OUT_ROOT)/% : $(_pdk_fusion_intermediates)/host/common/% $(_pdk_fusion_stamp)
140	@mkdir -p $(dir $@)
141	$(hide) cp -fpPR $< $@
142
143ifeq (true,$(TARGET_BUILD_PDK_JAVA_PLATFORM))
144
145PDK_FUSION_OUT_DIR := $(OUT_DIR)
146ifeq (debug,$(TARGET_BUILD_TYPE))
147PDK_FUSION_OUT_DIR := $(DEBUG_OUT_DIR)
148endif
149
150define JAVA_dependency_template
151$(PDK_FUSION_OUT_DIR)/$(strip $(1)): $(_pdk_fusion_intermediates)/$(strip $(1)) \
152  $(PDK_FUSION_OUT_DIR)/$(strip $(2)) $(_pdk_fusion_stamp)
153	@mkdir -p $$(dir $$@)
154	$(hide) cp -fpPR $$< $$@
155endef
156
157# needs explicit dependency as package-export.apk is not explicitly pulled
158$(eval $(call JAVA_dependency_template,\
159target/common/obj/APPS/framework-res_intermediates/src/R.stamp,\
160target/common/obj/APPS/framework-res_intermediates/package-export.apk))
161
162# javalib.jar should pull classes.jar as classes.jar is not explicitly pulled.
163$(foreach lib_dir,$(PDK_PLATFORM_JAVA_ZIP_JAVA_TARGET_LIB_DIR),\
164$(eval $(call JAVA_dependency_template,$(lib_dir)/javalib.jar,\
165$(lib_dir)/classes.jar)))
166
167# implicit rules for all other target files
168$(TARGET_COMMON_OUT_ROOT)/% : $(_pdk_fusion_intermediates)/target/common/% $(_pdk_fusion_stamp)
169	@mkdir -p $(dir $@)
170	$(hide) cp -fpPR $< $@
171endif
172
173ALL_PDK_FUSION_FILES := $(addprefix $(PRODUCT_OUT)/, $(_pdk_fusion_file_list))
174
175endif # PDK_FUSION_PLATFORM_ZIP
176
177ifeq ($(TARGET_BUILD_PDK),true)
178$(info PDK TARGET_BUILD_JAVA_SUPPORT_LEVEL $(TARGET_BUILD_JAVA_SUPPORT_LEVEL))
179ifeq ($(TARGET_BUILD_PDK_JAVA_PLATFORM),)
180
181# SDK used for Java build under PDK
182PDK_BUILD_SDK_VERSION := $(lastword $(TARGET_AVAILABLE_SDK_VERSIONS))
183$(info PDK Build uses SDK $(PDK_BUILD_SDK_VERSION))
184
185else # PDK_JAVA
186
187$(info PDK Build uses the current platform API)
188
189endif # PDK_JAVA
190
191endif # BUILD_PDK
192
193ifneq (,$(filter platform platform-java, $(MAKECMDGOALS))$(filter true,$(TARGET_BUILD_PDK)))
194# files under $(PRODUCT_OUT)/symbols to help debugging.
195# Source not included to PDK due to dependency issue, so provide symbols instead.
196
197# We may not be building all of them.
198# The platform.zip just silently ignores the nonexistent ones.
199PDK_SYMBOL_FILES_LIST := \
200    system/bin/app_process32 \
201    system/bin/app_process64
202
203ifdef PDK_FUSION_PLATFORM_ZIP
204# symbols should be explicitly pulled for fusion build
205$(foreach f,$(filter $(PDK_SYMBOL_FILES_LIST), $(_pdk_fusion_file_list)),\
206  $(eval $(call add-dependency,$(PRODUCT_OUT)/$(f),$(PRODUCT_OUT)/symbols/$(f))))
207endif # PLATFORM_ZIP
208endif # platform.zip build or PDK
209