prebuilt_internal.mk revision bfb52a2ec199a75e1a0e4e92148af0a6323c9f46
1###########################################################
2## Standard rules for copying files that are prebuilt
3##
4## Additional inputs from base_rules.make:
5## None.
6##
7###########################################################
8
9ifneq ($(LOCAL_PREBUILT_LIBS),)
10$(error dont use LOCAL_PREBUILT_LIBS anymore LOCAL_PATH=$(LOCAL_PATH))
11endif
12ifneq ($(LOCAL_PREBUILT_EXECUTABLES),)
13$(error dont use LOCAL_PREBUILT_EXECUTABLES anymore LOCAL_PATH=$(LOCAL_PATH))
14endif
15ifneq ($(LOCAL_PREBUILT_JAVA_LIBRARIES),)
16$(error dont use LOCAL_PREBUILT_JAVA_LIBRARIES anymore LOCAL_PATH=$(LOCAL_PATH))
17endif
18
19# Not much sense to check build prebuilts
20LOCAL_DONT_CHECK_MODULE := true
21
22my_32_64_bit_suffix := $(if $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)IS_64_BIT),64,32)
23
24ifdef LOCAL_PREBUILT_MODULE_FILE
25  my_prebuilt_src_file := $(LOCAL_PREBUILT_MODULE_FILE)
26else
27  ifdef LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
28    my_prebuilt_src_file := $(LOCAL_PATH)/$(LOCAL_SRC_FILES_$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
29  else
30    ifdef LOCAL_SRC_FILES_$(my_32_64_bit_suffix)
31      my_prebuilt_src_file := $(LOCAL_PATH)/$(LOCAL_SRC_FILES_$(my_32_64_bit_suffix))
32    else
33      my_prebuilt_src_file := $(LOCAL_PATH)/$(LOCAL_SRC_FILES)
34    endif
35  endif
36endif
37
38ifeq (SHARED_LIBRARIES,$(LOCAL_MODULE_CLASS))
39  # Put the built targets of all shared libraries in a common directory
40  # to simplify the link line.
41  OVERRIDE_BUILT_MODULE_PATH := $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)
42  ifeq ($(LOCAL_IS_HOST_MODULE)$(LOCAL_STRIP_MODULE),)
43    # Strip but not try to add debuglink
44    LOCAL_STRIP_MODULE := no_debuglink
45  endif
46endif
47
48ifneq ($(filter STATIC_LIBRARIES SHARED_LIBRARIES,$(LOCAL_MODULE_CLASS)),)
49  prebuilt_module_is_a_library := true
50else
51  prebuilt_module_is_a_library :=
52endif
53
54# Don't install static libraries by default.
55ifndef LOCAL_UNINSTALLABLE_MODULE
56ifeq (STATIC_LIBRARIES,$(LOCAL_MODULE_CLASS))
57  LOCAL_UNINSTALLABLE_MODULE := true
58endif
59endif
60
61ifeq ($(LOCAL_MODULE_CLASS),APPS)
62LOCAL_BUILT_MODULE_STEM := package.apk
63LOCAL_INSTALLED_MODULE_STEM := $(LOCAL_MODULE).apk
64endif
65
66ifneq ($(filter true no_debuglink,$(LOCAL_STRIP_MODULE)),)
67  ifdef LOCAL_IS_HOST_MODULE
68    $(error Cannot strip host module LOCAL_PATH=$(LOCAL_PATH))
69  endif
70  ifeq ($(filter SHARED_LIBRARIES EXECUTABLES,$(LOCAL_MODULE_CLASS)),)
71    $(error Can strip only shared libraries or executables LOCAL_PATH=$(LOCAL_PATH))
72  endif
73  ifneq ($(LOCAL_PREBUILT_STRIP_COMMENTS),)
74    $(error Cannot strip scripts LOCAL_PATH=$(LOCAL_PATH))
75  endif
76  include $(BUILD_SYSTEM)/dynamic_binary.mk
77  built_module := $(linked_module)
78
79else  # LOCAL_STRIP_MODULE not true
80  include $(BUILD_SYSTEM)/base_rules.mk
81  built_module := $(LOCAL_BUILT_MODULE)
82
83ifdef prebuilt_module_is_a_library
84export_includes := $(intermediates)/export_includes
85$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
86$(export_includes) : $(LOCAL_MODULE_MAKEFILE)
87	@echo Export includes file: $< -- $@
88	$(hide) mkdir -p $(dir $@) && rm -f $@
89ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
90	$(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
91	        echo "-I $$d" >> $@; \
92	        done
93else
94	$(hide) touch $@
95endif
96
97$(LOCAL_BUILT_MODULE) : | $(intermediates)/export_includes
98endif  # prebuilt_module_is_a_library
99
100# The real dependency will be added after all Android.mks are loaded and the install paths
101# of the shared libraries are determined.
102ifdef LOCAL_INSTALLED_MODULE
103ifdef LOCAL_SHARED_LIBRARIES
104$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
105  $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(LOCAL_SHARED_LIBRARIES))
106
107# We also need the LOCAL_BUILT_MODULE dependency,
108# since we use -rpath-link which points to the built module's path.
109built_shared_libraries := \
110    $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
111    $(addsuffix $($(my_prefix)SHLIB_SUFFIX), \
112        $(LOCAL_SHARED_LIBRARIES)))
113$(LOCAL_BUILT_MODULE) : $(built_shared_libraries)
114endif
115endif
116
117# We need to enclose the above export_includes and built_shared_libraries in
118# "LOCAL_STRIP_MODULE not true" because otherwise the rules are defined in dynamic_binary.mk.
119endif  # LOCAL_STRIP_MODULE not true
120
121ifeq ($(LOCAL_MODULE_CLASS),APPS)
122PACKAGES.$(LOCAL_MODULE).OVERRIDES := $(strip $(LOCAL_OVERRIDES_PACKAGES))
123
124rs_compatibility_jni_libs :=
125include $(BUILD_SYSTEM)/install_jni_libs.mk
126
127ifeq ($(LOCAL_CERTIFICATE),EXTERNAL)
128  # The magic string "EXTERNAL" means this package will be signed with
129  # the default dev key throughout the build process, but we expect
130  # the final package to be signed with a different key.
131  #
132  # This can be used for packages where we don't have access to the
133  # keys, but want the package to be predexopt'ed.
134  LOCAL_CERTIFICATE := $(DEFAULT_SYSTEM_DEV_CERTIFICATE)
135  PACKAGES.$(LOCAL_MODULE).EXTERNAL_KEY := 1
136
137  $(built_module) : PRIVATE_PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
138  $(built_module) : PRIVATE_CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
139endif
140ifeq ($(LOCAL_CERTIFICATE),)
141  # It is now a build error to add a prebuilt .apk without
142  # specifying a key for it.
143  $(error No LOCAL_CERTIFICATE specified for prebuilt "$(my_prebuilt_src_file)")
144else ifeq ($(LOCAL_CERTIFICATE),PRESIGNED)
145  # The magic string "PRESIGNED" means this package is already checked
146  # signed with its release key.
147  #
148  # By setting .CERTIFICATE but not .PRIVATE_KEY, this package will be
149  # mentioned in apkcerts.txt (with certificate set to "PRESIGNED")
150  # but the dexpreopt process will not try to re-sign the app.
151  PACKAGES.$(LOCAL_MODULE).CERTIFICATE := PRESIGNED
152  PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
153else
154  # If this is not an absolute certificate, assign it to a generic one.
155  ifeq ($(dir $(strip $(LOCAL_CERTIFICATE))),./)
156      LOCAL_CERTIFICATE := $(dir $(DEFAULT_SYSTEM_DEV_CERTIFICATE))$(LOCAL_CERTIFICATE)
157  endif
158
159  PACKAGES.$(LOCAL_MODULE).PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
160  PACKAGES.$(LOCAL_MODULE).CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
161  PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
162
163  $(built_module) : PRIVATE_PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
164  $(built_module) : PRIVATE_CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
165endif
166
167# Disable dex-preopt of prebuilts to save space
168LOCAL_DEX_PREOPT := false
169
170#######################################
171# defines built_odex along with rule to install odex
172include $(BUILD_SYSTEM)/dex_preopt_odex_install.mk
173#######################################
174# Sign and align non-presigned .apks.
175$(built_module) : $(my_prebuilt_src_file) | $(ACP) $(ZIPALIGN) $(SIGNAPK_JAR)
176	$(transform-prebuilt-to-target)
177ifdef extracted_jni_libs
178	$(hide) zip -d $@ 'lib/*.so'  # strip embedded JNI libraries.
179endif
180ifneq ($(LOCAL_CERTIFICATE),PRESIGNED)
181	$(sign-package)
182endif
183ifdef LOCAL_DEX_PREOPT
184ifneq (nostripping,$(LOCAL_DEX_PREOPT))
185	$(call dexpreopt-remove-classes.dex,$@)
186endif
187endif
188	$(align-package)
189
190###############################
191## Rule to build the odex file
192ifdef LOCAL_DEX_PREOPT
193$(built_odex) : $(my_prebuilt_src_file)
194	$(call dexpreopt-one-file,$<,$@)
195endif
196
197###############################
198## Install split apks.
199ifdef LOCAL_PACKAGE_SPLITS
200# LOCAL_PACKAGE_SPLITS is a list of apks to be installed.
201built_apk_splits := $(addprefix $(built_module_path)/,$(notdir $(LOCAL_PACKAGE_SPLITS)))
202installed_apk_splits := $(addprefix $(my_module_path)/,$(notdir $(LOCAL_PACKAGE_SPLITS)))
203
204# Rules to sign and zipalign the split apks.
205my_src_dir := $(sort $(dir $(LOCAL_PACKAGE_SPLITS)))
206ifneq (1,$(words $(my_src_dir)))
207$(error You must put all the split source apks in the same folder: $(LOCAL_PACKAGE_SPLITS))
208endif
209my_src_dir := $(LOCAL_PATH)/$(my_src_dir)
210
211$(built_apk_splits) : PRIVATE_PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
212$(built_apk_splits) : PRIVATE_CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
213$(built_apk_splits) : $(built_module_path)/%.apk : $(my_src_dir)/%.apk | $(ACP)
214	$(copy-file-to-new-target)
215	$(sign-package)
216	$(align-package)
217
218# Rules to install the split apks.
219$(installed_apk_splits) : $(my_module_path)/%.apk : $(built_module_path)/%.apk | $(ACP)
220	@echo "Install: $@"
221	$(copy-file-to-new-target)
222
223# Register the additional built and installed files.
224ALL_MODULES.$(my_register_name).INSTALLED += $(installed_apk_splits)
225ALL_MODULES.$(my_register_name).BUILT_INSTALLED += \
226  $(foreach s,$(LOCAL_PACKAGE_SPLITS),$(built_module_path)/$(notdir $(s)):$(my_module_path)/$(notdir $(s)))
227
228# Make sure to install the splits when you run "make <module_name>".
229$(my_register_name): $(installed_apk_splits)
230
231endif # LOCAL_PACKAGE_SPLITS
232
233else # LOCAL_MODULE_CLASS != APPS
234ifneq ($(LOCAL_PREBUILT_STRIP_COMMENTS),)
235$(built_module) : $(my_prebuilt_src_file)
236	$(transform-prebuilt-to-target-strip-comments)
237else
238$(built_module) : $(my_prebuilt_src_file) | $(ACP)
239	$(transform-prebuilt-to-target)
240ifneq ($(prebuilt_module_is_a_library),)
241  ifneq ($(LOCAL_IS_HOST_MODULE),)
242	$(transform-host-ranlib-copy-hack)
243  else
244	$(transform-ranlib-copy-hack)
245  endif
246endif
247endif
248endif # LOCAL_MODULE_CLASS != APPS
249
250ifeq ($(LOCAL_IS_HOST_MODULE)$(LOCAL_MODULE_CLASS),JAVA_LIBRARIES)
251# for target java libraries, the LOCAL_BUILT_MODULE is in a product-specific dir,
252# while the deps should be in the common dir, so we make a copy in the common dir.
253# For nonstatic library, $(common_javalib_jar) is the dependency file,
254# while $(common_classes_jar) is used to link.
255common_classes_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(LOCAL_MODULE),,COMMON)/classes.jar
256common_javalib_jar := $(dir $(common_classes_jar))javalib.jar
257
258$(common_classes_jar) : $(my_prebuilt_src_file) | $(ACP)
259	$(transform-prebuilt-to-target)
260
261$(common_javalib_jar) : $(common_classes_jar) | $(ACP)
262	$(transform-prebuilt-to-target)
263
264# make sure the classes.jar and javalib.jar are built before $(LOCAL_BUILT_MODULE)
265$(built_module) : $(common_javalib_jar)
266endif # TARGET JAVA_LIBRARIES
267
268$(built_module) : $(LOCAL_ADDITIONAL_DEPENDENCIES)
269
270my_prebuilt_src_file :=
271