blob: 21b59a3b7ecacbdb86b7d356e7dde57a1552e0be [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
17# Users can define base-rules-hook in their buildspec.mk to perform
18# arbitrary operations as each module is included.
19ifdef base-rules-hook
20$(if $(base-rules-hook),)
21endif
22
23###########################################################
24## Common instructions for a generic module.
25###########################################################
26
27LOCAL_MODULE := $(strip $(LOCAL_MODULE))
28ifeq ($(LOCAL_MODULE),)
29 $(error $(LOCAL_PATH): LOCAL_MODULE is not defined)
30endif
31
32LOCAL_IS_HOST_MODULE := $(strip $(LOCAL_IS_HOST_MODULE))
33ifdef LOCAL_IS_HOST_MODULE
34 ifneq ($(LOCAL_IS_HOST_MODULE),true)
35 $(error $(LOCAL_PATH): LOCAL_IS_HOST_MODULE must be "true" or empty, not "$(LOCAL_IS_HOST_MODULE)")
36 endif
Dan Willemsen057aaea2015-08-14 12:59:50 -070037 ifeq ($(LOCAL_HOST_PREFIX),)
38 my_prefix := HOST_
39 else
40 my_prefix := $(LOCAL_HOST_PREFIX)
41 endif
Ying Wang13d69502012-11-01 17:22:33 -070042 my_host := host-
The Android Open Source Project88b60792009-03-03 19:28:42 -080043else
Ying Wang13d69502012-11-01 17:22:33 -070044 my_prefix := TARGET_
45 my_host :=
The Android Open Source Project88b60792009-03-03 19:28:42 -080046endif
47
Dan Willemsen057aaea2015-08-14 12:59:50 -070048ifeq ($(my_prefix),HOST_CROSS_)
49 my_host_cross := true
50else
51 my_host_cross :=
52endif
53
Ying Wang37bd1f22014-01-27 15:19:09 -080054my_module_tags := $(LOCAL_MODULE_TAGS)
Dan Willemsen057aaea2015-08-14 12:59:50 -070055ifeq ($(my_host_cross),true)
56 my_module_tags :=
57endif
Ying Wang37bd1f22014-01-27 15:19:09 -080058
The Android Open Source Project88b60792009-03-03 19:28:42 -080059###########################################################
60## Validate and define fallbacks for input LOCAL_* variables.
61###########################################################
62
63## Dump a .csv file of all modules and their tags
64#ifneq ($(tag-list-first-time),false)
65#$(shell rm -f tag-list.csv)
66#tag-list-first-time := false
67#endif
Ying Wang37bd1f22014-01-27 15:19:09 -080068#$(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 -080069
Ying Wang6e371e42012-05-15 14:31:26 -070070LOCAL_UNINSTALLABLE_MODULE := $(strip $(LOCAL_UNINSTALLABLE_MODULE))
Ying Wang37bd1f22014-01-27 15:19:09 -080071my_module_tags := $(sort $(my_module_tags))
72ifeq (,$(my_module_tags))
73 my_module_tags := optional
Ying Wang2fd81cf2010-12-10 11:17:28 -080074endif
Joe Onorato918ee312012-05-18 20:43:14 -070075
Joe Onorato6a185e42012-05-22 14:08:50 -070076# User tags are not allowed anymore. Fail early because it will not be installed
77# like it used to be.
Ying Wang37bd1f22014-01-27 15:19:09 -080078ifneq ($(filter $(my_module_tags),user),)
Joe Onorato6a185e42012-05-22 14:08:50 -070079 $(warning *** Module name: $(LOCAL_MODULE))
80 $(warning *** Makefile location: $(LOCAL_MODULE_MAKEFILE))
81 $(warning * )
82 $(warning * Module is attempting to use the 'user' tag. This)
83 $(warning * used to cause the module to be installed automatically.)
84 $(warning * Now, the module must be listed in the PRODUCT_PACKAGES)
85 $(warning * section of a product makefile to have it installed.)
86 $(warning * )
87 $(error user tag detected on module.)
88endif
The Android Open Source Project88b60792009-03-03 19:28:42 -080089
Jean-Baptiste Querua831cbd2010-01-07 11:06:50 -080090# Only the tags mentioned in this test are expected to be set by module
91# makefiles. Anything else is either a typo or a source of unexpected
92# behaviors.
Ying Wang37bd1f22014-01-27 15:19:09 -080093ifneq ($(filter-out debug eng tests optional samples,$(my_module_tags)),)
94$(warning unusual tags $(my_module_tags) on $(LOCAL_MODULE) at $(LOCAL_PATH))
Jean-Baptiste Querua831cbd2010-01-07 11:06:50 -080095endif
96
The Android Open Source Project88b60792009-03-03 19:28:42 -080097# Add implicit tags.
98#
99# If the local directory or one of its parents contains a MODULE_LICENSE_GPL
Andrew Boie08a943b2013-12-10 13:52:00 -0800100# file, tag the module as "gnu". Search for "*_GPL*", "*_LGPL*" and "*_MPL*"
101# so that we can also find files like MODULE_LICENSE_GPL_AND_AFL
The Android Open Source Project88b60792009-03-03 19:28:42 -0800102#
Ying Wang39b9b692015-05-07 12:08:53 -0700103license_files := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*)
Andrew Boie08a943b2013-12-10 13:52:00 -0800104gpl_license_file := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*_GPL* MODULE_LICENSE*_MPL* MODULE_LICENSE*_LGPL*)
Ying Wangfd626f22011-12-12 12:57:38 -0800105ifneq ($(gpl_license_file),)
Ying Wang37bd1f22014-01-27 15:19:09 -0800106 my_module_tags += gnu
Ying Wangfd626f22011-12-12 12:57:38 -0800107 ALL_GPL_MODULE_LICENSE_FILES := $(sort $(ALL_GPL_MODULE_LICENSE_FILES) $(gpl_license_file))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800108endif
109
The Android Open Source Project88b60792009-03-03 19:28:42 -0800110LOCAL_MODULE_CLASS := $(strip $(LOCAL_MODULE_CLASS))
111ifneq ($(words $(LOCAL_MODULE_CLASS)),1)
112 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS must contain exactly one word, not "$(LOCAL_MODULE_CLASS)")
113endif
114
Ying Wang6feb6d52014-04-17 10:03:35 -0700115my_32_64_bit_suffix := $(if $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)IS_64_BIT),64,32)
Colin Cross87974052014-03-21 12:25:44 -0700116
Ying Wang6e371e42012-05-15 14:31:26 -0700117ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Colin Cross87974052014-03-21 12:25:44 -0700118my_multilib_module_path := $(strip $(LOCAL_MODULE_PATH_$(my_32_64_bit_suffix)))
Colin Cross87974052014-03-21 12:25:44 -0700119ifdef my_multilib_module_path
120my_module_path := $(my_multilib_module_path)
121else
Ying Wangb8e01852014-01-23 15:09:04 -0800122my_module_path := $(strip $(LOCAL_MODULE_PATH))
Colin Cross87974052014-03-21 12:25:44 -0700123endif
Colin Cross639c3362014-01-24 19:23:40 -0800124my_module_relative_path := $(strip $(LOCAL_MODULE_RELATIVE_PATH))
Ying Wangb8e01852014-01-23 15:09:04 -0800125ifeq ($(my_module_path),)
Ying Wang5338fbf2013-05-08 15:49:08 -0700126 ifdef LOCAL_IS_HOST_MODULE
127 partition_tag :=
128 else
129 ifeq (true,$(LOCAL_PROPRIETARY_MODULE))
130 partition_tag := _VENDOR
Ying Wangb8888432014-03-11 17:13:27 -0700131 else ifeq (true,$(LOCAL_OEM_MODULE))
132 partition_tag := _OEM
Ying Wang4540a852015-03-12 18:30:39 -0700133 else ifeq (true,$(LOCAL_ODM_MODULE))
134 partition_tag := _ODM
Ying Wang5338fbf2013-05-08 15:49:08 -0700135 else
136 # The definition of should-install-to-system will be different depending
137 # on which goal (e.g., sdk or just droid) is being built.
Ying Wang37bd1f22014-01-27 15:19:09 -0800138 partition_tag := $(if $(call should-install-to-system,$(my_module_tags)),,_DATA)
Ying Wang5338fbf2013-05-08 15:49:08 -0700139 endif
140 endif
Ying Wang6ef65192014-01-15 16:02:16 -0800141 install_path_var := $(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT$(partition_tag)_$(LOCAL_MODULE_CLASS)
Ying Wang5338fbf2013-05-08 15:49:08 -0700142 ifeq (true,$(LOCAL_PRIVILEGED_MODULE))
143 install_path_var := $(install_path_var)_PRIVILEGED
144 endif
145
Colin Crossb34911c2014-01-22 17:34:28 -0800146 my_module_path := $($(install_path_var))
Ying Wangb8e01852014-01-23 15:09:04 -0800147 ifeq ($(strip $(my_module_path)),)
148 $(error $(LOCAL_PATH): unhandled install path "$(install_path_var) for $(LOCAL_MODULE)")
The Android Open Source Project88b60792009-03-03 19:28:42 -0800149 endif
150endif
Colin Cross639c3362014-01-24 19:23:40 -0800151ifneq ($(my_module_relative_path),)
152 my_module_path := $(my_module_path)/$(my_module_relative_path)
153endif
Ying Wang6e371e42012-05-15 14:31:26 -0700154endif # not LOCAL_UNINSTALLABLE_MODULE
The Android Open Source Project88b60792009-03-03 19:28:42 -0800155
156ifneq ($(strip $(LOCAL_BUILT_MODULE)$(LOCAL_INSTALLED_MODULE)),)
157 $(error $(LOCAL_PATH): LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE must not be defined by component makefiles)
158endif
159
Ying Wang6ef65192014-01-15 16:02:16 -0800160my_register_name := $(LOCAL_MODULE)
161ifdef LOCAL_2ND_ARCH_VAR_PREFIX
Colin Crossaee1e772014-02-04 11:16:16 -0800162ifndef LOCAL_NO_2ND_ARCH_MODULE_SUFFIX
Ying Wang6feb6d52014-04-17 10:03:35 -0700163my_register_name := $(LOCAL_MODULE)$($(my_prefix)2ND_ARCH_MODULE_SUFFIX)
Ying Wang6ef65192014-01-15 16:02:16 -0800164endif
Colin Crossaee1e772014-02-04 11:16:16 -0800165endif
Dan Willemsen057aaea2015-08-14 12:59:50 -0700166ifeq ($(my_host_cross),true)
167 my_register_name := host_cross_$(LOCAL_MODULE)
168endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800169# Make sure that this IS_HOST/CLASS/MODULE combination is unique.
170module_id := MODULE.$(if \
Dan Willemsen057aaea2015-08-14 12:59:50 -0700171 $(LOCAL_IS_HOST_MODULE),$($(my_prefix)OS),TARGET).$(LOCAL_MODULE_CLASS).$(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800172ifdef $(module_id)
173$(error $(LOCAL_PATH): $(module_id) already defined by $($(module_id)))
174endif
175$(module_id) := $(LOCAL_PATH)
176
Dan Willemsen057aaea2015-08-14 12:59:50 -0700177intermediates := $(call local-intermediates-dir,,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800178intermediates.COMMON := $(call local-intermediates-dir,COMMON)
Colin Crossd8262642014-01-24 23:17:21 -0800179generated_sources_dir := $(call local-generated-sources-dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800180
181###########################################################
182# Pick a name for the intermediate and final targets
183###########################################################
Colin Cross5a9db902014-03-21 12:27:37 -0700184include $(BUILD_SYSTEM)/configure_module_stem.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -0800185
186# OVERRIDE_BUILT_MODULE_PATH is only allowed to be used by the
187# internal SHARED_LIBRARIES build files.
188OVERRIDE_BUILT_MODULE_PATH := $(strip $(OVERRIDE_BUILT_MODULE_PATH))
189ifdef OVERRIDE_BUILT_MODULE_PATH
190 ifneq ($(LOCAL_MODULE_CLASS),SHARED_LIBRARIES)
191 $(error $(LOCAL_PATH): Illegal use of OVERRIDE_BUILT_MODULE_PATH)
192 endif
193 built_module_path := $(OVERRIDE_BUILT_MODULE_PATH)
194else
195 built_module_path := $(intermediates)
196endif
Ying Wang966c1e02014-05-20 14:43:51 -0700197LOCAL_BUILT_MODULE := $(built_module_path)/$(my_built_module_stem)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800198
Ying Wang162991b2011-09-07 10:21:42 -0700199ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wangaf9757e2014-07-17 21:24:42 -0700200 # Apk and its attachments reside in its own subdir.
201 ifeq ($(LOCAL_MODULE_CLASS),APPS)
202 # framework-res.apk doesn't like the additional layer.
203 ifneq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
204 my_module_path := $(my_module_path)/$(LOCAL_MODULE)
205 endif
206 endif
Ying Wang966c1e02014-05-20 14:43:51 -0700207 LOCAL_INSTALLED_MODULE := $(my_module_path)/$(my_installed_module_stem)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800208endif
209
210# Assemble the list of targets to create PRIVATE_ variables for.
211LOCAL_INTERMEDIATE_TARGETS += $(LOCAL_BUILT_MODULE)
212
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900213###########################################################
214## logtags: Add .logtags files to global list
215###########################################################
216
217logtags_sources := $(filter %.logtags,$(LOCAL_SRC_FILES))
218
219ifneq ($(strip $(logtags_sources)),)
220event_log_tags := $(addprefix $(LOCAL_PATH)/,$(logtags_sources))
221else
222event_log_tags :=
223endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800224
225###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800226## make clean- targets
227###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800228cleantarget := clean-$(my_register_name)
229$(cleantarget) : PRIVATE_MODULE := $(my_register_name)
Ying Wang4d063412013-03-22 18:52:57 -0700230$(cleantarget) : PRIVATE_CLEAN_FILES := \
Ying Wang95221ca2012-11-07 14:07:34 -0800231 $(LOCAL_BUILT_MODULE) \
232 $(LOCAL_INSTALLED_MODULE) \
233 $(intermediates)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800234$(cleantarget)::
235 @echo "Clean: $(PRIVATE_MODULE)"
236 $(hide) rm -rf $(PRIVATE_CLEAN_FILES)
237
238###########################################################
239## Common definitions for module.
240###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800241$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_PATH:=$(LOCAL_PATH)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800242$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_IS_HOST_MODULE := $(LOCAL_IS_HOST_MODULE)
243$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_HOST:= $(my_host)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700244$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_PREFIX := $(my_prefix)
245
Dima Zavin46e9bec2009-05-27 19:41:07 -0700246$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_INTERMEDIATES_DIR:= $(intermediates)
Ying Wang6feb6d52014-04-17 10:03:35 -0700247$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_2ND_ARCH_VAR_PREFIX := $(LOCAL_2ND_ARCH_VAR_PREFIX)
248
The Android Open Source Project88b60792009-03-03 19:28:42 -0800249# Tell the module and all of its sub-modules who it is.
Ying Wang6ef65192014-01-15 16:02:16 -0800250$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_MODULE:= $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800251
252# Provide a short-hand for building this module.
253# We name both BUILT and INSTALLED in case
254# LOCAL_UNINSTALLABLE_MODULE is set.
Ying Wang6ef65192014-01-15 16:02:16 -0800255.PHONY: $(my_register_name)
256$(my_register_name): $(LOCAL_BUILT_MODULE) $(LOCAL_INSTALLED_MODULE)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800257
Ying Wangcaeaa082015-09-23 16:08:55 -0700258# Set up phony targets that covers all modules under the given paths.
259# This allows us to build everything in given paths by running mmma/mma.
260my_path_components := $(subst /,$(space),$(LOCAL_PATH))
261my_path_prefix := MODULES-IN
262$(foreach c, $(my_path_components),\
Ying Wang61cd8842015-09-24 16:19:19 -0700263 $(eval my_path_prefix := $(my_path_prefix)-$(c))\
Ying Wangcaeaa082015-09-23 16:08:55 -0700264 $(eval .PHONY : $(my_path_prefix))\
265 $(eval $(my_path_prefix) : $(my_register_name)))
266
The Android Open Source Project88b60792009-03-03 19:28:42 -0800267###########################################################
268## Module installation rule
269###########################################################
270
271# Some hosts do not have ACP; override the LOCAL version if that's the case.
272ifneq ($(strip $(HOST_ACP_UNAVAILABLE)),)
273 LOCAL_ACP_UNAVAILABLE := $(strip $(HOST_ACP_UNAVAILABLE))
274endif
275
276ifndef LOCAL_UNINSTALLABLE_MODULE
277 # Define a copy rule to install the module.
278 # acp and libraries that it uses can't use acp for
279 # installation; hence, LOCAL_ACP_UNAVAILABLE.
Ying Wange56605a2013-02-06 11:44:41 -0800280$(LOCAL_INSTALLED_MODULE): PRIVATE_POST_INSTALL_CMD := $(LOCAL_POST_INSTALL_CMD)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800281ifneq ($(LOCAL_ACP_UNAVAILABLE),true)
282$(LOCAL_INSTALLED_MODULE): $(LOCAL_BUILT_MODULE) | $(ACP)
283 @echo "Install: $@"
Ying Wang84ed6fa2011-01-18 17:21:20 -0800284 $(copy-file-to-new-target)
Ying Wange56605a2013-02-06 11:44:41 -0800285 $(PRIVATE_POST_INSTALL_CMD)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800286else
287$(LOCAL_INSTALLED_MODULE): $(LOCAL_BUILT_MODULE)
288 @echo "Install: $@"
289 $(copy-file-to-target-with-cp)
290endif
291
Ying Wang9fe15ac2015-08-20 12:02:10 -0700292# Rule to install the module's companion init.rc.
293my_init_rc := $(LOCAL_INIT_RC_$(my_32_64_bit_suffix))
294my_init_rc_src :=
295my_init_rc_installed :=
296ifndef my_init_rc
297my_init_rc := $(LOCAL_INIT_RC)
298# Make sure we don't define the rule twice in multilib module.
299LOCAL_INIT_RC :=
300endif
301ifdef my_init_rc
302my_init_rc_src := $(LOCAL_PATH)/$(my_init_rc)
303my_init_rc_installed := $(TARGET_OUT$(partition_tag)_ETC)/init/$(notdir $(my_init_rc_src))
304$(my_init_rc_installed) : $(my_init_rc_src) | $(ACP)
305 @echo "Install: $@"
306 $(copy-file-to-new-target)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800307
Ying Wang9fe15ac2015-08-20 12:02:10 -0700308$(my_register_name) : $(my_init_rc_installed)
309endif # my_init_rc
310endif # !LOCAL_UNINSTALLABLE_MODULE
Joe Onoratoe334d252009-07-17 15:33:40 -0400311
312###########################################################
313## CHECK_BUILD goals
314###########################################################
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700315my_checked_module :=
Joe Onoratoe334d252009-07-17 15:33:40 -0400316# If nobody has defined a more specific module for the
Ying Wang5a8d3452013-01-30 14:43:05 -0800317# checked modules, use LOCAL_BUILT_MODULE.
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700318ifdef LOCAL_CHECKED_MODULE
319 my_checked_module := $(LOCAL_CHECKED_MODULE)
320else
321 my_checked_module := $(LOCAL_BUILT_MODULE)
Joe Onoratoe334d252009-07-17 15:33:40 -0400322endif
323
324# If they request that this module not be checked, then don't.
325# PLEASE DON'T SET THIS. ANY PLACES THAT SET THIS WITHOUT
326# GOOD REASON WILL HAVE IT REMOVED.
327ifdef LOCAL_DONT_CHECK_MODULE
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700328 my_checked_module :=
Joe Onoratoe334d252009-07-17 15:33:40 -0400329endif
Ying Wang966c1e02014-05-20 14:43:51 -0700330# Don't check build target module defined for the 2nd arch
331ifndef LOCAL_IS_HOST_MODULE
Ying Wang6ef65192014-01-15 16:02:16 -0800332ifdef LOCAL_2ND_ARCH_VAR_PREFIX
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700333 my_checked_module :=
Ying Wang6ef65192014-01-15 16:02:16 -0800334endif
Ying Wang966c1e02014-05-20 14:43:51 -0700335endif
Joe Onoratoe334d252009-07-17 15:33:40 -0400336
The Android Open Source Project88b60792009-03-03 19:28:42 -0800337###########################################################
338## Register with ALL_MODULES
339###########################################################
340
Ying Wang6ef65192014-01-15 16:02:16 -0800341ALL_MODULES += $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800342
343# Don't use += on subvars, or else they'll end up being
344# recursively expanded.
Ying Wang6ef65192014-01-15 16:02:16 -0800345ALL_MODULES.$(my_register_name).CLASS := \
346 $(ALL_MODULES.$(my_register_name).CLASS) $(LOCAL_MODULE_CLASS)
347ALL_MODULES.$(my_register_name).PATH := \
348 $(ALL_MODULES.$(my_register_name).PATH) $(LOCAL_PATH)
349ALL_MODULES.$(my_register_name).TAGS := \
Ying Wang37bd1f22014-01-27 15:19:09 -0800350 $(ALL_MODULES.$(my_register_name).TAGS) $(my_module_tags)
Ying Wang6ef65192014-01-15 16:02:16 -0800351ALL_MODULES.$(my_register_name).CHECKED := \
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700352 $(ALL_MODULES.$(my_register_name).CHECKED) $(my_checked_module)
Ying Wang6ef65192014-01-15 16:02:16 -0800353ALL_MODULES.$(my_register_name).BUILT := \
354 $(ALL_MODULES.$(my_register_name).BUILT) $(LOCAL_BUILT_MODULE)
Ying Wang3380d3a2014-05-19 13:03:36 -0700355ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wang6ef65192014-01-15 16:02:16 -0800356ALL_MODULES.$(my_register_name).INSTALLED := \
Ying Wang9fe15ac2015-08-20 12:02:10 -0700357 $(strip $(ALL_MODULES.$(my_register_name).INSTALLED) \
358 $(LOCAL_INSTALLED_MODULE) $(my_init_rc_installed))
Ying Wang3380d3a2014-05-19 13:03:36 -0700359ALL_MODULES.$(my_register_name).BUILT_INSTALLED := \
Ying Wang9fe15ac2015-08-20 12:02:10 -0700360 $(strip $(ALL_MODULES.$(my_register_name).BUILT_INSTALLED) \
361 $(LOCAL_BUILT_MODULE):$(LOCAL_INSTALLED_MODULE) \
362 $(addprefix $(my_init_rc_src):,$(my_init_rc_installed)))
Ying Wang3380d3a2014-05-19 13:03:36 -0700363endif
Ying Wang3b81aab2014-05-05 16:46:52 -0700364ifdef LOCAL_PICKUP_FILES
365# Files or directories ready to pick up by the build system
366# when $(LOCAL_BUILT_MODULE) is done.
367ALL_MODULES.$(my_register_name).PICKUP_FILES := \
368 $(ALL_MODULES.$(my_register_name).PICKUP_FILES) $(LOCAL_PICKUP_FILES)
369endif
Dan Willemsen7a549852015-08-13 17:51:40 -0700370my_required_modules := $(LOCAL_REQUIRED_MODULES) \
371 $(LOCAL_REQUIRED_MODULES_$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
372ifdef LOCAL_IS_HOST_MODULE
373my_required_modules += $(LOCAL_REQUIRED_MODULES_$($(my_prefix)OS))
374endif
Ying Wang6ef65192014-01-15 16:02:16 -0800375ALL_MODULES.$(my_register_name).REQUIRED := \
Dan Willemsen7a549852015-08-13 17:51:40 -0700376 $(strip $(ALL_MODULES.$(my_register_name).REQUIRED) $(my_required_modules))
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900377ALL_MODULES.$(my_register_name).EVENT_LOG_TAGS := \
378 $(ALL_MODULES.$(my_register_name).EVENT_LOG_TAGS) $(event_log_tags)
Ying Wang6ef65192014-01-15 16:02:16 -0800379ALL_MODULES.$(my_register_name).MAKEFILE := \
380 $(ALL_MODULES.$(my_register_name).MAKEFILE) $(LOCAL_MODULE_MAKEFILE)
Ying Wangdbb31be2011-12-09 15:11:57 -0800381ifdef LOCAL_MODULE_OWNER
Ying Wang6ef65192014-01-15 16:02:16 -0800382ALL_MODULES.$(my_register_name).OWNER := \
383 $(sort $(ALL_MODULES.$(my_register_name).OWNER) $(LOCAL_MODULE_OWNER))
Ying Wangdbb31be2011-12-09 15:11:57 -0800384endif
Ying Wang14a6cbd2014-02-10 22:26:23 -0800385ifdef LOCAL_2ND_ARCH_VAR_PREFIX
386ALL_MODULES.$(my_register_name).FOR_2ND_ARCH := true
387endif
Dan Willemsen057aaea2015-08-14 12:59:50 -0700388ALL_MODULES.$(my_register_name).FOR_HOST_CROSS := $(my_host_cross)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800389
Ying Wang6ef65192014-01-15 16:02:16 -0800390INSTALLABLE_FILES.$(LOCAL_INSTALLED_MODULE).MODULE := $(my_register_name)
Joe Onorato8a06bac2010-05-21 14:29:29 -0700391
Ying Wang39b9b692015-05-07 12:08:53 -0700392##########################################################
393# Track module-level dependencies.
394# Use $(LOCAL_MODULE) instead of $(my_register_name) to ignore module's bitness.
395ALL_DEPS.MODULES := $(sort $(ALL_DEPS.MODULES) $(LOCAL_MODULE))
396ALL_DEPS.$(LOCAL_MODULE).ALL_DEPS := $(sort \
397 $(ALL_MODULES.$(LOCAL_MODULE).ALL_DEPS) \
398 $(LOCAL_STATIC_LIBRARIES) \
399 $(LOCAL_WHOLE_STATIC_LIBRARIES) \
400 $(LOCAL_SHARED_LIBRARIES) \
401 $(LOCAL_STATIC_JAVA_LIBRARIES) \
402 $(LOCAL_JAVA_LIBRARIES)\
403 $(LOCAL_JNI_SHARED_LIBRARIES))
404
405ALL_DEPS.$(LOCAL_MODULE).LICENSE := $(sort $(ALL_DEPS.$(LOCAL_MODULE).LICENSE) $(license_files))
406
The Android Open Source Project88b60792009-03-03 19:28:42 -0800407###########################################################
Ying Wang37bd1f22014-01-27 15:19:09 -0800408## Take care of my_module_tags
The Android Open Source Project88b60792009-03-03 19:28:42 -0800409###########################################################
410
411# Keep track of all the tags we've seen.
Ying Wang37bd1f22014-01-27 15:19:09 -0800412ALL_MODULE_TAGS := $(sort $(ALL_MODULE_TAGS) $(my_module_tags))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800413
The Android Open Source Project88b60792009-03-03 19:28:42 -0800414# Add this module name to the tag list of each specified tag.
Ying Wang37bd1f22014-01-27 15:19:09 -0800415$(foreach tag,$(my_module_tags),\
Ying Wang6ef65192014-01-15 16:02:16 -0800416 $(eval ALL_MODULE_NAME_TAGS.$(tag) += $(my_register_name)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800417
The Android Open Source Project88b60792009-03-03 19:28:42 -0800418###########################################################
Ying Wangef4d82f2013-01-29 16:59:18 -0800419## umbrella targets used to verify builds
420###########################################################
Ying Wangef4d82f2013-01-29 16:59:18 -0800421j_or_n :=
422ifneq (,$(filter EXECUTABLES SHARED_LIBRARIES STATIC_LIBRARIES,$(LOCAL_MODULE_CLASS)))
423j_or_n := native
424else
425ifneq (,$(filter JAVA_LIBRARIES APPS,$(LOCAL_MODULE_CLASS)))
426j_or_n := java
Ying Wangef4d82f2013-01-29 16:59:18 -0800427endif
428endif
429ifdef LOCAL_IS_HOST_MODULE
430h_or_t := host
431else
432h_or_t := target
433endif
434
435ifdef j_or_n
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700436$(j_or_n) $(h_or_t) $(j_or_n)-$(h_or_t) : $(my_checked_module)
Ying Wang37bd1f22014-01-27 15:19:09 -0800437ifneq (,$(filter $(my_module_tags),tests))
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700438$(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 -0800439endif
440endif
441
442###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800443## NOTICE files
444###########################################################
445
Ying Wang13d69502012-11-01 17:22:33 -0700446include $(BUILD_NOTICE_FILE)