blob: 63c6c52627722e7adbd13a1df56382a6d4a97bcd [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
Jaekyun Seokb7735d82017-11-27 17:04:47 +090075else ifneq ($(filter $(TARGET_OUT_PRODUCT)/%,$(_path)),)
76LOCAL_PRODUCT_MODULE := true
Jiyong Park003ea362017-11-15 18:22:14 +090077endif
78_path :=
79
Dan Willemsen05a2b932017-03-20 18:31:17 -070080ifndef LOCAL_PROPRIETARY_MODULE
81 LOCAL_PROPRIETARY_MODULE := $(LOCAL_VENDOR_MODULE)
82endif
83ifndef LOCAL_VENDOR_MODULE
84 LOCAL_VENDOR_MODULE := $(LOCAL_PROPRIETARY_MODULE)
85endif
86ifneq ($(filter-out $(LOCAL_PROPRIETARY_MODULE),$(LOCAL_VENDOR_MODULE))$(filter-out $(LOCAL_VENDOR_MODULE),$(LOCAL_PROPRIETARY_MODULE)),)
87$(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)
88endif
89
Dan Willemsenbab0fa62016-11-18 14:05:39 -080090include $(BUILD_SYSTEM)/local_vndk.mk
Jiyong Park641b6cc2018-01-15 14:48:40 +090091include $(BUILD_SYSTEM)/local_systemsdk.mk
Dan Willemsenbab0fa62016-11-18 14:05:39 -080092
Ying Wang37bd1f22014-01-27 15:19:09 -080093my_module_tags := $(LOCAL_MODULE_TAGS)
Dan Willemsen057aaea2015-08-14 12:59:50 -070094ifeq ($(my_host_cross),true)
95 my_module_tags :=
96endif
Ying Wang87538e42016-03-16 19:53:19 -070097ifeq ($(TARGET_TRANSLATE_2ND_ARCH),true)
98ifdef LOCAL_2ND_ARCH_VAR_PREFIX
99# Don't pull in modules by tags if this is for translation TARGET_2ND_ARCH.
100 my_module_tags :=
101endif
102endif
Ying Wang37bd1f22014-01-27 15:19:09 -0800103
Colin Crossa4447e82015-09-28 16:26:00 -0700104# Ninja has an implicit dependency on the command being run, and kati will
105# regenerate the ninja manifest if any read makefile changes, so there is no
106# need to have dependencies on makefiles.
107# This won't catch all the cases where LOCAL_ADDITIONAL_DEPENDENCIES contains
108# a .mk file, because a few users of LOCAL_ADDITIONAL_DEPENDENCIES don't include
109# base_rules.mk, but it will fix the most common ones.
110LOCAL_ADDITIONAL_DEPENDENCIES := $(filter-out %.mk,$(LOCAL_ADDITIONAL_DEPENDENCIES))
Colin Crossa4447e82015-09-28 16:26:00 -0700111
Dan Willemsen0c821a92017-10-23 22:14:21 -0700112my_bad_deps := $(strip $(foreach dep,$(filter-out | ||,$(LOCAL_ADDITIONAL_DEPENDENCIES)),\
113 $(if $(findstring /,$(dep)),,$(dep))))
114ifneq ($(my_bad_deps),)
115$(call pretty-warning,"Bad LOCAL_ADDITIONAL_DEPENDENCIES: $(my_bad_deps)")
116$(call pretty-error,"LOCAL_ADDITIONAL_DEPENDENCIES must only contain paths (not module names)")
117endif
118
The Android Open Source Project88b60792009-03-03 19:28:42 -0800119###########################################################
120## Validate and define fallbacks for input LOCAL_* variables.
121###########################################################
122
123## Dump a .csv file of all modules and their tags
124#ifneq ($(tag-list-first-time),false)
125#$(shell rm -f tag-list.csv)
126#tag-list-first-time := false
127#endif
Ying Wang37bd1f22014-01-27 15:19:09 -0800128#$(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 -0800129
Ying Wang6e371e42012-05-15 14:31:26 -0700130LOCAL_UNINSTALLABLE_MODULE := $(strip $(LOCAL_UNINSTALLABLE_MODULE))
Ying Wang37bd1f22014-01-27 15:19:09 -0800131my_module_tags := $(sort $(my_module_tags))
132ifeq (,$(my_module_tags))
133 my_module_tags := optional
Ying Wang2fd81cf2010-12-10 11:17:28 -0800134endif
Joe Onorato918ee312012-05-18 20:43:14 -0700135
Joe Onorato6a185e42012-05-22 14:08:50 -0700136# User tags are not allowed anymore. Fail early because it will not be installed
137# like it used to be.
Ying Wang37bd1f22014-01-27 15:19:09 -0800138ifneq ($(filter $(my_module_tags),user),)
Joe Onorato6a185e42012-05-22 14:08:50 -0700139 $(warning *** Module name: $(LOCAL_MODULE))
140 $(warning *** Makefile location: $(LOCAL_MODULE_MAKEFILE))
141 $(warning * )
142 $(warning * Module is attempting to use the 'user' tag. This)
143 $(warning * used to cause the module to be installed automatically.)
144 $(warning * Now, the module must be listed in the PRODUCT_PACKAGES)
145 $(warning * section of a product makefile to have it installed.)
146 $(warning * )
147 $(error user tag detected on module.)
148endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800149
Jean-Baptiste Querua831cbd2010-01-07 11:06:50 -0800150# Only the tags mentioned in this test are expected to be set by module
151# makefiles. Anything else is either a typo or a source of unexpected
152# behaviors.
Ying Wang37bd1f22014-01-27 15:19:09 -0800153ifneq ($(filter-out debug eng tests optional samples,$(my_module_tags)),)
Dan Willemsenbd8f84f2017-10-19 15:01:21 -0700154$(call pretty-error,unusual tags: $(filter-out debug eng tests optional samples,$(my_module_tags)))
Jean-Baptiste Querua831cbd2010-01-07 11:06:50 -0800155endif
156
The Android Open Source Project88b60792009-03-03 19:28:42 -0800157# Add implicit tags.
158#
159# If the local directory or one of its parents contains a MODULE_LICENSE_GPL
Andrew Boie08a943b2013-12-10 13:52:00 -0800160# file, tag the module as "gnu". Search for "*_GPL*", "*_LGPL*" and "*_MPL*"
161# so that we can also find files like MODULE_LICENSE_GPL_AND_AFL
The Android Open Source Project88b60792009-03-03 19:28:42 -0800162#
Ying Wang39b9b692015-05-07 12:08:53 -0700163license_files := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*)
Andrew Boie08a943b2013-12-10 13:52:00 -0800164gpl_license_file := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*_GPL* MODULE_LICENSE*_MPL* MODULE_LICENSE*_LGPL*)
Ying Wangfd626f22011-12-12 12:57:38 -0800165ifneq ($(gpl_license_file),)
Ying Wang37bd1f22014-01-27 15:19:09 -0800166 my_module_tags += gnu
Ying Wangfd626f22011-12-12 12:57:38 -0800167 ALL_GPL_MODULE_LICENSE_FILES := $(sort $(ALL_GPL_MODULE_LICENSE_FILES) $(gpl_license_file))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800168endif
169
The Android Open Source Project88b60792009-03-03 19:28:42 -0800170LOCAL_MODULE_CLASS := $(strip $(LOCAL_MODULE_CLASS))
171ifneq ($(words $(LOCAL_MODULE_CLASS)),1)
172 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS must contain exactly one word, not "$(LOCAL_MODULE_CLASS)")
173endif
174
Ying Wang6feb6d52014-04-17 10:03:35 -0700175my_32_64_bit_suffix := $(if $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)IS_64_BIT),64,32)
Colin Cross87974052014-03-21 12:25:44 -0700176
Ying Wang6e371e42012-05-15 14:31:26 -0700177ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wang87538e42016-03-16 19:53:19 -0700178ifeq ($(TARGET_TRANSLATE_2ND_ARCH),true)
179# When in TARGET_TRANSLATE_2ND_ARCH both TARGET_ARCH and TARGET_2ND_ARCH are 32-bit,
180# to avoid path conflict we force using LOCAL_MODULE_PATH_64 for the first arch.
181ifdef LOCAL_2ND_ARCH_VAR_PREFIX
182my_multilib_module_path := $(LOCAL_MODULE_PATH_32)
183else # ! LOCAL_2ND_ARCH_VAR_PREFIX
184my_multilib_module_path := $(LOCAL_MODULE_PATH_64)
185endif # ! LOCAL_2ND_ARCH_VAR_PREFIX
186else # ! TARGET_TRANSLATE_2ND_ARCH
Colin Cross87974052014-03-21 12:25:44 -0700187my_multilib_module_path := $(strip $(LOCAL_MODULE_PATH_$(my_32_64_bit_suffix)))
Ying Wang87538e42016-03-16 19:53:19 -0700188endif # ! TARGET_TRANSLATE_2ND_ARCH
Colin Cross87974052014-03-21 12:25:44 -0700189ifdef my_multilib_module_path
190my_module_path := $(my_multilib_module_path)
191else
Ying Wangb8e01852014-01-23 15:09:04 -0800192my_module_path := $(strip $(LOCAL_MODULE_PATH))
Colin Cross87974052014-03-21 12:25:44 -0700193endif
Dan Willemsene0bba6f2016-12-09 21:15:41 -0800194my_module_path := $(patsubst %/,%,$(my_module_path))
Colin Cross639c3362014-01-24 19:23:40 -0800195my_module_relative_path := $(strip $(LOCAL_MODULE_RELATIVE_PATH))
Dan Willemsenb2a5c7b2017-02-13 13:41:43 -0800196ifdef LOCAL_IS_HOST_MODULE
197 partition_tag :=
198else
Dan Willemsen05a2b932017-03-20 18:31:17 -0700199ifeq (true,$(LOCAL_VENDOR_MODULE))
Dan Willemsenb2a5c7b2017-02-13 13:41:43 -0800200 partition_tag := _VENDOR
201else ifeq (true,$(LOCAL_OEM_MODULE))
202 partition_tag := _OEM
203else ifeq (true,$(LOCAL_ODM_MODULE))
204 partition_tag := _ODM
Jaekyun Seokb7735d82017-11-27 17:04:47 +0900205else ifeq (true,$(LOCAL_PRODUCT_MODULE))
206 partition_tag := _PRODUCT
Dan Willemsenb2a5c7b2017-02-13 13:41:43 -0800207else ifeq (NATIVE_TESTS,$(LOCAL_MODULE_CLASS))
208 partition_tag := _DATA
209else
210 # The definition of should-install-to-system will be different depending
211 # on which goal (e.g., sdk or just droid) is being built.
212 partition_tag := $(if $(call should-install-to-system,$(my_module_tags)),,_DATA)
213endif
214endif
Jiyong Park842a9852017-01-20 09:01:17 +0900215ifeq ($(my_module_path),)
Dan Willemsende4e71b2017-03-16 16:51:46 -0700216 install_path_var := $(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)OUT$(partition_tag)_$(LOCAL_MODULE_CLASS)
217 ifeq (true,$(LOCAL_PRIVILEGED_MODULE))
218 install_path_var := $(install_path_var)_PRIVILEGED
219 endif
Jiyong Park842a9852017-01-20 09:01:17 +0900220
Dan Willemsende4e71b2017-03-16 16:51:46 -0700221 my_module_path := $($(install_path_var))
222 ifeq ($(strip $(my_module_path)),)
223 $(error $(LOCAL_PATH): unhandled install path "$(install_path_var) for $(LOCAL_MODULE)")
Jiyong Park842a9852017-01-20 09:01:17 +0900224 endif
Colin Cross639c3362014-01-24 19:23:40 -0800225endif
Dan Willemsende4e71b2017-03-16 16:51:46 -0700226ifneq ($(my_module_relative_path),)
227 my_module_path := $(my_module_path)/$(my_module_relative_path)
228endif
Ying Wang6e371e42012-05-15 14:31:26 -0700229endif # not LOCAL_UNINSTALLABLE_MODULE
The Android Open Source Project88b60792009-03-03 19:28:42 -0800230
231ifneq ($(strip $(LOCAL_BUILT_MODULE)$(LOCAL_INSTALLED_MODULE)),)
232 $(error $(LOCAL_PATH): LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE must not be defined by component makefiles)
233endif
234
Ying Wang6ef65192014-01-15 16:02:16 -0800235my_register_name := $(LOCAL_MODULE)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700236ifeq ($(my_host_cross),true)
237 my_register_name := host_cross_$(LOCAL_MODULE)
238endif
Dan Willemsen9ecbf832016-02-05 16:20:19 -0800239ifdef LOCAL_2ND_ARCH_VAR_PREFIX
240ifndef LOCAL_NO_2ND_ARCH_MODULE_SUFFIX
241my_register_name := $(my_register_name)$($(my_prefix)2ND_ARCH_MODULE_SUFFIX)
242endif
243endif
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700244
Colin Crossaaf888a2016-09-07 12:48:30 -0700245ifeq ($(my_host_cross),true)
246 my_all_targets := host_cross_$(my_register_name)_all_targets
247else ifneq ($(LOCAL_IS_HOST_MODULE),)
248 my_all_targets := host_$(my_register_name)_all_targets
249else
250 my_all_targets := device_$(my_register_name)_all_targets
251endif
252
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700253# variant is enough to make nano class unique; it serves as a key to lookup (OS,ARCH) tuple
254aux_class := $($(my_prefix)OS_VARIANT)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800255# Make sure that this IS_HOST/CLASS/MODULE combination is unique.
256module_id := MODULE.$(if \
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700257 $(LOCAL_IS_HOST_MODULE),$($(my_prefix)OS),$(if \
258 $(LOCAL_IS_AUX_MODULE),$(aux_class),TARGET)).$(LOCAL_MODULE_CLASS).$(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800259ifdef $(module_id)
260$(error $(LOCAL_PATH): $(module_id) already defined by $($(module_id)))
261endif
262$(module_id) := $(LOCAL_PATH)
263
Dan Willemsen057aaea2015-08-14 12:59:50 -0700264intermediates := $(call local-intermediates-dir,,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800265intermediates.COMMON := $(call local-intermediates-dir,COMMON)
Colin Crossd8262642014-01-24 23:17:21 -0800266generated_sources_dir := $(call local-generated-sources-dir)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800267
Jiyong Parkcbf76f62017-03-24 19:31:49 +0900268ifneq ($(LOCAL_OVERRIDES_MODULES),)
269 ifeq ($(LOCAL_MODULE_CLASS),EXECUTABLES)
270 ifndef LOCAL_IS_HOST_MODULE
271 EXECUTABLES.$(LOCAL_MODULE).OVERRIDES := $(strip $(LOCAL_OVERRIDES_MODULES))
272 else
273 $(call pretty-error,host modules cannot use LOCAL_OVERRIDES_MODULES)
274 endif
275 else
276 $(call pretty-error,LOCAL_MODULE_CLASS := $(LOCAL_MODULE_CLASS) cannot use LOCAL_OVERRIDES_MODULES)
277 endif
278endif
279
The Android Open Source Project88b60792009-03-03 19:28:42 -0800280###########################################################
281# Pick a name for the intermediate and final targets
282###########################################################
Colin Cross5a9db902014-03-21 12:27:37 -0700283include $(BUILD_SYSTEM)/configure_module_stem.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -0800284
Dan Willemsen0cf52d82017-05-15 23:38:04 -0700285LOCAL_BUILT_MODULE := $(intermediates)/$(my_built_module_stem)
286
The Android Open Source Project88b60792009-03-03 19:28:42 -0800287# OVERRIDE_BUILT_MODULE_PATH is only allowed to be used by the
288# internal SHARED_LIBRARIES build files.
289OVERRIDE_BUILT_MODULE_PATH := $(strip $(OVERRIDE_BUILT_MODULE_PATH))
290ifdef OVERRIDE_BUILT_MODULE_PATH
291 ifneq ($(LOCAL_MODULE_CLASS),SHARED_LIBRARIES)
292 $(error $(LOCAL_PATH): Illegal use of OVERRIDE_BUILT_MODULE_PATH)
293 endif
Dan Willemsen0cf52d82017-05-15 23:38:04 -0700294 $(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 -0800295endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800296
Ying Wang162991b2011-09-07 10:21:42 -0700297ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wangaf9757e2014-07-17 21:24:42 -0700298 # Apk and its attachments reside in its own subdir.
299 ifeq ($(LOCAL_MODULE_CLASS),APPS)
300 # framework-res.apk doesn't like the additional layer.
Jakub Adameka08a1012016-10-03 09:56:16 +0100301 ifeq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
302 # Neither do Runtime Resource Overlay apks, which contain just the overlaid resources.
303 else ifeq ($(LOCAL_IS_RUNTIME_RESOURCE_OVERLAY),true)
304 else
Ying Wangaf9757e2014-07-17 21:24:42 -0700305 my_module_path := $(my_module_path)/$(LOCAL_MODULE)
306 endif
307 endif
Ying Wang966c1e02014-05-20 14:43:51 -0700308 LOCAL_INSTALLED_MODULE := $(my_module_path)/$(my_installed_module_stem)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800309endif
310
311# Assemble the list of targets to create PRIVATE_ variables for.
312LOCAL_INTERMEDIATE_TARGETS += $(LOCAL_BUILT_MODULE)
313
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900314###########################################################
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900315## Create .toc files from shared objects to reduce unnecessary rebuild
316# .toc files have the list of external dynamic symbols without their addresses.
Shinichiro Hamaji89b255a2015-11-09 16:47:42 +0900317# As .KATI_RESTAT is specified to .toc files and commit-change-for-toc is used,
318# dependent binaries of a .toc file will be rebuilt only when the content of
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900319# the .toc file is changed.
320###########################################################
321ifeq ($(LOCAL_MODULE_CLASS),SHARED_LIBRARIES)
322LOCAL_INTERMEDIATE_TARGETS += $(LOCAL_BUILT_MODULE).toc
323$(LOCAL_BUILT_MODULE).toc: $(LOCAL_BUILT_MODULE)
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900324 $(call $(PRIVATE_2ND_ARCH_VAR_PREFIX)$(PRIVATE_PREFIX)transform-shared-lib-to-toc,$<,$@.tmp)
Shinichiro Hamaji89b255a2015-11-09 16:47:42 +0900325 $(call commit-change-for-toc,$@)
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900326
327# Kati adds restat=1 to ninja. GNU make does nothing for this.
328.KATI_RESTAT: $(LOCAL_BUILT_MODULE).toc
Colin Crosse2b8f682016-02-04 13:28:04 -0800329# Build .toc file when using mm, mma, or make $(my_register_name)
Colin Crossaaf888a2016-09-07 12:48:30 -0700330$(my_all_targets): $(LOCAL_BUILT_MODULE).toc
Dan Willemsen0cf52d82017-05-15 23:38:04 -0700331
332ifdef OVERRIDE_BUILT_MODULE_PATH
333$(eval $(call copy-one-file,$(LOCAL_BUILT_MODULE).toc,$(OVERRIDE_BUILT_MODULE_PATH)/$(my_built_module_stem).toc))
334$(OVERRIDE_BUILT_MODULE_PATH)/$(my_built_module_stem).toc: $(OVERRIDE_BUILT_MODULE_PATH)/$(my_built_module_stem)
335endif
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +0900336endif
337
338###########################################################
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900339## logtags: Add .logtags files to global list
340###########################################################
341
Dan Willemsenb0a08b82016-06-01 15:27:11 -0700342logtags_sources := $(filter %.logtags,$(LOCAL_SRC_FILES)) $(LOCAL_LOGTAGS_FILES)
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900343
344ifneq ($(strip $(logtags_sources)),)
345event_log_tags := $(addprefix $(LOCAL_PATH)/,$(logtags_sources))
346else
347event_log_tags :=
348endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800349
350###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800351## make clean- targets
352###########################################################
Ying Wang6ef65192014-01-15 16:02:16 -0800353cleantarget := clean-$(my_register_name)
354$(cleantarget) : PRIVATE_MODULE := $(my_register_name)
Ying Wang4d063412013-03-22 18:52:57 -0700355$(cleantarget) : PRIVATE_CLEAN_FILES := \
Ying Wang95221ca2012-11-07 14:07:34 -0800356 $(LOCAL_BUILT_MODULE) \
357 $(LOCAL_INSTALLED_MODULE) \
358 $(intermediates)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800359$(cleantarget)::
360 @echo "Clean: $(PRIVATE_MODULE)"
361 $(hide) rm -rf $(PRIVATE_CLEAN_FILES)
362
363###########################################################
364## Common definitions for module.
365###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800366$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_PATH:=$(LOCAL_PATH)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800367$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_IS_HOST_MODULE := $(LOCAL_IS_HOST_MODULE)
Alexey Polyudovccdc3112016-08-01 17:41:49 -0700368$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_IS_AUX_MODULE := $(LOCAL_IS_AUX_MODULE)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800369$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_HOST:= $(my_host)
Dan Willemsen057aaea2015-08-14 12:59:50 -0700370$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_PREFIX := $(my_prefix)
371
Dima Zavin46e9bec2009-05-27 19:41:07 -0700372$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_INTERMEDIATES_DIR:= $(intermediates)
Ying Wang6feb6d52014-04-17 10:03:35 -0700373$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_2ND_ARCH_VAR_PREFIX := $(LOCAL_2ND_ARCH_VAR_PREFIX)
374
The Android Open Source Project88b60792009-03-03 19:28:42 -0800375# Tell the module and all of its sub-modules who it is.
Ying Wang6ef65192014-01-15 16:02:16 -0800376$(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_MODULE:= $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800377
378# Provide a short-hand for building this module.
379# We name both BUILT and INSTALLED in case
380# LOCAL_UNINSTALLABLE_MODULE is set.
Colin Crossaaf888a2016-09-07 12:48:30 -0700381.PHONY: $(my_all_targets)
382$(my_all_targets): $(LOCAL_BUILT_MODULE) $(LOCAL_INSTALLED_MODULE)
383
Ying Wang6ef65192014-01-15 16:02:16 -0800384.PHONY: $(my_register_name)
Colin Crossaaf888a2016-09-07 12:48:30 -0700385$(my_register_name): $(my_all_targets)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800386
Ying Wang71c58092016-03-23 11:02:03 -0700387ifneq ($(my_register_name),$(LOCAL_MODULE))
388# $(LOCAL_MODULE) covers all the multilib targets.
389.PHONY: $(LOCAL_MODULE)
Colin Crossaaf888a2016-09-07 12:48:30 -0700390$(LOCAL_MODULE) : $(my_all_targets)
Ying Wang71c58092016-03-23 11:02:03 -0700391endif
392
Ying Wangcaeaa082015-09-23 16:08:55 -0700393# Set up phony targets that covers all modules under the given paths.
394# This allows us to build everything in given paths by running mmma/mma.
395my_path_components := $(subst /,$(space),$(LOCAL_PATH))
396my_path_prefix := MODULES-IN
397$(foreach c, $(my_path_components),\
Ying Wang61cd8842015-09-24 16:19:19 -0700398 $(eval my_path_prefix := $(my_path_prefix)-$(c))\
Ying Wangcaeaa082015-09-23 16:08:55 -0700399 $(eval .PHONY : $(my_path_prefix))\
Colin Crossaaf888a2016-09-07 12:48:30 -0700400 $(eval $(my_path_prefix) : $(my_all_targets)))
Ying Wangcaeaa082015-09-23 16:08:55 -0700401
The Android Open Source Project88b60792009-03-03 19:28:42 -0800402###########################################################
403## Module installation rule
404###########################################################
405
Colin Cross744d33b2016-07-14 16:02:57 -0700406my_init_rc_installed :=
407my_init_rc_pairs :=
408my_installed_symlinks :=
Ying Wanged0361f2015-04-19 09:55:39 -0700409ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wange56605a2013-02-06 11:44:41 -0800410$(LOCAL_INSTALLED_MODULE): PRIVATE_POST_INSTALL_CMD := $(LOCAL_POST_INSTALL_CMD)
Dan Willemsen7f016152016-02-29 17:52:39 -0800411$(LOCAL_INSTALLED_MODULE): $(LOCAL_BUILT_MODULE)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800412 @echo "Install: $@"
Ying Wang84ed6fa2011-01-18 17:21:20 -0800413 $(copy-file-to-new-target)
Ying Wange56605a2013-02-06 11:44:41 -0800414 $(PRIVATE_POST_INSTALL_CMD)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800415
Dan Willemsen435360a2016-07-27 22:52:42 -0700416ifndef LOCAL_IS_HOST_MODULE
Ying Wang9fe15ac2015-08-20 12:02:10 -0700417# Rule to install the module's companion init.rc.
Dan Willemsen435360a2016-07-27 22:52:42 -0700418my_init_rc := $(LOCAL_INIT_RC_$(my_32_64_bit_suffix)) $(LOCAL_INIT_RC)
419ifneq ($(strip $(my_init_rc)),)
420my_init_rc_pairs := $(foreach rc,$(my_init_rc),$(LOCAL_PATH)/$(rc):$(TARGET_OUT$(partition_tag)_ETC)/init/$(notdir $(rc)))
421my_init_rc_installed := $(foreach rc,$(my_init_rc_pairs),$(call word-colon,2,$(rc)))
422
423# Make sure we only set up the copy rules once, even if another arch variant
424# shares a common LOCAL_INIT_RC.
425my_init_rc_new_pairs := $(filter-out $(ALL_INIT_RC_INSTALLED_PAIRS),$(my_init_rc_pairs))
426my_init_rc_new_installed := $(call copy-many-files,$(my_init_rc_new_pairs))
427ALL_INIT_RC_INSTALLED_PAIRS += $(my_init_rc_new_pairs)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800428
Colin Crossaaf888a2016-09-07 12:48:30 -0700429$(my_all_targets) : $(my_init_rc_installed)
Dan Willemsen435360a2016-07-27 22:52:42 -0700430endif # my_init_rc
431endif # !LOCAL_IS_HOST_MODULE
Colin Cross744d33b2016-07-14 16:02:57 -0700432
433# Rule to install the module's companion symlinks
434my_installed_symlinks := $(addprefix $(my_module_path)/,$(LOCAL_MODULE_SYMLINKS) $(LOCAL_MODULE_SYMLINKS_$(my_32_64_bit_suffix)))
435$(foreach symlink,$(my_installed_symlinks),\
Dan Willemsende4e71b2017-03-16 16:51:46 -0700436 $(call symlink-file,$(LOCAL_INSTALLED_MODULE),$(my_installed_module_stem),$(symlink)))
Colin Cross744d33b2016-07-14 16:02:57 -0700437
Colin Crossaaf888a2016-09-07 12:48:30 -0700438$(my_all_targets) : | $(my_installed_symlinks)
Colin Cross6d34b612016-08-24 15:20:23 -0700439
Ying Wang9fe15ac2015-08-20 12:02:10 -0700440endif # !LOCAL_UNINSTALLABLE_MODULE
Joe Onoratoe334d252009-07-17 15:33:40 -0400441
442###########################################################
Steven Moreland3629aa72018-04-04 15:41:05 -0700443## VINTF manifest fragment goals
444###########################################################
445
446my_vintf_installed:=
447my_vintf_pairs:=
448ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
449ifndef LOCAL_IS_HOST_MODULE
450ifneq ($(strip $(LOCAL_VINTF_FRAGMENTS)),)
451
452my_vintf_pairs := $(foreach xml,$(LOCAL_VINTF_FRAGMENTS),$(LOCAL_PATH)/$(xml):$(TARGET_OUT$(partition_tag)_ETC)/vintf/manifest/$(notdir $(xml)))
453my_vintf_installed := $(foreach xml,$(my_vintf_pairs),$(call word-colon,2,$(xml)))
454
455# Only set up copy rules once, even if another arch variant shares it
456my_vintf_new_pairs := $(filter-out $(ALL_VINTF_MANIFEST_FRAGMENTS_LIST),$(my_vintf_pairs))
457my_vintf_new_installed := $(call copy-many-vintf-manifest-files-checked,$(my_vintf_pairs))
458
459ALL_VINTF_MANIFEST_FRAGMENTS_LIST += $(my_vintf_new_pairs)
460
461$(my_all_targets) : $(my_vintf_installed)
462endif # LOCAL_VINTF_FRAGMENTS
463endif # !LOCAL_IS_HOST_MODULE
464endif # !LOCAL_UNINSTALLABLE_MODULE
465
466###########################################################
Joe Onoratoe334d252009-07-17 15:33:40 -0400467## CHECK_BUILD goals
468###########################################################
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700469my_checked_module :=
Joe Onoratoe334d252009-07-17 15:33:40 -0400470# If nobody has defined a more specific module for the
Ying Wang5a8d3452013-01-30 14:43:05 -0800471# checked modules, use LOCAL_BUILT_MODULE.
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700472ifdef LOCAL_CHECKED_MODULE
473 my_checked_module := $(LOCAL_CHECKED_MODULE)
474else
475 my_checked_module := $(LOCAL_BUILT_MODULE)
Joe Onoratoe334d252009-07-17 15:33:40 -0400476endif
477
478# If they request that this module not be checked, then don't.
479# PLEASE DON'T SET THIS. ANY PLACES THAT SET THIS WITHOUT
480# GOOD REASON WILL HAVE IT REMOVED.
481ifdef LOCAL_DONT_CHECK_MODULE
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700482 my_checked_module :=
Joe Onoratoe334d252009-07-17 15:33:40 -0400483endif
Ying Wang966c1e02014-05-20 14:43:51 -0700484# Don't check build target module defined for the 2nd arch
485ifndef LOCAL_IS_HOST_MODULE
Ying Wang6ef65192014-01-15 16:02:16 -0800486ifdef LOCAL_2ND_ARCH_VAR_PREFIX
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700487 my_checked_module :=
Ying Wang6ef65192014-01-15 16:02:16 -0800488endif
Ying Wang966c1e02014-05-20 14:43:51 -0700489endif
Joe Onoratoe334d252009-07-17 15:33:40 -0400490
The Android Open Source Project88b60792009-03-03 19:28:42 -0800491###########################################################
Simran Basi5691cb82017-12-04 14:44:16 -0800492## Test Data
493###########################################################
494my_test_data_pairs :=
495my_installed_test_data :=
496# Source to relative dst file paths for reuse in LOCAL_COMPATIBILITY_SUITE.
497my_test_data_file_pairs :=
498
499ifneq ($(filter NATIVE_TESTS,$(LOCAL_MODULE_CLASS)),)
500ifneq ($(strip $(LOCAL_TEST_DATA)),)
501ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
502
503my_test_data_pairs := $(strip $(foreach td,$(LOCAL_TEST_DATA), \
504 $(eval _file := $(call word-colon,2,$(td))) \
505 $(if $(_file), \
506 $(eval _src_base := $(call word-colon,1,$(td))), \
507 $(eval _src_base := $(LOCAL_PATH)) \
508 $(eval _file := $(call word-colon,1,$(td)))) \
509 $(if $(findstring ..,$(_file)),$(error $(LOCAL_MODULE_MAKEFILE): LOCAL_TEST_DATA may not include '..': $(_file))) \
510 $(if $(filter /%,$(_src_base) $(_file)),$(error $(LOCAL_MODULE_MAKEFILE): LOCAL_TEST_DATA may not include absolute paths: $(_src_base) $(_file))) \
511 $(eval my_test_data_file_pairs := $(my_test_data_file_pairs) $(call append-path,$(_src_base),$(_file)):$(_file)) \
512 $(call append-path,$(_src_base),$(_file)):$(call append-path,$(my_module_path),$(_file))))
513
514my_installed_test_data := $(call copy-many-files,$(my_test_data_pairs))
515$(LOCAL_INSTALLED_MODULE): $(my_installed_test_data)
516
517endif
518endif
519endif
520
Simran Basid63a8152018-03-07 12:36:55 -0800521# For test modules that lack a suite tag, set null-suite as the default.
Simran Basia1321542018-02-06 15:15:06 -0800522# We only support adding a default suite to native tests, native benchmarks, and instrumentation tests.
523# This is because they are the only tests we currently auto-generate test configs for.
Simran Basia1321542018-02-06 15:15:06 -0800524ifndef LOCAL_COMPATIBILITY_SUITE
Simran Basid63a8152018-03-07 12:36:55 -0800525ifneq ($(filter NATIVE_TESTS NATIVE_BENCHMARK, $(LOCAL_MODULE_CLASS)),)
526LOCAL_COMPATIBILITY_SUITE := null-suite
527endif
528ifneq ($(filter APPS, $(LOCAL_MODULE_CLASS)),)
529ifneq ($(filter $(my_module_tags),tests),)
Simran Basia1321542018-02-06 15:15:06 -0800530LOCAL_COMPATIBILITY_SUITE := null-suite
531endif
532endif
533endif
534
Simran Basi5691cb82017-12-04 14:44:16 -0800535###########################################################
Simran Basi6bea37c2017-02-16 18:04:10 -0800536## Compatibility suite files.
Ying Wang16243612015-06-03 12:43:50 -0700537###########################################################
538ifdef LOCAL_COMPATIBILITY_SUITE
Simran Basi3fb354c2017-02-08 15:53:32 -0800539
Simran Basi8a431d92017-04-04 12:47:19 -0700540# If we are building a native test or benchmark and its stem variants are not defined,
541# separate the multiple architectures into subdirectories of the testcase folder.
542arch_dir :=
543is_native :=
Simran Basi7160b062018-01-08 12:25:18 -0800544multi_arch :=
Simran Basi8a431d92017-04-04 12:47:19 -0700545ifeq ($(LOCAL_MODULE_CLASS),NATIVE_TESTS)
546 is_native := true
Simran Basi7160b062018-01-08 12:25:18 -0800547 multi_arch := true
Simran Basi8a431d92017-04-04 12:47:19 -0700548endif
Simran Basi8a431d92017-04-04 12:47:19 -0700549ifdef LOCAL_MULTILIB
Simran Basi7160b062018-01-08 12:25:18 -0800550 multi_arch := true
Simran Basi8a431d92017-04-04 12:47:19 -0700551endif
Simran Basi7160b062018-01-08 12:25:18 -0800552ifdef multi_arch
Simran Basi8a431d92017-04-04 12:47:19 -0700553 arch_dir := /$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
Simran Basi8a431d92017-04-04 12:47:19 -0700554endif
Simran Basi7160b062018-01-08 12:25:18 -0800555multi_arch :=
Simran Basi8a431d92017-04-04 12:47:19 -0700556
Ying Wang719f1982015-10-20 18:18:40 -0700557# The module itself.
Simran Basi6bea37c2017-02-16 18:04:10 -0800558$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
Simran Basi8a431d92017-04-04 12:47:19 -0700559 $(eval my_compat_dist_$(suite) := $(foreach dir, $(call compatibility_suite_dirs,$(suite),$(arch_dir)), \
Simran Basi6bea37c2017-02-16 18:04:10 -0800560 $(LOCAL_BUILT_MODULE):$(dir)/$(my_installed_module_stem))))
Ying Wang719f1982015-10-20 18:18:40 -0700561
562# Make sure we only add the files once for multilib modules.
563ifndef $(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_compat_files
564$(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_compat_files := true
565
Ying Wang25e01172015-09-17 12:24:56 -0700566# LOCAL_COMPATIBILITY_SUPPORT_FILES is a list of <src>[:<dest>].
Simran Basi6bea37c2017-02-16 18:04:10 -0800567$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
568 $(eval my_compat_dist_$(suite) += $(foreach f, $(LOCAL_COMPATIBILITY_SUPPORT_FILES), \
569 $(eval p := $(subst :,$(space),$(f))) \
570 $(eval s := $(word 1,$(p))) \
571 $(eval n := $(or $(word 2,$(p)),$(notdir $(word 1, $(p))))) \
572 $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \
573 $(s):$(dir)/$(n)))))
574
Dan Shiefb892d2017-12-06 15:57:31 -0800575test_config := $(wildcard $(LOCAL_PATH)/AndroidTest.xml)
576ifeq (,$(test_config))
577 ifneq (true,$(is_native))
578 is_instrumentation_test := true
579 ifeq (true, $(LOCAL_IS_HOST_MODULE))
580 is_instrumentation_test := false
581 endif
Dan Shi2035abf2018-01-08 14:16:51 -0800582 # If LOCAL_MODULE_CLASS is not APPS, it's certainly not an instrumentation
583 # test. However, some packages for test data also have LOCAL_MODULE_CLASS
584 # set to APPS. These will require flag LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG
585 # to disable auto-generating test config file.
586 ifneq (APPS, $(LOCAL_MODULE_CLASS))
587 is_instrumentation_test := false
588 endif
Dan Shiefb892d2017-12-06 15:57:31 -0800589 endif
590 # CTS modules can be used for test data, so test config files must be
591 # explicitly created using AndroidTest.xml
592 ifeq (,$(filter cts, $(LOCAL_COMPATIBILITY_SUITE)))
Dan Shi2035abf2018-01-08 14:16:51 -0800593 ifneq (true, $(LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG))
594 ifeq (true, $(filter true,$(is_native) $(is_instrumentation_test)))
595 include $(BUILD_SYSTEM)/autogen_test_config.mk
596 test_config := $(autogen_test_config_file)
597 autogen_test_config_file :=
598 endif
Dan Shiefb892d2017-12-06 15:57:31 -0800599 endif
600 endif
601endif
Ying Wang16243612015-06-03 12:43:50 -0700602
Dan Shiefb892d2017-12-06 15:57:31 -0800603is_instrumentation_test :=
604
605ifneq (,$(test_config))
Simran Basi6bea37c2017-02-16 18:04:10 -0800606$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
607 $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \
Dan Shiefb892d2017-12-06 15:57:31 -0800608 $(test_config):$(dir)/$(LOCAL_MODULE).config)))
Ying Wang562d7002015-06-04 11:21:49 -0700609endif
Ying Wang16243612015-06-03 12:43:50 -0700610
Dan Shiefb892d2017-12-06 15:57:31 -0800611test_config :=
612
Ying Wang25e01172015-09-17 12:24:56 -0700613ifneq (,$(wildcard $(LOCAL_PATH)/DynamicConfig.xml))
Simran Basi6bea37c2017-02-16 18:04:10 -0800614$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
615 $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \
616 $(LOCAL_PATH)/DynamicConfig.xml:$(dir)/$(LOCAL_MODULE).dynamic)))
Stuart Scott8fe4bc72015-08-18 14:31:08 -0700617endif
Simran Basi3e73e2b2017-04-19 16:10:45 -0700618
619ifneq (,$(wildcard $(LOCAL_PATH)/$(LOCAL_MODULE)_*.config))
620$(foreach extra_config, $(wildcard $(LOCAL_PATH)/$(LOCAL_MODULE)_*.config), \
621 $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
622 $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \
623 $(extra_config):$(dir)/$(notdir $(extra_config))))))
624endif
Ying Wang719f1982015-10-20 18:18:40 -0700625endif # $(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_compat_files
Stuart Scott8fe4bc72015-08-18 14:31:08 -0700626
Simran Basi5691cb82017-12-04 14:44:16 -0800627ifneq ($(my_test_data_file_pairs),)
628$(foreach pair, $(my_test_data_file_pairs), \
629 $(eval parts := $(subst :,$(space),$(pair))) \
630 $(eval src_path := $(word 1,$(parts))) \
631 $(eval file := $(word 2,$(parts))) \
632 $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
633 $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite),$(arch_dir)), \
634 $(src_path):$(call append-path,$(dir),$(file))))))
635endif
636
Dan Willemsen41337932018-01-26 16:57:57 -0800637arch_dir :=
638is_native :=
639
Simran Basi6bea37c2017-02-16 18:04:10 -0800640$(call create-suite-dependencies)
Ying Wang25e01172015-09-17 12:24:56 -0700641
Ying Wang16243612015-06-03 12:43:50 -0700642endif # LOCAL_COMPATIBILITY_SUITE
643
644###########################################################
Dan Shi639c6cc2018-04-13 14:39:53 -0700645## Add test module to ALL_DISABLED_PRESUBMIT_TESTS if LOCAL_PRESUBMIT_DISABLED is set to true.
646###########################################################
647ifeq ($(LOCAL_PRESUBMIT_DISABLED),true)
648 ALL_DISABLED_PRESUBMIT_TESTS += $(LOCAL_MODULE)
649endif # LOCAL_PRESUBMIT_DISABLED
650
651###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800652## Register with ALL_MODULES
653###########################################################
654
Ying Wang6ef65192014-01-15 16:02:16 -0800655ALL_MODULES += $(my_register_name)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800656
657# Don't use += on subvars, or else they'll end up being
658# recursively expanded.
Ying Wang6ef65192014-01-15 16:02:16 -0800659ALL_MODULES.$(my_register_name).CLASS := \
660 $(ALL_MODULES.$(my_register_name).CLASS) $(LOCAL_MODULE_CLASS)
661ALL_MODULES.$(my_register_name).PATH := \
662 $(ALL_MODULES.$(my_register_name).PATH) $(LOCAL_PATH)
663ALL_MODULES.$(my_register_name).TAGS := \
Ying Wang37bd1f22014-01-27 15:19:09 -0800664 $(ALL_MODULES.$(my_register_name).TAGS) $(my_module_tags)
Ying Wang6ef65192014-01-15 16:02:16 -0800665ALL_MODULES.$(my_register_name).CHECKED := \
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700666 $(ALL_MODULES.$(my_register_name).CHECKED) $(my_checked_module)
Ying Wang6ef65192014-01-15 16:02:16 -0800667ALL_MODULES.$(my_register_name).BUILT := \
668 $(ALL_MODULES.$(my_register_name).BUILT) $(LOCAL_BUILT_MODULE)
Ying Wang3380d3a2014-05-19 13:03:36 -0700669ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
Ying Wang6ef65192014-01-15 16:02:16 -0800670ALL_MODULES.$(my_register_name).INSTALLED := \
Ying Wang9fe15ac2015-08-20 12:02:10 -0700671 $(strip $(ALL_MODULES.$(my_register_name).INSTALLED) \
Dan Willemsend07ba4e2016-12-09 16:05:09 -0800672 $(LOCAL_INSTALLED_MODULE) $(my_init_rc_installed) $(my_installed_symlinks) \
Steven Moreland3629aa72018-04-04 15:41:05 -0700673 $(my_installed_test_data) $(my_vintf_installed))
Ying Wang3380d3a2014-05-19 13:03:36 -0700674ALL_MODULES.$(my_register_name).BUILT_INSTALLED := \
Ying Wang9fe15ac2015-08-20 12:02:10 -0700675 $(strip $(ALL_MODULES.$(my_register_name).BUILT_INSTALLED) \
676 $(LOCAL_BUILT_MODULE):$(LOCAL_INSTALLED_MODULE) \
Steven Moreland3629aa72018-04-04 15:41:05 -0700677 $(my_init_rc_pairs) $(my_test_data_pairs) $(my_vintf_pairs))
Ying Wang3380d3a2014-05-19 13:03:36 -0700678endif
Ying Wang3b81aab2014-05-05 16:46:52 -0700679ifdef LOCAL_PICKUP_FILES
680# Files or directories ready to pick up by the build system
681# when $(LOCAL_BUILT_MODULE) is done.
682ALL_MODULES.$(my_register_name).PICKUP_FILES := \
683 $(ALL_MODULES.$(my_register_name).PICKUP_FILES) $(LOCAL_PICKUP_FILES)
684endif
Logan Chiend71fbfc2017-12-19 17:46:55 +0800685
Dan Willemsen7a549852015-08-13 17:51:40 -0700686my_required_modules := $(LOCAL_REQUIRED_MODULES) \
687 $(LOCAL_REQUIRED_MODULES_$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH))
688ifdef LOCAL_IS_HOST_MODULE
689my_required_modules += $(LOCAL_REQUIRED_MODULES_$($(my_prefix)OS))
690endif
Logan Chiend71fbfc2017-12-19 17:46:55 +0800691
692###############################################################################
693## When compiling against the VNDK, add the .vendor suffix to required modules.
694###############################################################################
695ifneq ($(LOCAL_USE_VNDK),)
696 ####################################################
697 ## Soong modules may be built twice, once for /system
698 ## and once for /vendor. If we're using the VNDK,
699 ## switch all soong libraries over to the /vendor
700 ## variant.
701 ####################################################
702 ifneq ($(LOCAL_MODULE_MAKEFILE),$(SOONG_ANDROID_MK))
703 # We don't do this renaming for soong-defined modules since they already
704 # have correct names (with .vendor suffix when necessary) in their
705 # LOCAL_*_LIBRARIES.
706 my_required_modules := $(foreach l,$(my_required_modules),\
707 $(if $(SPLIT_VENDOR.SHARED_LIBRARIES.$(l)),$(l).vendor,$(l)))
708 endif
709endif
710
Ying Wang6ef65192014-01-15 16:02:16 -0800711ALL_MODULES.$(my_register_name).REQUIRED := \
Dan Willemsen7a549852015-08-13 17:51:40 -0700712 $(strip $(ALL_MODULES.$(my_register_name).REQUIRED) $(my_required_modules))
Alex Deymo00dc6672017-01-05 08:54:46 -0800713ALL_MODULES.$(my_register_name).EXPLICITLY_REQUIRED := \
714 $(strip $(ALL_MODULES.$(my_register_name).EXPLICITLY_REQUIRED)\
715 $(my_required_modules))
Jeff Gaston9557cae2017-08-29 19:31:48 -0700716ALL_MODULES.$(my_register_name).TARGET_REQUIRED := \
717 $(strip $(ALL_MODULES.$(my_register_name).TARGET_REQUIRED)\
718 $(LOCAL_TARGET_REQUIRED_MODULES))
Simran Basi893098b2018-02-01 19:48:59 -0800719ALL_MODULES.$(my_register_name).HOST_REQUIRED := \
720 $(strip $(ALL_MODULES.$(my_register_name).HOST_REQUIRED)\
721 $(LOCAL_HOST_REQUIRED_MODULES))
Yasuhiro Matsudaff82e822015-09-04 16:23:49 +0900722ALL_MODULES.$(my_register_name).EVENT_LOG_TAGS := \
723 $(ALL_MODULES.$(my_register_name).EVENT_LOG_TAGS) $(event_log_tags)
Ying Wang6ef65192014-01-15 16:02:16 -0800724ALL_MODULES.$(my_register_name).MAKEFILE := \
725 $(ALL_MODULES.$(my_register_name).MAKEFILE) $(LOCAL_MODULE_MAKEFILE)
Ying Wangdbb31be2011-12-09 15:11:57 -0800726ifdef LOCAL_MODULE_OWNER
Ying Wang6ef65192014-01-15 16:02:16 -0800727ALL_MODULES.$(my_register_name).OWNER := \
728 $(sort $(ALL_MODULES.$(my_register_name).OWNER) $(LOCAL_MODULE_OWNER))
Ying Wangdbb31be2011-12-09 15:11:57 -0800729endif
Ying Wang14a6cbd2014-02-10 22:26:23 -0800730ifdef LOCAL_2ND_ARCH_VAR_PREFIX
731ALL_MODULES.$(my_register_name).FOR_2ND_ARCH := true
732endif
Dan Willemsen057aaea2015-08-14 12:59:50 -0700733ALL_MODULES.$(my_register_name).FOR_HOST_CROSS := $(my_host_cross)
Kevin Cheng22609182017-11-28 15:04:40 -0800734ALL_MODULES.$(my_register_name).COMPATIBILITY_SUITES := $(LOCAL_COMPATIBILITY_SUITE)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800735
Ying Wang6ef65192014-01-15 16:02:16 -0800736INSTALLABLE_FILES.$(LOCAL_INSTALLED_MODULE).MODULE := $(my_register_name)
Joe Onorato8a06bac2010-05-21 14:29:29 -0700737
Ying Wang39b9b692015-05-07 12:08:53 -0700738##########################################################
739# Track module-level dependencies.
740# Use $(LOCAL_MODULE) instead of $(my_register_name) to ignore module's bitness.
741ALL_DEPS.MODULES := $(sort $(ALL_DEPS.MODULES) $(LOCAL_MODULE))
742ALL_DEPS.$(LOCAL_MODULE).ALL_DEPS := $(sort \
743 $(ALL_MODULES.$(LOCAL_MODULE).ALL_DEPS) \
744 $(LOCAL_STATIC_LIBRARIES) \
745 $(LOCAL_WHOLE_STATIC_LIBRARIES) \
746 $(LOCAL_SHARED_LIBRARIES) \
Dan Willemsen8dae49c2017-02-15 15:48:11 -0800747 $(LOCAL_HEADER_LIBRARIES) \
Ying Wang39b9b692015-05-07 12:08:53 -0700748 $(LOCAL_STATIC_JAVA_LIBRARIES) \
749 $(LOCAL_JAVA_LIBRARIES)\
750 $(LOCAL_JNI_SHARED_LIBRARIES))
751
752ALL_DEPS.$(LOCAL_MODULE).LICENSE := $(sort $(ALL_DEPS.$(LOCAL_MODULE).LICENSE) $(license_files))
753
The Android Open Source Project88b60792009-03-03 19:28:42 -0800754###########################################################
Ying Wang37bd1f22014-01-27 15:19:09 -0800755## Take care of my_module_tags
The Android Open Source Project88b60792009-03-03 19:28:42 -0800756###########################################################
757
758# Keep track of all the tags we've seen.
Ying Wang37bd1f22014-01-27 15:19:09 -0800759ALL_MODULE_TAGS := $(sort $(ALL_MODULE_TAGS) $(my_module_tags))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800760
The Android Open Source Project88b60792009-03-03 19:28:42 -0800761# Add this module name to the tag list of each specified tag.
Ying Wang37bd1f22014-01-27 15:19:09 -0800762$(foreach tag,$(my_module_tags),\
Dan Willemsen44fd0f62017-10-09 18:01:50 -0700763 $(eval ALL_MODULE_NAME_TAGS.$(tag) := $$(ALL_MODULE_NAME_TAGS.$(tag)) $(my_register_name)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800764
The Android Open Source Project88b60792009-03-03 19:28:42 -0800765###########################################################
Ying Wangef4d82f2013-01-29 16:59:18 -0800766## umbrella targets used to verify builds
767###########################################################
Ying Wangef4d82f2013-01-29 16:59:18 -0800768j_or_n :=
Dan Willemsen8dae49c2017-02-15 15:48:11 -0800769ifneq (,$(filter EXECUTABLES SHARED_LIBRARIES STATIC_LIBRARIES HEADER_LIBRARIES NATIVE_TESTS,$(LOCAL_MODULE_CLASS)))
Ying Wangef4d82f2013-01-29 16:59:18 -0800770j_or_n := native
771else
772ifneq (,$(filter JAVA_LIBRARIES APPS,$(LOCAL_MODULE_CLASS)))
773j_or_n := java
Ying Wangef4d82f2013-01-29 16:59:18 -0800774endif
775endif
776ifdef LOCAL_IS_HOST_MODULE
777h_or_t := host
Colin Crossd76e2e62016-12-09 13:08:27 -0800778ifeq ($(my_host_cross),true)
779h_or_hc_or_t := host-cross
Ying Wangef4d82f2013-01-29 16:59:18 -0800780else
Colin Crossd76e2e62016-12-09 13:08:27 -0800781h_or_hc_or_t := host
782endif
783else
784h_or_hc_or_t := target
Ying Wangef4d82f2013-01-29 16:59:18 -0800785h_or_t := target
786endif
787
Colin Crossd76e2e62016-12-09 13:08:27 -0800788
Ying Wangef4d82f2013-01-29 16:59:18 -0800789ifdef j_or_n
Dan Willemsenc01ad7b2017-11-29 20:54:41 -0800790$(j_or_n) $(h_or_t) $(j_or_n)-$(h_or_hc_or_t) : $(my_checked_module)
Ying Wang37bd1f22014-01-27 15:19:09 -0800791ifneq (,$(filter $(my_module_tags),tests))
Ying Wang6c1d1cc2014-09-29 14:34:32 -0700792$(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 -0800793endif
Colin Crossd76e2e62016-12-09 13:08:27 -0800794$(LOCAL_MODULE)-$(h_or_hc_or_t) : $(my_all_targets)
795ifeq ($(j_or_n),native)
796$(LOCAL_MODULE)-$(h_or_hc_or_t)$(my_32_64_bit_suffix) : $(my_all_targets)
797endif
Ying Wangef4d82f2013-01-29 16:59:18 -0800798endif
799
800###########################################################
Nicolas Geoffrayb06c30b2017-09-19 11:51:45 +0000801# Ensure privileged applications always have LOCAL_PRIVILEGED_MODULE
802###########################################################
803ifndef LOCAL_PRIVILEGED_MODULE
804 ifneq (,$(filter $(TARGET_OUT_APPS_PRIVILEGED)/% $(TARGET_OUT_VENDOR_APPS_PRIVILEGED)/%,$(my_module_path)))
805 LOCAL_PRIVILEGED_MODULE := true
806 endif
807endif
808
809###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800810## NOTICE files
811###########################################################
812
Ying Wang13d69502012-11-01 17:22:33 -0700813include $(BUILD_NOTICE_FILE)