blob: 971c1ac8f2eaba1776a8059692e8b312c5ad0dff [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Dan Willemsen3bf15e72016-07-25 16:03:53 -070017# Catch users that directly include base_rules.mk
18$(call record-module-type,base_rules)
19
The Android Open Source Project88b60792009-03-03 19:28:42 -080020# Users can define base-rules-hook in their buildspec.mk to perform
21# arbitrary operations as each module is included.
22ifdef base-rules-hook
23$(if $(base-rules-hook),)
24endif
25
26###########################################################
27## Common instructions for a generic module.
28###########################################################
29
30LOCAL_MODULE := $(strip $(LOCAL_MODULE))
31ifeq ($(LOCAL_MODULE),)
32 $(error $(LOCAL_PATH): LOCAL_MODULE is not defined)
33endif
34
35LOCAL_IS_HOST_MODULE := $(strip $(LOCAL_IS_HOST_MODULE))
Alexey Polyudovccdc3112016-08-01 17:41:49 -070036LOCAL_IS_AUX_MODULE := $(strip $(LOCAL_IS_AUX_MODULE))
The Android Open Source Project88b60792009-03-03 19:28:42 -080037ifdef LOCAL_IS_HOST_MODULE
38 ifneq ($(LOCAL_IS_HOST_MODULE),true)
39 $(error $(LOCAL_PATH): LOCAL_IS_HOST_MODULE must be "true" or empty, not "$(LOCAL_IS_HOST_MODULE)")
40 endif
Dan Willemsen057aaea2015-08-14 12:59:50 -070041 ifeq ($(LOCAL_HOST_PREFIX),)
42 my_prefix := HOST_
43 else
44 my_prefix := $(LOCAL_HOST_PREFIX)
45 endif
Ying Wang13d69502012-11-01 17:22:33 -070046 my_host := host-
Alexey Polyudovccdc3112016-08-01 17:41:49 -070047 my_kind := HOST
The Android Open Source Project88b60792009-03-03 19:28:42 -080048else
Alexey Polyudovccdc3112016-08-01 17:41:49 -070049 ifdef LOCAL_IS_AUX_MODULE
50 ifneq ($(LOCAL_IS_AUX_MODULE),true)
51 $(error $(LOCAL_PATH): LOCAL_IS_AUX_MODULE must be "true" or empty, not "$(LOCAL_IS_AUX_MODULE)")
52 endif
53 my_prefix := AUX_
54 my_kind := AUX
55 else
56 my_prefix := TARGET_
57 my_kind :=
58 endif
Ying Wang13d69502012-11-01 17:22:33 -070059 my_host :=
The Android Open Source Project88b60792009-03-03 19:28:42 -080060endif
61
Dan Willemsen057aaea2015-08-14 12:59:50 -070062ifeq ($(my_prefix),HOST_CROSS_)
63 my_host_cross := true
64else
65 my_host_cross :=
66endif
67
Jiyong Park003ea362017-11-15 18:22:14 +090068_path := $(LOCAL_MODULE_PATH) $(LOCAL_MODULE_PATH_32) $(LOCAL_MODULE_PATH_64)
69ifneq ($(filter $(TARGET_OUT_VENDOR)%,$(_path)),)
70LOCAL_VENDOR_MODULE := true
71else ifneq ($(filter $(TARGET_OUT_OEM)/%,$(_path)),)
72LOCAL_OEM_MODULE := true
73else ifneq ($(filter $(TARGET_OUT_ODM)/%,$(_path)),)
74LOCAL_ODM_MODULE := true
75endif
76_path :=
77
Dan Willemsen05a2b932017-03-20 18:31:17 -070078ifndef LOCAL_PROPRIETARY_MODULE
79 LOCAL_PROPRIETARY_MODULE := $(LOCAL_VENDOR_MODULE)
80endif
81ifndef LOCAL_VENDOR_MODULE
82 LOCAL_VENDOR_MODULE := $(LOCAL_PROPRIETARY_MODULE)
83endif
84ifneq ($(filter-out $(LOCAL_PROPRIETARY_MODULE),$(LOCAL_VENDOR_MODULE))$(filter-out $(LOCAL_VENDOR_MODULE),$(LOCAL_PROPRIETARY_MODULE)),)
85$(call pretty-error,Only one of LOCAL_PROPRIETARY_MODULE[$(LOCAL_PROPRIETARY_MODULE)] and LOCAL_VENDOR_MODULE[$(LOCAL_VENDOR_MODULE)] may be set, or they must be equal)
86endif
87
Dan Willemsenbab0fa62016-11-18 14:05:39 -080088include $(BUILD_SYSTEM)/local_vndk.mk
Jiyong Park641b6cc2018-01-15 14:48:40 +090089include $(BUILD_SYSTEM)/local_systemsdk.mk
Dan Willemsenbab0fa62016-11-18 14:05:39 -080090
Ying Wang37bd1f22014-01-27 15:19:09 -080091my_module_tags := $(LOCAL_MODULE_TAGS)
Dan Willemsen057aaea2015-08-14 12:59:50 -070092ifeq ($(my_host_cross),true)
93 my_module_tags :=
94endif
Ying Wang87538e42016-03-16 19:53:19 -070095ifeq ($(TARGET_TRANSLATE_2ND_ARCH),true)
96ifdef LOCAL_2ND_ARCH_VAR_PREFIX
97# Don't pull in modules by tags if this is for translation TARGET_2ND_ARCH.
98 my_module_tags :=
99endif
100endif
Ying Wang37bd1f22014-01-27 15:19:09 -0800101
Colin Crossa4447e82015-09-28 16:26:00 -0700102# Ninja has an implicit dependency on the command being run, and kati will
103# regenerate the ninja manifest if any read makefile changes, so there is no
104# need to have dependencies on makefiles.
105# This won't catch all the cases where LOCAL_ADDITIONAL_DEPENDENCIES contains
106# a .mk file, because a few users of LOCAL_ADDITIONAL_DEPENDENCIES don't include
107# base_rules.mk, but it will fix the most common ones.
108LOCAL_ADDITIONAL_DEPENDENCIES := $(filter-out %.mk,$(LOCAL_ADDITIONAL_DEPENDENCIES))
Colin Crossa4447e82015-09-28 16:26:00 -0700109
Dan Willemsen0c821a92017-10-23 22:14:21 -0700110my_bad_deps := $(strip $(foreach dep,$(filter-out | ||,$(LOCAL_ADDITIONAL_DEPENDENCIES)),\
111 $(if $(findstring /,$(dep)),,$(dep))))
112ifneq ($(my_bad_deps),)
113$(call pretty-warning,"Bad LOCAL_ADDITIONAL_DEPENDENCIES: $(my_bad_deps)")
114$(call pretty-error,"LOCAL_ADDITIONAL_DEPENDENCIES must only contain paths (not module names)")
115endif
116
The Android Open Source Project88b60792009-03-03 19:28:42 -0800117###########################################################
118## Validate and define fallbacks for input LOCAL_* variables.
119###########################################################
120
121## Dump a .csv file of all modules and their tags
122#ifneq ($(tag-list-first-time),false)
123#$(shell rm -f tag-list.csv)
124#tag-list-first-time := false
125#endif
Ying Wang37bd1f22014-01-27 15:19:09 -0800126#$(shell echo $(lastword $(filter-out config/% out/%,$(MAKEFILE_LIST))),$(LOCAL_MODULE),$(strip $(LOCAL_MODULE_CLASS)),$(subst $(space),$(comma),$(sort $(my_module_tags))) >> tag-list.csv)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800127
Ying Wang6e371e42012-05-15 14:31:26 -0700128LOCAL_UNINSTALLABLE_MODULE := $(strip $(LOCAL_UNINSTALLABLE_MODULE))
Ying Wang37bd1f22014-01-27 15:19:09 -0800129my_module_tags := $(sort $(my_module_tags))
130ifeq (,$(my_module_tags))
131 my_module_tags := optional
Ying Wang2fd81cf2010-12-10 11:17:28 -0800132endif
Joe Onorato918ee312012-05-18 20:43:14 -0700133
Joe Onorato6a185e42012-05-22 14:08:50 -0700134# User tags are not allowed anymore. Fail early because it will not be installed
135# like it used to be.
Ying Wang37bd1f22014-01-27 15:19:09 -0800136ifneq ($(filter $(my_module_tags),user),)
Joe Onorato6a185e42012-05-22 14:08:50 -0700137 $(warning *** Module name: $(LOCAL_MODULE))
138 $(warning *** Makefile location: $(LOCAL_MODULE_MAKEFILE))
139 $(warning * )
140 $(warning * Module is attempting to use the 'user' tag. This)
141 $(warning * used to cause the module to be installed automatically.)
142 $(warning * Now, the module must be listed in the PRODUCT_PACKAGES)
143 $(warning * section of a product makefile to have it installed.)
144 $(warning * )
145 $(error user tag detected on module.)
146endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800147
Jean-Baptiste Querua831cbd2010-01-07 11:06:50 -0800148# Only the tags mentioned in this test are expected to be set by module
149# makefiles. Anything else is either a typo or a source of unexpected
150# behaviors.
Ying Wang37bd1f22014-01-27 15:19:09 -0800151ifneq ($(filter-out debug eng tests optional samples,$(my_module_tags)),)
Dan Willemsenbd8f84f2017-10-19 15:01:21 -0700152$(call pretty-error,unusual tags: $(filter-out debug eng tests optional samples,$(my_module_tags)))
Jean-Baptiste Querua831cbd2010-01-07 11:06:50 -0800153endif
154
The Android Open Source Project88b60792009-03-03 19:28:42 -0800155# Add implicit tags.
156#
157# If the local directory or one of its parents contains a MODULE_LICENSE_GPL
Andrew Boie08a943b2013-12-10 13:52:00 -0800158# file, tag the module as "gnu". Search for "*_GPL*", "*_LGPL*" and "*_MPL*"
159# so that we can also find files like MODULE_LICENSE_GPL_AND_AFL
The Android Open Source Project88b60792009-03-03 19:28:42 -0800160#
Ying Wang39b9b692015-05-07 12:08:53 -0700161license_files := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*)
Andrew Boie08a943b2013-12-10 13:52:00 -0800162gpl_license_file := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*_GPL* MODULE_LICENSE*_MPL* MODULE_LICENSE*_LGPL*)
Ying Wangfd626f22011-12-12 12:57:38 -0800163ifneq ($(gpl_license_file),)
Ying Wang37bd1f22014-01-27 15:19:09 -0800164 my_module_tags += gnu
Ying Wangfd626f22011-12-12 12:57:38 -0800165 ALL_GPL_MODULE_LICENSE_FILES := $(sort $(ALL_GPL_MODULE_LICENSE_FILES) $(gpl_license_file))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800166endif
167
The Android Open Source Project88b60792009-03-03 19:28:42 -0800168LOCAL_MODULE_CLASS := $(strip $(LOCAL_MODULE_CLASS))
169ifneq ($(words $(LOCAL_MODULE_CLASS)),1)
170 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS must contain exactly one word, not "$(LOCAL_MODULE_CLASS)")
171endif
172
Ying Wang6feb6d52014-04-17 10:03:35 -0700173my_32_64_bit_suffix := $(if $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)IS_64_BIT),64,32)
Colin Cross87974052014-03-21 12:25:44 -0700174
Ying Wang6e371e42012-05-15 14:31:26 -0700175ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wang87538e42016-03-16 19:53:19 -0700176ifeq ($(TARGET_TRANSLATE_2ND_ARCH),true)
177# When in TARGET_TRANSLATE_2ND_ARCH both TARGET_ARCH and TARGET_2ND_ARCH are 32-bit,
178# to avoid path conflict we force using LOCAL_MODULE_PATH_64 for the first arch.
179ifdef LOCAL_2ND_ARCH_VAR_PREFIX
180my_multilib_module_path := $(LOCAL_MODULE_PATH_32)
181else # ! LOCAL_2ND_ARCH_VAR_PREFIX
182my_multilib_module_path := $(LOCAL_MODULE_PATH_64)
183endif # ! LOCAL_2ND_ARCH_VAR_PREFIX
184else # ! TARGET_TRANSLATE_2ND_ARCH
Colin Cross87974052014-03-21 12:25:44 -0700185my_multilib_module_path := $(strip $(LOCAL_MODULE_PATH_$(my_32_64_bit_suffix)))
Ying Wang87538e42016-03-16 19:53:19 -0700186endif # ! TARGET_TRANSLATE_2ND_ARCH
Colin Cross87974052014-03-21 12:25:44 -0700187ifdef my_multilib_module_path
188my_module_path := $(my_multilib_module_path)
189else
Ying Wangb8e01852014-01-23 15:09:04 -0800190my_module_path := $(strip $(LOCAL_MODULE_PATH))
Colin Cross87974052014-03-21 12:25:44 -0700191endif
Dan Willemsene0bba6f2016-12-09 21:15:41 -0800192my_module_path := $(patsubst %/,%,$(my_module_path))
Colin Cross639c3362014-01-24 19:23:40 -0800193my_module_relative_path := $(strip $(LOCAL_MODULE_RELATIVE_PATH))
Dan Willemsenb2a5c7b2017-02-13 13:41:43 -0800194ifdef LOCAL_IS_HOST_MODULE
195 partition_tag :=
196else
Dan Willemsen05a2b932017-03-20 18:31:17 -0700197ifeq (true,$(LOCAL_VENDOR_MODULE))
Dan Willemsenb2a5c7b2017-02-13 13:41:43 -0800198 partition_tag := _VENDOR
199else ifeq (true,$(LOCAL_OEM_MODULE))
200 partition_tag := _OEM
201else ifeq (true,$(LOCAL_ODM_MODULE))
202 partition_tag := _ODM
203else ifeq (NATIVE_TESTS,$(LOCAL_MODULE_CLASS))
204 partition_tag := _DATA
205else
206 # The definition of should-install-to-system will be different depending
207 # on which goal (e.g., sdk or just droid) is being built.
208 partition_tag := $(if $(call should-install-to-system,$(my_module_tags)),,_DATA)
209endif
210endif
Jiyong Park842a9852017-01-20 09:01:17 +0900211ifeq ($(my_module_path),)
Dan Willemsende4e71b2017-03-16 16:51:46 -0700212 install_path_var := $(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT$(partition_tag)_$(LOCAL_MODULE_CLASS)
213 ifeq (true,$(LOCAL_PRIVILEGED_MODULE))
214 install_path_var := $(install_path_var)_PRIVILEGED
215 endif
Jiyong Park842a9852017-01-20 09:01:17 +0900216
Dan Willemsende4e71b2017-03-16 16:51:46 -0700217 my_module_path := $($(install_path_var))
218 ifeq ($(strip $(my_module_path)),)
219 $(error $(LOCAL_PATH): unhandled install path "$(install_path_var) for $(LOCAL_MODULE)")
Jiyong Park842a9852017-01-20 09:01:17 +0900220 endif
Colin Cross639c3362014-01-24 19:23:40 -0800221endif
Dan Willemsende4e71b2017-03-16 16:51:46 -0700222ifneq ($(my_module_relative_path),)
223 my_module_path := $(my_module_path)/$(my_module_relative_path)
224endif
Ying Wang6e371e42012-05-15 14:31:26 -0700225endif # not LOCAL_UNINSTALLABLE_MODULE
The Android Open Source Project88b60792009-03-03 19:28:42 -0800226
227ifneq ($(strip $(LOCAL_BUILT_MODULE)$(LOCAL_INSTALLED_MODULE)),)
228 $(error $(LOCAL_PATH): LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE must not be defined by component makefiles)
229endif
230
Ying Wang6ef65192014-01-15 16:02:16 -0800231my_register_name := $(LOCAL_MODULE)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700232ifeq ($(my_host_cross),true)
233 my_register_name := host_cross_$(LOCAL_MODULE)
234endif
Dan Willemsen9ecbf832016-02-05 16:20:19 -0800235ifdef LOCAL_2ND_ARCH_VAR_PREFIX
236ifndef LOCAL_NO_2ND_ARCH_MODULE_SUFFIX
237my_register_name := $(my_register_name)$($(my_prefix)2ND_ARCH_MODULE_SUFFIX)
238endif
239endif
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700240
Colin Crossaaf888a2016-09-07 12:48:30 -0700241ifeq ($(my_host_cross),true)
242 my_all_targets := host_cross_$(my_register_name)_all_targets
243else ifneq ($(LOCAL_IS_HOST_MODULE),)
244 my_all_targets := host_$(my_register_name)_all_targets
245else
246 my_all_targets := device_$(my_register_name)_all_targets
247endif
248
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700249# variant is enough to make nano class unique; it serves as a key to lookup (OS,ARCH) tuple
250aux_class := $($(my_prefix)OS_VARIANT)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800251# Make sure that this IS_HOST/CLASS/MODULE combination is unique.
252module_id := MODULE.$(if \
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700253 $(LOCAL_IS_HOST_MODULE),$($(my_prefix)OS),$(if \
254 $(LOCAL_IS_AUX_MODULE),$(aux_class),TARGET)).$(LOCAL_MODULE_CLASS).$(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800255ifdef $(module_id)
256$(error $(LOCAL_PATH): $(module_id) already defined by $($(module_id)))
257endif
258$(module_id) := $(LOCAL_PATH)
259
Dan Willemsen057aaea2015-08-14 12:59:50 -0700260intermediates := $(call local-intermediates-dir,,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800261intermediates.COMMON := $(call local-intermediates-dir,COMMON)
Colin Crossd8262642014-01-24 23:17:21 -0800262generated_sources_dir := $(call local-generated-sources-dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800263
Jiyong Parkcbf76f62017-03-24 19:31:49 +0900264ifneq ($(LOCAL_OVERRIDES_MODULES),)
265 ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
266 ifndef LOCAL_IS_HOST_MODULE
267 EXECUTABLES.$(LOCAL_MODULE).OVERRIDES := $(strip $(LOCAL_OVERRIDES_MODULES))
268 else
269 $(call pretty-error,host modules cannot use LOCAL_OVERRIDES_MODULES)
270 endif
271 else
272 $(call pretty-error,LOCAL_MODULE_CLASS := $(LOCAL_MODULE_CLASS) cannot use LOCAL_OVERRIDES_MODULES)
273 endif
274endif
275
The Android Open Source Project88b60792009-03-03 19:28:42 -0800276###########################################################
277# Pick a name for the intermediate and final targets
278###########################################################
Colin Cross5a9db902014-03-21 12:27:37 -0700279include $(BUILD_SYSTEM)/configure_module_stem.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -0800280
Dan Willemsen0cf52d82017-05-15 23:38:04 -0700281LOCAL_BUILT_MODULE := $(intermediates)/$(my_built_module_stem)
282
The Android Open Source Project88b60792009-03-03 19:28:42 -0800283# OVERRIDE_BUILT_MODULE_PATH is only allowed to be used by the
284# internal SHARED_LIBRARIES build files.
285OVERRIDE_BUILT_MODULE_PATH := $(strip $(OVERRIDE_BUILT_MODULE_PATH))
286ifdef OVERRIDE_BUILT_MODULE_PATH
287 ifneq ($(LOCAL_MODULE_CLASS),SHARED_LIBRARIES)
288 $(error $(LOCAL_PATH): Illegal use of OVERRIDE_BUILT_MODULE_PATH)
289 endif
Dan Willemsen0cf52d82017-05-15 23:38:04 -0700290 $(eval $(call copy-one-file,$(LOCAL_BUILT_MODULE),$(OVERRIDE_BUILT_MODULE_PATH)/$(my_built_module_stem)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800291endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800292
Ying Wang162991b2011-09-07 10:21:42 -0700293ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wangaf9757e2014-07-17 21:24:42 -0700294 # Apk and its attachments reside in its own subdir.
295 ifeq ($(LOCAL_MODULE_CLASS),APPS)
296 # framework-res.apk doesn't like the additional layer.
Jakub Adameka08a1012016-10-03 09:56:16 +0100297 ifeq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
298 # Neither do Runtime Resource Overlay apks, which contain just the overlaid resources.
299 else ifeq ($(LOCAL_IS_RUNTIME_RESOURCE_OVERLAY),true)
300 else
Ying Wangaf9757e2014-07-17 21:24:42 -0700301 my_module_path := $(my_module_path)/$(LOCAL_MODULE)
302 endif
303 endif
Ying Wang966c1e02014-05-20 14:43:51 -0700304 LOCAL_INSTALLED_MODULE := $(my_module_path)/$(my_installed_module_stem)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800305endif
306
307# Assemble the list of targets to create PRIVATE_ variables for.
308LOCAL_INTERMEDIATE_TARGETS += $(LOCAL_BUILT_MODULE)
309
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900310###########################################################
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900311## Create .toc files from shared objects to reduce unnecessary rebuild
312# .toc files have the list of external dynamic symbols without their addresses.
Shinichiro Hamaji89b255a2015-11-09 16:47:42 +0900313# As .KATI_RESTAT is specified to .toc files and commit-change-for-toc is used,
314# dependent binaries of a .toc file will be rebuilt only when the content of
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900315# the .toc file is changed.
316###########################################################
317ifeq ($(LOCAL_MODULE_CLASS),SHARED_LIBRARIES)
318LOCAL_INTERMEDIATE_TARGETS += $(LOCAL_BUILT_MODULE).toc
319$(LOCAL_BUILT_MODULE).toc: $(LOCAL_BUILT_MODULE)
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900320 $(call $(PRIVATE_2ND_ARCH_VAR_PREFIX)$(PRIVATE_PREFIX)transform-shared-lib-to-toc,$<,$@.tmp)
Shinichiro Hamaji89b255a2015-11-09 16:47:42 +0900321 $(call commit-change-for-toc,$@)
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900322
323# Kati adds restat=1 to ninja. GNU make does nothing for this.
324.KATI_RESTAT: $(LOCAL_BUILT_MODULE).toc
Colin Crosse2b8f682016-02-04 13:28:04 -0800325# Build .toc file when using mm, mma, or make $(my_register_name)
Colin Crossaaf888a2016-09-07 12:48:30 -0700326$(my_all_targets): $(LOCAL_BUILT_MODULE).toc
Dan Willemsen0cf52d82017-05-15 23:38:04 -0700327
328ifdef OVERRIDE_BUILT_MODULE_PATH
329$(eval $(call copy-one-file,$(LOCAL_BUILT_MODULE).toc,$(OVERRIDE_BUILT_MODULE_PATH)/$(my_built_module_stem).toc))
330$(OVERRIDE_BUILT_MODULE_PATH)/$(my_built_module_stem).toc: $(OVERRIDE_BUILT_MODULE_PATH)/$(my_built_module_stem)
331endif
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900332endif
333
334###########################################################
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900335## logtags: Add .logtags files to global list
336###########################################################
337
Dan Willemsenb0a08b82016-06-01 15:27:11 -0700338logtags_sources := $(filter %.logtags,$(LOCAL_SRC_FILES)) $(LOCAL_LOGTAGS_FILES)
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900339
340ifneq ($(strip $(logtags_sources)),)
341event_log_tags := $(addprefix $(LOCAL_PATH)/,$(logtags_sources))
342else
343event_log_tags :=
344endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800345
346###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800347## make clean- targets
348###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800349cleantarget := clean-$(my_register_name)
350$(cleantarget) : PRIVATE_MODULE := $(my_register_name)
Ying Wang4d063412013-03-22 18:52:57 -0700351$(cleantarget) : PRIVATE_CLEAN_FILES := \
Ying Wang95221ca2012-11-07 14:07:34 -0800352 $(LOCAL_BUILT_MODULE) \
353 $(LOCAL_INSTALLED_MODULE) \
354 $(intermediates)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800355$(cleantarget)::
356 @echo "Clean: $(PRIVATE_MODULE)"
357 $(hide) rm -rf $(PRIVATE_CLEAN_FILES)
358
359###########################################################
360## Common definitions for module.
361###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800362$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_PATH:=$(LOCAL_PATH)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800363$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_IS_HOST_MODULE := $(LOCAL_IS_HOST_MODULE)
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700364$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_IS_AUX_MODULE := $(LOCAL_IS_AUX_MODULE)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800365$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_HOST:= $(my_host)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700366$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_PREFIX := $(my_prefix)
367
Dima Zavin46e9bec2009-05-27 19:41:07 -0700368$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_INTERMEDIATES_DIR:= $(intermediates)
Ying Wang6feb6d52014-04-17 10:03:35 -0700369$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_2ND_ARCH_VAR_PREFIX := $(LOCAL_2ND_ARCH_VAR_PREFIX)
370
The Android Open Source Project88b60792009-03-03 19:28:42 -0800371# Tell the module and all of its sub-modules who it is.
Ying Wang6ef65192014-01-15 16:02:16 -0800372$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_MODULE:= $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800373
374# Provide a short-hand for building this module.
375# We name both BUILT and INSTALLED in case
376# LOCAL_UNINSTALLABLE_MODULE is set.
Colin Crossaaf888a2016-09-07 12:48:30 -0700377.PHONY: $(my_all_targets)
378$(my_all_targets): $(LOCAL_BUILT_MODULE) $(LOCAL_INSTALLED_MODULE)
379
Ying Wang6ef65192014-01-15 16:02:16 -0800380.PHONY: $(my_register_name)
Colin Crossaaf888a2016-09-07 12:48:30 -0700381$(my_register_name): $(my_all_targets)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800382
Ying Wang71c58092016-03-23 11:02:03 -0700383ifneq ($(my_register_name),$(LOCAL_MODULE))
384# $(LOCAL_MODULE) covers all the multilib targets.
385.PHONY: $(LOCAL_MODULE)
Colin Crossaaf888a2016-09-07 12:48:30 -0700386$(LOCAL_MODULE) : $(my_all_targets)
Ying Wang71c58092016-03-23 11:02:03 -0700387endif
388
Ying Wangcaeaa082015-09-23 16:08:55 -0700389# Set up phony targets that covers all modules under the given paths.
390# This allows us to build everything in given paths by running mmma/mma.
391my_path_components := $(subst /,$(space),$(LOCAL_PATH))
392my_path_prefix := MODULES-IN
393$(foreach c, $(my_path_components),\
Ying Wang61cd8842015-09-24 16:19:19 -0700394 $(eval my_path_prefix := $(my_path_prefix)-$(c))\
Ying Wangcaeaa082015-09-23 16:08:55 -0700395 $(eval .PHONY : $(my_path_prefix))\
Colin Crossaaf888a2016-09-07 12:48:30 -0700396 $(eval $(my_path_prefix) : $(my_all_targets)))
Ying Wangcaeaa082015-09-23 16:08:55 -0700397
The Android Open Source Project88b60792009-03-03 19:28:42 -0800398###########################################################
399## Module installation rule
400###########################################################
401
Colin Cross744d33b2016-07-14 16:02:57 -0700402my_init_rc_installed :=
403my_init_rc_pairs :=
404my_installed_symlinks :=
Ying Wanged0361f2015-04-19 09:55:39 -0700405ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wange56605a2013-02-06 11:44:41 -0800406$(LOCAL_INSTALLED_MODULE): PRIVATE_POST_INSTALL_CMD := $(LOCAL_POST_INSTALL_CMD)
Dan Willemsen7f016152016-02-29 17:52:39 -0800407$(LOCAL_INSTALLED_MODULE): $(LOCAL_BUILT_MODULE)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800408 @echo "Install: $@"
Ying Wang84ed6fa2011-01-18 17:21:20 -0800409 $(copy-file-to-new-target)
Ying Wange56605a2013-02-06 11:44:41 -0800410 $(PRIVATE_POST_INSTALL_CMD)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800411
Dan Willemsen435360a2016-07-27 22:52:42 -0700412ifndef LOCAL_IS_HOST_MODULE
Ying Wang9fe15ac2015-08-20 12:02:10 -0700413# Rule to install the module's companion init.rc.
Dan Willemsen435360a2016-07-27 22:52:42 -0700414my_init_rc := $(LOCAL_INIT_RC_$(my_32_64_bit_suffix)) $(LOCAL_INIT_RC)
415ifneq ($(strip $(my_init_rc)),)
416my_init_rc_pairs := $(foreach rc,$(my_init_rc),$(LOCAL_PATH)/$(rc):$(TARGET_OUT$(partition_tag)_ETC)/init/$(notdir $(rc)))
417my_init_rc_installed := $(foreach rc,$(my_init_rc_pairs),$(call word-colon,2,$(rc)))
418
419# Make sure we only set up the copy rules once, even if another arch variant
420# shares a common LOCAL_INIT_RC.
421my_init_rc_new_pairs := $(filter-out $(ALL_INIT_RC_INSTALLED_PAIRS),$(my_init_rc_pairs))
422my_init_rc_new_installed := $(call copy-many-files,$(my_init_rc_new_pairs))
423ALL_INIT_RC_INSTALLED_PAIRS += $(my_init_rc_new_pairs)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800424
Colin Crossaaf888a2016-09-07 12:48:30 -0700425$(my_all_targets) : $(my_init_rc_installed)
Dan Willemsen435360a2016-07-27 22:52:42 -0700426endif # my_init_rc
427endif # !LOCAL_IS_HOST_MODULE
Colin Cross744d33b2016-07-14 16:02:57 -0700428
429# Rule to install the module's companion symlinks
430my_installed_symlinks := $(addprefix $(my_module_path)/,$(LOCAL_MODULE_SYMLINKS) $(LOCAL_MODULE_SYMLINKS_$(my_32_64_bit_suffix)))
431$(foreach symlink,$(my_installed_symlinks),\
Dan Willemsende4e71b2017-03-16 16:51:46 -0700432 $(call symlink-file,$(LOCAL_INSTALLED_MODULE),$(my_installed_module_stem),$(symlink)))
Colin Cross744d33b2016-07-14 16:02:57 -0700433
Colin Crossaaf888a2016-09-07 12:48:30 -0700434$(my_all_targets) : | $(my_installed_symlinks)
Colin Cross6d34b612016-08-24 15:20:23 -0700435
Ying Wang9fe15ac2015-08-20 12:02:10 -0700436endif # !LOCAL_UNINSTALLABLE_MODULE
Joe Onoratoe334d252009-07-17 15:33:40 -0400437
438###########################################################
439## CHECK_BUILD goals
440###########################################################
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700441my_checked_module :=
Joe Onoratoe334d252009-07-17 15:33:40 -0400442# If nobody has defined a more specific module for the
Ying Wang5a8d3452013-01-30 14:43:05 -0800443# checked modules, use LOCAL_BUILT_MODULE.
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700444ifdef LOCAL_CHECKED_MODULE
445 my_checked_module := $(LOCAL_CHECKED_MODULE)
446else
447 my_checked_module := $(LOCAL_BUILT_MODULE)
Joe Onoratoe334d252009-07-17 15:33:40 -0400448endif
449
450# If they request that this module not be checked, then don't.
451# PLEASE DON'T SET THIS. ANY PLACES THAT SET THIS WITHOUT
452# GOOD REASON WILL HAVE IT REMOVED.
453ifdef LOCAL_DONT_CHECK_MODULE
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700454 my_checked_module :=
Joe Onoratoe334d252009-07-17 15:33:40 -0400455endif
Ying Wang966c1e02014-05-20 14:43:51 -0700456# Don't check build target module defined for the 2nd arch
457ifndef LOCAL_IS_HOST_MODULE
Ying Wang6ef65192014-01-15 16:02:16 -0800458ifdef LOCAL_2ND_ARCH_VAR_PREFIX
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700459 my_checked_module :=
Ying Wang6ef65192014-01-15 16:02:16 -0800460endif
Ying Wang966c1e02014-05-20 14:43:51 -0700461endif
Joe Onoratoe334d252009-07-17 15:33:40 -0400462
The Android Open Source Project88b60792009-03-03 19:28:42 -0800463###########################################################
Simran Basi5691cb82017-12-04 14:44:16 -0800464## Test Data
465###########################################################
466my_test_data_pairs :=
467my_installed_test_data :=
468# Source to relative dst file paths for reuse in LOCAL_COMPATIBILITY_SUITE.
469my_test_data_file_pairs :=
470
471ifneq ($(filter NATIVE_TESTS,$(LOCAL_MODULE_CLASS)),)
472ifneq ($(strip $(LOCAL_TEST_DATA)),)
473ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
474
475my_test_data_pairs := $(strip $(foreach td,$(LOCAL_TEST_DATA), \
476 $(eval _file := $(call word-colon,2,$(td))) \
477 $(if $(_file), \
478 $(eval _src_base := $(call word-colon,1,$(td))), \
479 $(eval _src_base := $(LOCAL_PATH)) \
480 $(eval _file := $(call word-colon,1,$(td)))) \
481 $(if $(findstring ..,$(_file)),$(error $(LOCAL_MODULE_MAKEFILE): LOCAL_TEST_DATA may not include '..': $(_file))) \
482 $(if $(filter /%,$(_src_base) $(_file)),$(error $(LOCAL_MODULE_MAKEFILE): LOCAL_TEST_DATA may not include absolute paths: $(_src_base) $(_file))) \
483 $(eval my_test_data_file_pairs := $(my_test_data_file_pairs) $(call append-path,$(_src_base),$(_file)):$(_file)) \
484 $(call append-path,$(_src_base),$(_file)):$(call append-path,$(my_module_path),$(_file))))
485
486my_installed_test_data := $(call copy-many-files,$(my_test_data_pairs))
487$(LOCAL_INSTALLED_MODULE): $(my_installed_test_data)
488
489endif
490endif
491endif
492
493###########################################################
Simran Basi6bea37c2017-02-16 18:04:10 -0800494## Compatibility suite files.
Ying Wang16243612015-06-03 12:43:50 -0700495###########################################################
496ifdef LOCAL_COMPATIBILITY_SUITE
Simran Basi3fb354c2017-02-08 15:53:32 -0800497
Simran Basi8a431d92017-04-04 12:47:19 -0700498# If we are building a native test or benchmark and its stem variants are not defined,
499# separate the multiple architectures into subdirectories of the testcase folder.
500arch_dir :=
501is_native :=
Simran Basi7160b062018-01-08 12:25:18 -0800502multi_arch :=
Simran Basi8a431d92017-04-04 12:47:19 -0700503ifeq ($(LOCAL_MODULE_CLASS),NATIVE_TESTS)
504 is_native := true
Simran Basi7160b062018-01-08 12:25:18 -0800505 multi_arch := true
Simran Basi8a431d92017-04-04 12:47:19 -0700506endif
507ifeq ($(LOCAL_MODULE_CLASS),NATIVE_BENCHMARK)
508 is_native := true
Simran Basi7160b062018-01-08 12:25:18 -0800509 multi_arch := true
Simran Basi8a431d92017-04-04 12:47:19 -0700510endif
511ifdef LOCAL_MULTILIB
Simran Basi7160b062018-01-08 12:25:18 -0800512 multi_arch := true
Simran Basi8a431d92017-04-04 12:47:19 -0700513endif
Simran Basi7160b062018-01-08 12:25:18 -0800514ifdef multi_arch
Simran Basi8a431d92017-04-04 12:47:19 -0700515 arch_dir := /$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Simran Basi8a431d92017-04-04 12:47:19 -0700516endif
Simran Basi7160b062018-01-08 12:25:18 -0800517multi_arch :=
Simran Basi8a431d92017-04-04 12:47:19 -0700518
Ying Wang719f1982015-10-20 18:18:40 -0700519# The module itself.
Simran Basi6bea37c2017-02-16 18:04:10 -0800520$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
Simran Basi8a431d92017-04-04 12:47:19 -0700521 $(eval my_compat_dist_$(suite) := $(foreach dir, $(call compatibility_suite_dirs,$(suite),$(arch_dir)), \
Simran Basi6bea37c2017-02-16 18:04:10 -0800522 $(LOCAL_BUILT_MODULE):$(dir)/$(my_installed_module_stem))))
Ying Wang719f1982015-10-20 18:18:40 -0700523
524# Make sure we only add the files once for multilib modules.
525ifndef $(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_compat_files
526$(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_compat_files := true
527
Ying Wang25e01172015-09-17 12:24:56 -0700528# LOCAL_COMPATIBILITY_SUPPORT_FILES is a list of <src>[:<dest>].
Simran Basi6bea37c2017-02-16 18:04:10 -0800529$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
530 $(eval my_compat_dist_$(suite) += $(foreach f, $(LOCAL_COMPATIBILITY_SUPPORT_FILES), \
531 $(eval p := $(subst :,$(space),$(f))) \
532 $(eval s := $(word 1,$(p))) \
533 $(eval n := $(or $(word 2,$(p)),$(notdir $(word 1, $(p))))) \
534 $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \
535 $(s):$(dir)/$(n)))))
536
Dan Shiefb892d2017-12-06 15:57:31 -0800537test_config := $(wildcard $(LOCAL_PATH)/AndroidTest.xml)
538ifeq (,$(test_config))
539 ifneq (true,$(is_native))
540 is_instrumentation_test := true
541 ifeq (true, $(LOCAL_IS_HOST_MODULE))
542 is_instrumentation_test := false
543 endif
Dan Shi2035abf2018-01-08 14:16:51 -0800544 # If LOCAL_MODULE_CLASS is not APPS, it's certainly not an instrumentation
545 # test. However, some packages for test data also have LOCAL_MODULE_CLASS
546 # set to APPS. These will require flag LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG
547 # to disable auto-generating test config file.
548 ifneq (APPS, $(LOCAL_MODULE_CLASS))
549 is_instrumentation_test := false
550 endif
Dan Shiefb892d2017-12-06 15:57:31 -0800551 endif
552 # CTS modules can be used for test data, so test config files must be
553 # explicitly created using AndroidTest.xml
554 ifeq (,$(filter cts, $(LOCAL_COMPATIBILITY_SUITE)))
Dan Shi2035abf2018-01-08 14:16:51 -0800555 ifneq (true, $(LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG))
556 ifeq (true, $(filter true,$(is_native) $(is_instrumentation_test)))
557 include $(BUILD_SYSTEM)/autogen_test_config.mk
558 test_config := $(autogen_test_config_file)
559 autogen_test_config_file :=
560 endif
Dan Shiefb892d2017-12-06 15:57:31 -0800561 endif
562 endif
563endif
Ying Wang16243612015-06-03 12:43:50 -0700564
Dan Shiefb892d2017-12-06 15:57:31 -0800565is_instrumentation_test :=
566
567ifneq (,$(test_config))
Simran Basi6bea37c2017-02-16 18:04:10 -0800568$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
569 $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \
Dan Shiefb892d2017-12-06 15:57:31 -0800570 $(test_config):$(dir)/$(LOCAL_MODULE).config)))
Ying Wang562d7002015-06-04 11:21:49 -0700571endif
Ying Wang16243612015-06-03 12:43:50 -0700572
Dan Shiefb892d2017-12-06 15:57:31 -0800573test_config :=
574
Ying Wang25e01172015-09-17 12:24:56 -0700575ifneq (,$(wildcard $(LOCAL_PATH)/DynamicConfig.xml))
Simran Basi6bea37c2017-02-16 18:04:10 -0800576$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
577 $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \
578 $(LOCAL_PATH)/DynamicConfig.xml:$(dir)/$(LOCAL_MODULE).dynamic)))
Stuart Scott8fe4bc72015-08-18 14:31:08 -0700579endif
Simran Basi3e73e2b2017-04-19 16:10:45 -0700580
581ifneq (,$(wildcard $(LOCAL_PATH)/$(LOCAL_MODULE)_*.config))
582$(foreach extra_config, $(wildcard $(LOCAL_PATH)/$(LOCAL_MODULE)_*.config), \
583 $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
584 $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \
585 $(extra_config):$(dir)/$(notdir $(extra_config))))))
586endif
Ying Wang719f1982015-10-20 18:18:40 -0700587endif # $(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_compat_files
Stuart Scott8fe4bc72015-08-18 14:31:08 -0700588
Dan Shiefb892d2017-12-06 15:57:31 -0800589arch_dir :=
590is_native :=
591
Simran Basi5691cb82017-12-04 14:44:16 -0800592ifneq ($(my_test_data_file_pairs),)
593$(foreach pair, $(my_test_data_file_pairs), \
594 $(eval parts := $(subst :,$(space),$(pair))) \
595 $(eval src_path := $(word 1,$(parts))) \
596 $(eval file := $(word 2,$(parts))) \
597 $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
598 $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite),$(arch_dir)), \
599 $(src_path):$(call append-path,$(dir),$(file))))))
600endif
601
Simran Basi6bea37c2017-02-16 18:04:10 -0800602$(call create-suite-dependencies)
Ying Wang25e01172015-09-17 12:24:56 -0700603
Ying Wang16243612015-06-03 12:43:50 -0700604endif # LOCAL_COMPATIBILITY_SUITE
605
606###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800607## Register with ALL_MODULES
608###########################################################
609
Ying Wang6ef65192014-01-15 16:02:16 -0800610ALL_MODULES += $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800611
612# Don't use += on subvars, or else they'll end up being
613# recursively expanded.
Ying Wang6ef65192014-01-15 16:02:16 -0800614ALL_MODULES.$(my_register_name).CLASS := \
615 $(ALL_MODULES.$(my_register_name).CLASS) $(LOCAL_MODULE_CLASS)
616ALL_MODULES.$(my_register_name).PATH := \
617 $(ALL_MODULES.$(my_register_name).PATH) $(LOCAL_PATH)
618ALL_MODULES.$(my_register_name).TAGS := \
Ying Wang37bd1f22014-01-27 15:19:09 -0800619 $(ALL_MODULES.$(my_register_name).TAGS) $(my_module_tags)
Ying Wang6ef65192014-01-15 16:02:16 -0800620ALL_MODULES.$(my_register_name).CHECKED := \
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700621 $(ALL_MODULES.$(my_register_name).CHECKED) $(my_checked_module)
Ying Wang6ef65192014-01-15 16:02:16 -0800622ALL_MODULES.$(my_register_name).BUILT := \
623 $(ALL_MODULES.$(my_register_name).BUILT) $(LOCAL_BUILT_MODULE)
Ying Wang3380d3a2014-05-19 13:03:36 -0700624ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wang6ef65192014-01-15 16:02:16 -0800625ALL_MODULES.$(my_register_name).INSTALLED := \
Ying Wang9fe15ac2015-08-20 12:02:10 -0700626 $(strip $(ALL_MODULES.$(my_register_name).INSTALLED) \
Dan Willemsend07ba4e2016-12-09 16:05:09 -0800627 $(LOCAL_INSTALLED_MODULE) $(my_init_rc_installed) $(my_installed_symlinks) \
628 $(my_installed_test_data))
Ying Wang3380d3a2014-05-19 13:03:36 -0700629ALL_MODULES.$(my_register_name).BUILT_INSTALLED := \
Ying Wang9fe15ac2015-08-20 12:02:10 -0700630 $(strip $(ALL_MODULES.$(my_register_name).BUILT_INSTALLED) \
631 $(LOCAL_BUILT_MODULE):$(LOCAL_INSTALLED_MODULE) \
Dan Willemsend07ba4e2016-12-09 16:05:09 -0800632 $(my_init_rc_pairs) $(my_test_data_pairs))
Ying Wang3380d3a2014-05-19 13:03:36 -0700633endif
Ying Wang3b81aab2014-05-05 16:46:52 -0700634ifdef LOCAL_PICKUP_FILES
635# Files or directories ready to pick up by the build system
636# when $(LOCAL_BUILT_MODULE) is done.
637ALL_MODULES.$(my_register_name).PICKUP_FILES := \
638 $(ALL_MODULES.$(my_register_name).PICKUP_FILES) $(LOCAL_PICKUP_FILES)
639endif
Dan Willemsen7a549852015-08-13 17:51:40 -0700640my_required_modules := $(LOCAL_REQUIRED_MODULES) \
641 $(LOCAL_REQUIRED_MODULES_$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
642ifdef LOCAL_IS_HOST_MODULE
643my_required_modules += $(LOCAL_REQUIRED_MODULES_$($(my_prefix)OS))
644endif
Ying Wang6ef65192014-01-15 16:02:16 -0800645ALL_MODULES.$(my_register_name).REQUIRED := \
Dan Willemsen7a549852015-08-13 17:51:40 -0700646 $(strip $(ALL_MODULES.$(my_register_name).REQUIRED) $(my_required_modules))
Alex Deymo00dc6672017-01-05 08:54:46 -0800647ALL_MODULES.$(my_register_name).EXPLICITLY_REQUIRED := \
648 $(strip $(ALL_MODULES.$(my_register_name).EXPLICITLY_REQUIRED)\
649 $(my_required_modules))
Jeff Gaston9557cae2017-08-29 19:31:48 -0700650ALL_MODULES.$(my_register_name).TARGET_REQUIRED := \
651 $(strip $(ALL_MODULES.$(my_register_name).TARGET_REQUIRED)\
652 $(LOCAL_TARGET_REQUIRED_MODULES))
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900653ALL_MODULES.$(my_register_name).EVENT_LOG_TAGS := \
654 $(ALL_MODULES.$(my_register_name).EVENT_LOG_TAGS) $(event_log_tags)
Ying Wang6ef65192014-01-15 16:02:16 -0800655ALL_MODULES.$(my_register_name).MAKEFILE := \
656 $(ALL_MODULES.$(my_register_name).MAKEFILE) $(LOCAL_MODULE_MAKEFILE)
Ying Wangdbb31be2011-12-09 15:11:57 -0800657ifdef LOCAL_MODULE_OWNER
Ying Wang6ef65192014-01-15 16:02:16 -0800658ALL_MODULES.$(my_register_name).OWNER := \
659 $(sort $(ALL_MODULES.$(my_register_name).OWNER) $(LOCAL_MODULE_OWNER))
Ying Wangdbb31be2011-12-09 15:11:57 -0800660endif
Ying Wang14a6cbd2014-02-10 22:26:23 -0800661ifdef LOCAL_2ND_ARCH_VAR_PREFIX
662ALL_MODULES.$(my_register_name).FOR_2ND_ARCH := true
663endif
Dan Willemsen057aaea2015-08-14 12:59:50 -0700664ALL_MODULES.$(my_register_name).FOR_HOST_CROSS := $(my_host_cross)
Kevin Cheng22609182017-11-28 15:04:40 -0800665ALL_MODULES.$(my_register_name).COMPATIBILITY_SUITES := $(LOCAL_COMPATIBILITY_SUITE)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800666
Ying Wang6ef65192014-01-15 16:02:16 -0800667INSTALLABLE_FILES.$(LOCAL_INSTALLED_MODULE).MODULE := $(my_register_name)
Joe Onorato8a06bac2010-05-21 14:29:29 -0700668
Ying Wang39b9b692015-05-07 12:08:53 -0700669##########################################################
670# Track module-level dependencies.
671# Use $(LOCAL_MODULE) instead of $(my_register_name) to ignore module's bitness.
672ALL_DEPS.MODULES := $(sort $(ALL_DEPS.MODULES) $(LOCAL_MODULE))
673ALL_DEPS.$(LOCAL_MODULE).ALL_DEPS := $(sort \
674 $(ALL_MODULES.$(LOCAL_MODULE).ALL_DEPS) \
675 $(LOCAL_STATIC_LIBRARIES) \
676 $(LOCAL_WHOLE_STATIC_LIBRARIES) \
677 $(LOCAL_SHARED_LIBRARIES) \
Dan Willemsen8dae49c2017-02-15 15:48:11 -0800678 $(LOCAL_HEADER_LIBRARIES) \
Ying Wang39b9b692015-05-07 12:08:53 -0700679 $(LOCAL_STATIC_JAVA_LIBRARIES) \
680 $(LOCAL_JAVA_LIBRARIES)\
681 $(LOCAL_JNI_SHARED_LIBRARIES))
682
683ALL_DEPS.$(LOCAL_MODULE).LICENSE := $(sort $(ALL_DEPS.$(LOCAL_MODULE).LICENSE) $(license_files))
684
The Android Open Source Project88b60792009-03-03 19:28:42 -0800685###########################################################
Ying Wang37bd1f22014-01-27 15:19:09 -0800686## Take care of my_module_tags
The Android Open Source Project88b60792009-03-03 19:28:42 -0800687###########################################################
688
689# Keep track of all the tags we've seen.
Ying Wang37bd1f22014-01-27 15:19:09 -0800690ALL_MODULE_TAGS := $(sort $(ALL_MODULE_TAGS) $(my_module_tags))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800691
The Android Open Source Project88b60792009-03-03 19:28:42 -0800692# Add this module name to the tag list of each specified tag.
Ying Wang37bd1f22014-01-27 15:19:09 -0800693$(foreach tag,$(my_module_tags),\
Dan Willemsen44fd0f62017-10-09 18:01:50 -0700694 $(eval ALL_MODULE_NAME_TAGS.$(tag) := $$(ALL_MODULE_NAME_TAGS.$(tag)) $(my_register_name)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800695
The Android Open Source Project88b60792009-03-03 19:28:42 -0800696###########################################################
Ying Wangef4d82f2013-01-29 16:59:18 -0800697## umbrella targets used to verify builds
698###########################################################
Ying Wangef4d82f2013-01-29 16:59:18 -0800699j_or_n :=
Dan Willemsen8dae49c2017-02-15 15:48:11 -0800700ifneq (,$(filter EXECUTABLES SHARED_LIBRARIES STATIC_LIBRARIES HEADER_LIBRARIES NATIVE_TESTS,$(LOCAL_MODULE_CLASS)))
Ying Wangef4d82f2013-01-29 16:59:18 -0800701j_or_n := native
702else
703ifneq (,$(filter JAVA_LIBRARIES APPS,$(LOCAL_MODULE_CLASS)))
704j_or_n := java
Ying Wangef4d82f2013-01-29 16:59:18 -0800705endif
706endif
707ifdef LOCAL_IS_HOST_MODULE
708h_or_t := host
Colin Crossd76e2e62016-12-09 13:08:27 -0800709ifeq ($(my_host_cross),true)
710h_or_hc_or_t := host-cross
Ying Wangef4d82f2013-01-29 16:59:18 -0800711else
Colin Crossd76e2e62016-12-09 13:08:27 -0800712h_or_hc_or_t := host
713endif
714else
715h_or_hc_or_t := target
Ying Wangef4d82f2013-01-29 16:59:18 -0800716h_or_t := target
717endif
718
Colin Crossd76e2e62016-12-09 13:08:27 -0800719
Ying Wangef4d82f2013-01-29 16:59:18 -0800720ifdef j_or_n
Dan Willemsenc01ad7b2017-11-29 20:54:41 -0800721$(j_or_n) $(h_or_t) $(j_or_n)-$(h_or_hc_or_t) : $(my_checked_module)
Ying Wang37bd1f22014-01-27 15:19:09 -0800722ifneq (,$(filter $(my_module_tags),tests))
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700723$(j_or_n)-$(h_or_t)-tests $(j_or_n)-tests $(h_or_t)-tests : $(my_checked_module)
Ying Wangef4d82f2013-01-29 16:59:18 -0800724endif
Colin Crossd76e2e62016-12-09 13:08:27 -0800725$(LOCAL_MODULE)-$(h_or_hc_or_t) : $(my_all_targets)
726ifeq ($(j_or_n),native)
727$(LOCAL_MODULE)-$(h_or_hc_or_t)$(my_32_64_bit_suffix) : $(my_all_targets)
728endif
Ying Wangef4d82f2013-01-29 16:59:18 -0800729endif
730
731###########################################################
Nicolas Geoffrayb06c30b2017-09-19 11:51:45 +0000732# Ensure privileged applications always have LOCAL_PRIVILEGED_MODULE
733###########################################################
734ifndef LOCAL_PRIVILEGED_MODULE
735 ifneq (,$(filter $(TARGET_OUT_APPS_PRIVILEGED)/% $(TARGET_OUT_VENDOR_APPS_PRIVILEGED)/%,$(my_module_path)))
736 LOCAL_PRIVILEGED_MODULE := true
737 endif
738endif
739
740###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800741## NOTICE files
742###########################################################
743
Ying Wang13d69502012-11-01 17:22:33 -0700744include $(BUILD_NOTICE_FILE)