prebuilt_internal.mk revision 75e8fcbb6cc68a7c55a33d7545aa60cccda76ccd
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)
42endif
43
44ifneq ($(filter STATIC_LIBRARIES SHARED_LIBRARIES,$(LOCAL_MODULE_CLASS)),)
45  prebuilt_module_is_a_library := true
46else
47  prebuilt_module_is_a_library :=
48endif
49
50# Don't install static libraries by default.
51ifndef LOCAL_UNINSTALLABLE_MODULE
52ifeq (STATIC_LIBRARIES,$(LOCAL_MODULE_CLASS))
53  LOCAL_UNINSTALLABLE_MODULE := true
54endif
55endif
56
57ifeq ($(LOCAL_STRIP_MODULE),true)
58  ifdef LOCAL_IS_HOST_MODULE
59    $(error Cannot strip host module LOCAL_PATH=$(LOCAL_PATH))
60  endif
61  ifeq ($(filter SHARED_LIBRARIES EXECUTABLES,$(LOCAL_MODULE_CLASS)),)
62    $(error Can strip only shared libraries or executables LOCAL_PATH=$(LOCAL_PATH))
63  endif
64  ifneq ($(LOCAL_PREBUILT_STRIP_COMMENTS),)
65    $(error Cannot strip scripts LOCAL_PATH=$(LOCAL_PATH))
66  endif
67  include $(BUILD_SYSTEM)/dynamic_binary.mk
68  built_module := $(linked_module)
69else  # LOCAL_STRIP_MODULE not true
70  include $(BUILD_SYSTEM)/base_rules.mk
71  built_module := $(LOCAL_BUILT_MODULE)
72
73ifdef prebuilt_module_is_a_library
74export_includes := $(intermediates)/export_includes
75$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
76$(export_includes) : $(LOCAL_MODULE_MAKEFILE)
77	@echo Export includes file: $< -- $@
78	$(hide) mkdir -p $(dir $@) && rm -f $@
79ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
80	$(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
81	        echo "-I $$d" >> $@; \
82	        done
83else
84	$(hide) touch $@
85endif
86
87$(LOCAL_BUILT_MODULE) : | $(intermediates)/export_includes
88endif  # prebuilt_module_is_a_library
89
90# The real dependency will be added after all Android.mks are loaded and the install paths
91# of the shared libraries are determined.
92ifdef LOCAL_INSTALLED_MODULE
93ifdef LOCAL_SHARED_LIBRARIES
94my_shared_libraries := $(LOCAL_SHARED_LIBRARIES)
95# Extra shared libraries introduced by LOCAL_CXX_STL.
96include $(BUILD_SYSTEM)/cxx_stl_setup.mk
97$(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += \
98  $(my_register_name):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(my_shared_libraries))
99
100# We also need the LOCAL_BUILT_MODULE dependency,
101# since we use -rpath-link which points to the built module's path.
102my_built_shared_libraries := \
103    $(addprefix $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
104    $(addsuffix $($(my_prefix)SHLIB_SUFFIX), \
105        $(my_shared_libraries)))
106$(LOCAL_BUILT_MODULE) : $(my_built_shared_libraries)
107endif
108endif
109
110endif  # LOCAL_STRIP_MODULE not true
111
112PACKAGES.$(LOCAL_MODULE).OVERRIDES := $(strip $(LOCAL_OVERRIDES_PACKAGES))
113
114rs_compatibility_jni_libs :=
115include $(BUILD_SYSTEM)/install_jni_libs.mk
116
117ifeq ($(LOCAL_CERTIFICATE),EXTERNAL)
118  # The magic string "EXTERNAL" means this package will be signed with
119  # the default dev key throughout the build process, but we expect
120  # the final package to be signed with a different key.
121  #
122  # This can be used for packages where we don't have access to the
123  # keys, but want the package to be predexopt'ed.
124  LOCAL_CERTIFICATE := $(DEFAULT_SYSTEM_DEV_CERTIFICATE)
125  PACKAGES.$(LOCAL_MODULE).EXTERNAL_KEY := 1
126
127  $(built_module) : PRIVATE_PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
128  $(built_module) : PRIVATE_CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
129endif
130ifeq ($(LOCAL_CERTIFICATE),)
131  ifneq ($(filter APPS,$(LOCAL_MODULE_CLASS)),)
132    # It is now a build error to add a prebuilt .apk without
133    # specifying a key for it.
134    $(error No LOCAL_CERTIFICATE specified for prebuilt "$(my_prebuilt_src_file)")
135  endif
136else ifeq ($(LOCAL_CERTIFICATE),PRESIGNED)
137  # The magic string "PRESIGNED" means this package is already checked
138  # signed with its release key.
139  #
140  # By setting .CERTIFICATE but not .PRIVATE_KEY, this package will be
141  # mentioned in apkcerts.txt (with certificate set to "PRESIGNED")
142  # but the dexpreopt process will not try to re-sign the app.
143  PACKAGES.$(LOCAL_MODULE).CERTIFICATE := PRESIGNED
144  PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
145else
146  # If this is not an absolute certificate, assign it to a generic one.
147  ifeq ($(dir $(strip $(LOCAL_CERTIFICATE))),./)
148      LOCAL_CERTIFICATE := $(dir $(DEFAULT_SYSTEM_DEV_CERTIFICATE))$(LOCAL_CERTIFICATE)
149  endif
150
151  PACKAGES.$(LOCAL_MODULE).PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
152  PACKAGES.$(LOCAL_MODULE).CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
153  PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
154
155  $(built_module) : PRIVATE_PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
156  $(built_module) : PRIVATE_CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
157endif
158
159ifneq ($(filter APPS,$(LOCAL_MODULE_CLASS)),)
160
161# Disable dex-preopt of prebuilts to save space
162LOCAL_DEX_PREOPT := false
163
164#######################################
165# defines built_odex along with rule to install odex
166include $(BUILD_SYSTEM)/dex_preopt_odex_install.mk
167#######################################
168# Sign and align non-presigned .apks.
169$(built_module) : $(my_prebuilt_src_file) | $(ACP) $(ZIPALIGN) $(SIGNAPK_JAR)
170	$(transform-prebuilt-to-target)
171ifdef extracted_jni_libs
172	$(hide) zip -d $@ 'lib/*.so'  # strip embedded JNI libraries.
173endif
174ifneq ($(LOCAL_CERTIFICATE),PRESIGNED)
175	$(sign-package)
176endif
177ifdef LOCAL_DEX_PREOPT
178ifneq (nostripping,$(LOCAL_DEX_PREOPT))
179	$(call dexpreopt-remove-classes.dex,$@)
180endif
181endif
182	$(align-package)
183
184###############################
185## Rule to build the odex file
186ifdef LOCAL_DEX_PREOPT
187$(built_odex) : $(my_prebuilt_src_file)
188	$(call dexpreopt-one-file,$<,$@)
189endif
190
191else # LOCAL_MODULE_CLASS != APPS
192ifneq ($(LOCAL_PREBUILT_STRIP_COMMENTS),)
193$(built_module) : $(my_prebuilt_src_file)
194	$(transform-prebuilt-to-target-strip-comments)
195else
196$(built_module) : $(my_prebuilt_src_file) | $(ACP)
197	$(transform-prebuilt-to-target)
198ifneq ($(prebuilt_module_is_a_library),)
199  ifneq ($(LOCAL_IS_HOST_MODULE),)
200	$(transform-host-ranlib-copy-hack)
201  else
202	$(transform-ranlib-copy-hack)
203  endif
204endif
205endif
206endif # LOCAL_MODULE_CLASS != APPS
207
208ifeq ($(LOCAL_IS_HOST_MODULE)$(LOCAL_MODULE_CLASS),JAVA_LIBRARIES)
209# for target java libraries, the LOCAL_BUILT_MODULE is in a product-specific dir,
210# while the deps should be in the common dir, so we make a copy in the common dir.
211# For nonstatic library, $(common_javalib_jar) is the dependency file,
212# while $(common_classes_jar) is used to link.
213common_classes_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(LOCAL_MODULE),,COMMON)/classes.jar
214common_javalib_jar := $(dir $(common_classes_jar))javalib.jar
215
216$(common_classes_jar) : $(my_prebuilt_src_file) | $(ACP)
217	$(transform-prebuilt-to-target)
218
219$(common_javalib_jar) : $(common_classes_jar) | $(ACP)
220	$(transform-prebuilt-to-target)
221
222# make sure the classes.jar and javalib.jar are built before $(LOCAL_BUILT_MODULE)
223$(built_module) : $(common_javalib_jar)
224endif # TARGET JAVA_LIBRARIES
225
226$(built_module) : $(LOCAL_ADDITIONAL_DEPENDENCIES)
227
228my_prebuilt_src_file :=
229