blob: e34fa55c7aa93246dfc7401560e69d1d423165df [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001###########################################################
2## Standard rules for copying files that are prebuilt
3##
4## Additional inputs from base_rules.make:
5## None.
Doug Zongker1046d202009-08-06 13:02:19 -07006##
The Android Open Source Project88b60792009-03-03 19:28:42 -08007###########################################################
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
Ying Wang883071f2013-08-02 13:30:54 -070019# Not much sense to check build prebuilts
20LOCAL_DONT_CHECK_MODULE := true
21
Ying Wang63d94fa2012-12-13 18:23:01 -080022ifdef LOCAL_PREBUILT_MODULE_FILE
23my_prebuilt_src_file := $(LOCAL_PREBUILT_MODULE_FILE)
24else
25my_prebuilt_src_file := $(LOCAL_PATH)/$(LOCAL_SRC_FILES)
26endif
27
Ying Wangc36b4502011-09-15 12:00:52 -070028ifdef LOCAL_IS_HOST_MODULE
Ying Wang13d69502012-11-01 17:22:33 -070029 my_prefix := HOST_
Ying Wangc36b4502011-09-15 12:00:52 -070030else
Ying Wang13d69502012-11-01 17:22:33 -070031 my_prefix := TARGET_
Ying Wangc36b4502011-09-15 12:00:52 -070032endif
33ifeq (SHARED_LIBRARIES,$(LOCAL_MODULE_CLASS))
34 # Put the built targets of all shared libraries in a common directory
35 # to simplify the link line.
36 OVERRIDE_BUILT_MODULE_PATH := $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)
37endif
38
Ying Wang5f074802011-11-08 09:31:21 -080039ifneq ($(filter STATIC_LIBRARIES SHARED_LIBRARIES,$(LOCAL_MODULE_CLASS)),)
40 prebuilt_module_is_a_library := true
41else
42 prebuilt_module_is_a_library :=
43endif
44
Ying Wangb1a4e4e2012-05-15 15:31:41 -070045# Don't install static libraries by default.
46ifndef LOCAL_UNINSTALLABLE_MODULE
47ifeq (STATIC_LIBRARIES,$(LOCAL_MODULE_CLASS))
48 LOCAL_UNINSTALLABLE_MODULE := true
49endif
50endif
51
Ji-Hwan Lee0219e922011-07-07 03:10:14 +090052ifeq ($(LOCAL_STRIP_MODULE),true)
53 ifdef LOCAL_IS_HOST_MODULE
54 $(error Cannot strip host module LOCAL_PATH=$(LOCAL_PATH))
55 endif
56 ifeq ($(filter SHARED_LIBRARIES EXECUTABLES,$(LOCAL_MODULE_CLASS)),)
57 $(error Can strip only shared libraries or executables LOCAL_PATH=$(LOCAL_PATH))
58 endif
59 ifneq ($(LOCAL_PREBUILT_STRIP_COMMENTS),)
60 $(error Cannot strip scripts LOCAL_PATH=$(LOCAL_PATH))
61 endif
62 include $(BUILD_SYSTEM)/dynamic_binary.mk
63 built_module := $(linked_module)
Ying Wang6c86a132013-02-25 18:12:11 -080064else # LOCAL_STRIP_MODULE not true
Ji-Hwan Lee0219e922011-07-07 03:10:14 +090065 include $(BUILD_SYSTEM)/base_rules.mk
66 built_module := $(LOCAL_BUILT_MODULE)
The Android Open Source Project88b60792009-03-03 19:28:42 -080067
Ying Wang5f074802011-11-08 09:31:21 -080068ifdef prebuilt_module_is_a_library
Ying Wangfe3f62d2012-12-03 18:24:55 -080069export_includes := $(intermediates)/export_includes
70$(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS)
71$(export_includes) : $(LOCAL_MODULE_MAKEFILE)
72 @echo Export includes file: $< -- $@
Ying Wang5f074802011-11-08 09:31:21 -080073 $(hide) mkdir -p $(dir $@) && rm -f $@
Ying Wangfe3f62d2012-12-03 18:24:55 -080074ifdef LOCAL_EXPORT_C_INCLUDE_DIRS
75 $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \
76 echo "-I $$d" >> $@; \
77 done
78else
Ying Wang5f074802011-11-08 09:31:21 -080079 $(hide) touch $@
Ying Wangfe3f62d2012-12-03 18:24:55 -080080endif
Ying Wang616e5962012-04-18 17:35:55 -070081
82$(LOCAL_BUILT_MODULE) : | $(intermediates)/export_includes
Ying Wang63d94fa2012-12-13 18:23:01 -080083endif # prebuilt_module_is_a_library
Ying Wang6c86a132013-02-25 18:12:11 -080084
85# The real dependency will be added after all Android.mks are loaded and the install paths
86# of the shared libraries are determined.
87ifdef LOCAL_INSTALLED_MODULE
88ifdef LOCAL_SHARED_LIBRARIES
Ying Wangd6b1d612013-04-15 17:32:21 -070089$(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += $(LOCAL_MODULE):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(LOCAL_SHARED_LIBRARIES))
Ying Wangada8f292013-07-12 22:05:14 -070090
91# We also need the LOCAL_BUILT_MODULE dependency,
92# since we use -rpath-link which points to the built module's path.
93built_shared_libraries := \
94 $(addprefix $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \
Ying Wang80b71fa2013-07-15 08:47:33 -070095 $(addsuffix $($(my_prefix)SHLIB_SUFFIX), \
Ying Wangada8f292013-07-12 22:05:14 -070096 $(LOCAL_SHARED_LIBRARIES)))
97$(LOCAL_BUILT_MODULE) : $(built_shared_libraries)
The Android Open Source Project88b60792009-03-03 19:28:42 -080098endif
Ying Wang6c86a132013-02-25 18:12:11 -080099endif
100
101endif # LOCAL_STRIP_MODULE not true
The Android Open Source Project88b60792009-03-03 19:28:42 -0800102
Owen Lin64d5a802009-10-16 02:43:05 -0700103PACKAGES.$(LOCAL_MODULE).OVERRIDES := $(strip $(LOCAL_OVERRIDES_PACKAGES))
104
Doug Zongker08d79c12011-10-05 08:16:30 -0700105ifeq ($(LOCAL_CERTIFICATE),EXTERNAL)
106 # The magic string "EXTERNAL" means this package will be signed with
107 # the default dev key throughout the build process, but we expect
108 # the final package to be signed with a different key.
109 #
110 # This can be used for packages where we don't have access to the
111 # keys, but want the package to be predexopt'ed.
112 LOCAL_CERTIFICATE := $(DEFAULT_SYSTEM_DEV_CERTIFICATE)
113 PACKAGES.$(LOCAL_MODULE).EXTERNAL_KEY := 1
114
115 $(built_module) : PRIVATE_PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
116 $(built_module) : PRIVATE_CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
117endif
118ifeq ($(LOCAL_CERTIFICATE),)
119 ifneq ($(filter APPS,$(LOCAL_MODULE_CLASS)),)
120 # It is now a build error to add a prebuilt .apk without
121 # specifying a key for it.
Ying Wang63d94fa2012-12-13 18:23:01 -0800122 $(error No LOCAL_CERTIFICATE specified for prebuilt "$(my_prebuilt_src_file)")
Doug Zongker08d79c12011-10-05 08:16:30 -0700123 endif
124else ifeq ($(LOCAL_CERTIFICATE),PRESIGNED)
125 # The magic string "PRESIGNED" means this package is already checked
126 # signed with its release key.
127 #
128 # By setting .CERTIFICATE but not .PRIVATE_KEY, this package will be
129 # mentioned in apkcerts.txt (with certificate set to "PRESIGNED")
130 # but the dexpreopt process will not try to re-sign the app.
131 PACKAGES.$(LOCAL_MODULE).CERTIFICATE := PRESIGNED
132 PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
133else
134 # If this is not an absolute certificate, assign it to a generic one.
135 ifeq ($(dir $(strip $(LOCAL_CERTIFICATE))),./)
136 LOCAL_CERTIFICATE := $(dir $(DEFAULT_SYSTEM_DEV_CERTIFICATE))$(LOCAL_CERTIFICATE)
137 endif
138
139 PACKAGES.$(LOCAL_MODULE).PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
140 PACKAGES.$(LOCAL_MODULE).CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
141 PACKAGES := $(PACKAGES) $(LOCAL_MODULE)
142
143 $(built_module) : PRIVATE_PRIVATE_KEY := $(LOCAL_CERTIFICATE).pk8
144 $(built_module) : PRIVATE_CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
145endif
146
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -0700147ifneq ($(filter APPS,$(LOCAL_MODULE_CLASS)),)
Doug Zongker08d79c12011-10-05 08:16:30 -0700148ifeq ($(LOCAL_CERTIFICATE),PRESIGNED)
149# Ensure that presigned .apks have been aligned.
Ying Wang63d94fa2012-12-13 18:23:01 -0800150$(built_module) : $(my_prebuilt_src_file) | $(ZIPALIGN)
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -0700151 $(transform-prebuilt-to-target-with-zipalign)
152else
Doug Zongker08d79c12011-10-05 08:16:30 -0700153# Sign and align non-presigned .apks.
Ying Wang63d94fa2012-12-13 18:23:01 -0800154$(built_module) : $(my_prebuilt_src_file) | $(ACP) $(ZIPALIGN) $(SIGNAPK_JAR)
Doug Zongker08d79c12011-10-05 08:16:30 -0700155 $(transform-prebuilt-to-target)
156 $(sign-package)
157 $(align-package)
158endif
159else
Doug Zongker1046d202009-08-06 13:02:19 -0700160ifneq ($(LOCAL_PREBUILT_STRIP_COMMENTS),)
Ying Wang63d94fa2012-12-13 18:23:01 -0800161$(built_module) : $(my_prebuilt_src_file)
Doug Zongker1046d202009-08-06 13:02:19 -0700162 $(transform-prebuilt-to-target-strip-comments)
163else
Ying Wang63d94fa2012-12-13 18:23:01 -0800164$(built_module) : $(my_prebuilt_src_file) | $(ACP)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800165 $(transform-prebuilt-to-target)
Ying Wang5f074802011-11-08 09:31:21 -0800166ifneq ($(prebuilt_module_is_a_library),)
167 ifneq ($(LOCAL_IS_HOST_MODULE),)
168 $(transform-host-ranlib-copy-hack)
169 else
170 $(transform-ranlib-copy-hack)
171 endif
172endif
Doug Zongker1046d202009-08-06 13:02:19 -0700173endif
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -0700174endif
175
Ying Wanga83940f2010-09-24 18:09:04 -0700176ifeq ($(LOCAL_IS_HOST_MODULE)$(LOCAL_MODULE_CLASS),JAVA_LIBRARIES)
177# for target java libraries, the LOCAL_BUILT_MODULE is in a product-specific dir,
178# while the deps should be in the common dir, so we make a copy in the common dir.
Ying Wang5b316b62011-02-01 12:57:45 -0800179# For nonstatic library, $(common_javalib_jar) is the dependency file,
180# while $(common_classes_jar) is used to link.
181common_classes_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(LOCAL_MODULE),,COMMON)/classes.jar
182common_javalib_jar := $(dir $(common_classes_jar))javalib.jar
183
Ying Wang63d94fa2012-12-13 18:23:01 -0800184$(common_classes_jar) : $(my_prebuilt_src_file) | $(ACP)
Ying Wanga83940f2010-09-24 18:09:04 -0700185 $(transform-prebuilt-to-target)
Ying Wang5b316b62011-02-01 12:57:45 -0800186
187$(common_javalib_jar) : $(common_classes_jar) | $(ACP)
188 $(transform-prebuilt-to-target)
189
190# make sure the classes.jar and javalib.jar are built before $(LOCAL_BUILT_MODULE)
Ji-Hwan Lee0219e922011-07-07 03:10:14 +0900191$(built_module) : $(common_javalib_jar)
Ying Wang5b316b62011-02-01 12:57:45 -0800192endif # TARGET JAVA_LIBRARIES
Elliott Hughes32d315a2013-08-13 17:05:34 -0700193
194$(built_module) : $(LOCAL_ADDITIONAL_DEPENDENCIES)