The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # |
| 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 Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 17 | # Catch users that directly include base_rules.mk |
| 18 | $(call record-module-type,base_rules) |
| 19 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 20 | # Users can define base-rules-hook in their buildspec.mk to perform |
| 21 | # arbitrary operations as each module is included. |
| 22 | ifdef base-rules-hook |
| 23 | $(if $(base-rules-hook),) |
| 24 | endif |
| 25 | |
| 26 | ########################################################### |
| 27 | ## Common instructions for a generic module. |
| 28 | ########################################################### |
| 29 | |
| 30 | LOCAL_MODULE := $(strip $(LOCAL_MODULE)) |
| 31 | ifeq ($(LOCAL_MODULE),) |
| 32 | $(error $(LOCAL_PATH): LOCAL_MODULE is not defined) |
| 33 | endif |
| 34 | |
| 35 | LOCAL_IS_HOST_MODULE := $(strip $(LOCAL_IS_HOST_MODULE)) |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame] | 36 | LOCAL_IS_AUX_MODULE := $(strip $(LOCAL_IS_AUX_MODULE)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 37 | ifdef 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 Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 41 | ifeq ($(LOCAL_HOST_PREFIX),) |
| 42 | my_prefix := HOST_ |
| 43 | else |
| 44 | my_prefix := $(LOCAL_HOST_PREFIX) |
| 45 | endif |
Ying Wang | 13d6950 | 2012-11-01 17:22:33 -0700 | [diff] [blame] | 46 | my_host := host- |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame] | 47 | my_kind := HOST |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 48 | else |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame] | 49 | 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 Wang | 13d6950 | 2012-11-01 17:22:33 -0700 | [diff] [blame] | 59 | my_host := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 60 | endif |
| 61 | |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 62 | ifeq ($(my_prefix),HOST_CROSS_) |
| 63 | my_host_cross := true |
| 64 | else |
| 65 | my_host_cross := |
| 66 | endif |
| 67 | |
Jiyong Park | 003ea36 | 2017-11-15 18:22:14 +0900 | [diff] [blame] | 68 | _path := $(LOCAL_MODULE_PATH) $(LOCAL_MODULE_PATH_32) $(LOCAL_MODULE_PATH_64) |
| 69 | ifneq ($(filter $(TARGET_OUT_VENDOR)%,$(_path)),) |
| 70 | LOCAL_VENDOR_MODULE := true |
| 71 | else ifneq ($(filter $(TARGET_OUT_OEM)/%,$(_path)),) |
| 72 | LOCAL_OEM_MODULE := true |
| 73 | else ifneq ($(filter $(TARGET_OUT_ODM)/%,$(_path)),) |
| 74 | LOCAL_ODM_MODULE := true |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 75 | else ifneq ($(filter $(TARGET_OUT_PRODUCT)/%,$(_path)),) |
| 76 | LOCAL_PRODUCT_MODULE := true |
Jiyong Park | 003ea36 | 2017-11-15 18:22:14 +0900 | [diff] [blame] | 77 | endif |
| 78 | _path := |
| 79 | |
Dan Willemsen | 05a2b93 | 2017-03-20 18:31:17 -0700 | [diff] [blame] | 80 | ifndef LOCAL_PROPRIETARY_MODULE |
| 81 | LOCAL_PROPRIETARY_MODULE := $(LOCAL_VENDOR_MODULE) |
| 82 | endif |
| 83 | ifndef LOCAL_VENDOR_MODULE |
| 84 | LOCAL_VENDOR_MODULE := $(LOCAL_PROPRIETARY_MODULE) |
| 85 | endif |
| 86 | ifneq ($(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) |
| 88 | endif |
| 89 | |
Dan Willemsen | bab0fa6 | 2016-11-18 14:05:39 -0800 | [diff] [blame] | 90 | include $(BUILD_SYSTEM)/local_vndk.mk |
Jiyong Park | 641b6cc | 2018-01-15 14:48:40 +0900 | [diff] [blame] | 91 | include $(BUILD_SYSTEM)/local_systemsdk.mk |
Dan Willemsen | bab0fa6 | 2016-11-18 14:05:39 -0800 | [diff] [blame] | 92 | |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 93 | my_module_tags := $(LOCAL_MODULE_TAGS) |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 94 | ifeq ($(my_host_cross),true) |
| 95 | my_module_tags := |
| 96 | endif |
Ying Wang | 87538e4 | 2016-03-16 19:53:19 -0700 | [diff] [blame] | 97 | ifeq ($(TARGET_TRANSLATE_2ND_ARCH),true) |
| 98 | ifdef 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 := |
| 101 | endif |
| 102 | endif |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 103 | |
Colin Cross | a4447e8 | 2015-09-28 16:26:00 -0700 | [diff] [blame] | 104 | # 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. |
| 110 | LOCAL_ADDITIONAL_DEPENDENCIES := $(filter-out %.mk,$(LOCAL_ADDITIONAL_DEPENDENCIES)) |
Colin Cross | a4447e8 | 2015-09-28 16:26:00 -0700 | [diff] [blame] | 111 | |
Dan Willemsen | 0c821a9 | 2017-10-23 22:14:21 -0700 | [diff] [blame] | 112 | my_bad_deps := $(strip $(foreach dep,$(filter-out | ||,$(LOCAL_ADDITIONAL_DEPENDENCIES)),\ |
| 113 | $(if $(findstring /,$(dep)),,$(dep)))) |
| 114 | ifneq ($(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)") |
| 117 | endif |
| 118 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 119 | ########################################################### |
| 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 Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 128 | #$(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 Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 129 | |
Ying Wang | 6e371e4 | 2012-05-15 14:31:26 -0700 | [diff] [blame] | 130 | LOCAL_UNINSTALLABLE_MODULE := $(strip $(LOCAL_UNINSTALLABLE_MODULE)) |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 131 | my_module_tags := $(sort $(my_module_tags)) |
| 132 | ifeq (,$(my_module_tags)) |
| 133 | my_module_tags := optional |
Ying Wang | 2fd81cf | 2010-12-10 11:17:28 -0800 | [diff] [blame] | 134 | endif |
Joe Onorato | 918ee31 | 2012-05-18 20:43:14 -0700 | [diff] [blame] | 135 | |
Joe Onorato | 6a185e4 | 2012-05-22 14:08:50 -0700 | [diff] [blame] | 136 | # User tags are not allowed anymore. Fail early because it will not be installed |
| 137 | # like it used to be. |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 138 | ifneq ($(filter $(my_module_tags),user),) |
Joe Onorato | 6a185e4 | 2012-05-22 14:08:50 -0700 | [diff] [blame] | 139 | $(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.) |
| 148 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 149 | |
Jean-Baptiste Queru | a831cbd | 2010-01-07 11:06:50 -0800 | [diff] [blame] | 150 | # 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 Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 153 | ifneq ($(filter-out debug eng tests optional samples,$(my_module_tags)),) |
Dan Willemsen | bd8f84f | 2017-10-19 15:01:21 -0700 | [diff] [blame] | 154 | $(call pretty-error,unusual tags: $(filter-out debug eng tests optional samples,$(my_module_tags))) |
Jean-Baptiste Queru | a831cbd | 2010-01-07 11:06:50 -0800 | [diff] [blame] | 155 | endif |
| 156 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 157 | # Add implicit tags. |
| 158 | # |
| 159 | # If the local directory or one of its parents contains a MODULE_LICENSE_GPL |
Andrew Boie | 08a943b | 2013-12-10 13:52:00 -0800 | [diff] [blame] | 160 | # 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 Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 162 | # |
Ying Wang | 39b9b69 | 2015-05-07 12:08:53 -0700 | [diff] [blame] | 163 | license_files := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*) |
Andrew Boie | 08a943b | 2013-12-10 13:52:00 -0800 | [diff] [blame] | 164 | gpl_license_file := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*_GPL* MODULE_LICENSE*_MPL* MODULE_LICENSE*_LGPL*) |
Ying Wang | fd626f2 | 2011-12-12 12:57:38 -0800 | [diff] [blame] | 165 | ifneq ($(gpl_license_file),) |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 166 | my_module_tags += gnu |
Ying Wang | fd626f2 | 2011-12-12 12:57:38 -0800 | [diff] [blame] | 167 | ALL_GPL_MODULE_LICENSE_FILES := $(sort $(ALL_GPL_MODULE_LICENSE_FILES) $(gpl_license_file)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 168 | endif |
| 169 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 170 | LOCAL_MODULE_CLASS := $(strip $(LOCAL_MODULE_CLASS)) |
| 171 | ifneq ($(words $(LOCAL_MODULE_CLASS)),1) |
| 172 | $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS must contain exactly one word, not "$(LOCAL_MODULE_CLASS)") |
| 173 | endif |
| 174 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 175 | my_32_64_bit_suffix := $(if $($(LOCAL_2ND_ARCH_VAR_PREFIX)$(my_prefix)IS_64_BIT),64,32) |
Colin Cross | 8797405 | 2014-03-21 12:25:44 -0700 | [diff] [blame] | 176 | |
Ying Wang | 6e371e4 | 2012-05-15 14:31:26 -0700 | [diff] [blame] | 177 | ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE)) |
Ying Wang | 87538e4 | 2016-03-16 19:53:19 -0700 | [diff] [blame] | 178 | ifeq ($(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. |
| 181 | ifdef LOCAL_2ND_ARCH_VAR_PREFIX |
| 182 | my_multilib_module_path := $(LOCAL_MODULE_PATH_32) |
| 183 | else # ! LOCAL_2ND_ARCH_VAR_PREFIX |
| 184 | my_multilib_module_path := $(LOCAL_MODULE_PATH_64) |
| 185 | endif # ! LOCAL_2ND_ARCH_VAR_PREFIX |
| 186 | else # ! TARGET_TRANSLATE_2ND_ARCH |
Colin Cross | 8797405 | 2014-03-21 12:25:44 -0700 | [diff] [blame] | 187 | my_multilib_module_path := $(strip $(LOCAL_MODULE_PATH_$(my_32_64_bit_suffix))) |
Ying Wang | 87538e4 | 2016-03-16 19:53:19 -0700 | [diff] [blame] | 188 | endif # ! TARGET_TRANSLATE_2ND_ARCH |
Colin Cross | 8797405 | 2014-03-21 12:25:44 -0700 | [diff] [blame] | 189 | ifdef my_multilib_module_path |
| 190 | my_module_path := $(my_multilib_module_path) |
| 191 | else |
Ying Wang | b8e0185 | 2014-01-23 15:09:04 -0800 | [diff] [blame] | 192 | my_module_path := $(strip $(LOCAL_MODULE_PATH)) |
Colin Cross | 8797405 | 2014-03-21 12:25:44 -0700 | [diff] [blame] | 193 | endif |
Dan Willemsen | e0bba6f | 2016-12-09 21:15:41 -0800 | [diff] [blame] | 194 | my_module_path := $(patsubst %/,%,$(my_module_path)) |
Colin Cross | 639c336 | 2014-01-24 19:23:40 -0800 | [diff] [blame] | 195 | my_module_relative_path := $(strip $(LOCAL_MODULE_RELATIVE_PATH)) |
Dan Willemsen | b2a5c7b | 2017-02-13 13:41:43 -0800 | [diff] [blame] | 196 | ifdef LOCAL_IS_HOST_MODULE |
| 197 | partition_tag := |
| 198 | else |
Dan Willemsen | 05a2b93 | 2017-03-20 18:31:17 -0700 | [diff] [blame] | 199 | ifeq (true,$(LOCAL_VENDOR_MODULE)) |
Dan Willemsen | b2a5c7b | 2017-02-13 13:41:43 -0800 | [diff] [blame] | 200 | partition_tag := _VENDOR |
| 201 | else ifeq (true,$(LOCAL_OEM_MODULE)) |
| 202 | partition_tag := _OEM |
| 203 | else ifeq (true,$(LOCAL_ODM_MODULE)) |
| 204 | partition_tag := _ODM |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 205 | else ifeq (true,$(LOCAL_PRODUCT_MODULE)) |
| 206 | partition_tag := _PRODUCT |
Dan Willemsen | b2a5c7b | 2017-02-13 13:41:43 -0800 | [diff] [blame] | 207 | else ifeq (NATIVE_TESTS,$(LOCAL_MODULE_CLASS)) |
| 208 | partition_tag := _DATA |
| 209 | else |
| 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) |
| 213 | endif |
| 214 | endif |
Jiyong Park | 842a985 | 2017-01-20 09:01:17 +0900 | [diff] [blame] | 215 | ifeq ($(my_module_path),) |
Dan Willemsen | de4e71b | 2017-03-16 16:51:46 -0700 | [diff] [blame] | 216 | 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 Park | 842a985 | 2017-01-20 09:01:17 +0900 | [diff] [blame] | 220 | |
Dan Willemsen | de4e71b | 2017-03-16 16:51:46 -0700 | [diff] [blame] | 221 | 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 Park | 842a985 | 2017-01-20 09:01:17 +0900 | [diff] [blame] | 224 | endif |
Colin Cross | 639c336 | 2014-01-24 19:23:40 -0800 | [diff] [blame] | 225 | endif |
Dan Willemsen | de4e71b | 2017-03-16 16:51:46 -0700 | [diff] [blame] | 226 | ifneq ($(my_module_relative_path),) |
| 227 | my_module_path := $(my_module_path)/$(my_module_relative_path) |
| 228 | endif |
Ying Wang | 6e371e4 | 2012-05-15 14:31:26 -0700 | [diff] [blame] | 229 | endif # not LOCAL_UNINSTALLABLE_MODULE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 230 | |
| 231 | ifneq ($(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) |
| 233 | endif |
| 234 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 235 | my_register_name := $(LOCAL_MODULE) |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 236 | ifeq ($(my_host_cross),true) |
| 237 | my_register_name := host_cross_$(LOCAL_MODULE) |
| 238 | endif |
Dan Willemsen | 9ecbf83 | 2016-02-05 16:20:19 -0800 | [diff] [blame] | 239 | ifdef LOCAL_2ND_ARCH_VAR_PREFIX |
| 240 | ifndef LOCAL_NO_2ND_ARCH_MODULE_SUFFIX |
| 241 | my_register_name := $(my_register_name)$($(my_prefix)2ND_ARCH_MODULE_SUFFIX) |
| 242 | endif |
| 243 | endif |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame] | 244 | |
Colin Cross | aaf888a | 2016-09-07 12:48:30 -0700 | [diff] [blame] | 245 | ifeq ($(my_host_cross),true) |
| 246 | my_all_targets := host_cross_$(my_register_name)_all_targets |
| 247 | else ifneq ($(LOCAL_IS_HOST_MODULE),) |
| 248 | my_all_targets := host_$(my_register_name)_all_targets |
| 249 | else |
| 250 | my_all_targets := device_$(my_register_name)_all_targets |
| 251 | endif |
| 252 | |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame] | 253 | # variant is enough to make nano class unique; it serves as a key to lookup (OS,ARCH) tuple |
| 254 | aux_class := $($(my_prefix)OS_VARIANT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 255 | # Make sure that this IS_HOST/CLASS/MODULE combination is unique. |
| 256 | module_id := MODULE.$(if \ |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame] | 257 | $(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 Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 259 | ifdef $(module_id) |
| 260 | $(error $(LOCAL_PATH): $(module_id) already defined by $($(module_id))) |
| 261 | endif |
| 262 | $(module_id) := $(LOCAL_PATH) |
| 263 | |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 264 | intermediates := $(call local-intermediates-dir,,$(LOCAL_2ND_ARCH_VAR_PREFIX),$(my_host_cross)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 265 | intermediates.COMMON := $(call local-intermediates-dir,COMMON) |
Colin Cross | d826264 | 2014-01-24 23:17:21 -0800 | [diff] [blame] | 266 | generated_sources_dir := $(call local-generated-sources-dir) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 267 | |
Jiyong Park | cbf76f6 | 2017-03-24 19:31:49 +0900 | [diff] [blame] | 268 | ifneq ($(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 |
| 278 | endif |
| 279 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 280 | ########################################################### |
| 281 | # Pick a name for the intermediate and final targets |
| 282 | ########################################################### |
Colin Cross | 5a9db90 | 2014-03-21 12:27:37 -0700 | [diff] [blame] | 283 | include $(BUILD_SYSTEM)/configure_module_stem.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 284 | |
Dan Willemsen | 0cf52d8 | 2017-05-15 23:38:04 -0700 | [diff] [blame] | 285 | LOCAL_BUILT_MODULE := $(intermediates)/$(my_built_module_stem) |
| 286 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 287 | # OVERRIDE_BUILT_MODULE_PATH is only allowed to be used by the |
| 288 | # internal SHARED_LIBRARIES build files. |
| 289 | OVERRIDE_BUILT_MODULE_PATH := $(strip $(OVERRIDE_BUILT_MODULE_PATH)) |
| 290 | ifdef 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 Willemsen | 0cf52d8 | 2017-05-15 23:38:04 -0700 | [diff] [blame] | 294 | $(eval $(call copy-one-file,$(LOCAL_BUILT_MODULE),$(OVERRIDE_BUILT_MODULE_PATH)/$(my_built_module_stem))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 295 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 296 | |
Ying Wang | 162991b | 2011-09-07 10:21:42 -0700 | [diff] [blame] | 297 | ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE)) |
Ying Wang | af9757e | 2014-07-17 21:24:42 -0700 | [diff] [blame] | 298 | # 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 Adamek | a08a101 | 2016-10-03 09:56:16 +0100 | [diff] [blame] | 301 | 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 Wang | af9757e | 2014-07-17 21:24:42 -0700 | [diff] [blame] | 305 | my_module_path := $(my_module_path)/$(LOCAL_MODULE) |
| 306 | endif |
| 307 | endif |
Ying Wang | 966c1e0 | 2014-05-20 14:43:51 -0700 | [diff] [blame] | 308 | LOCAL_INSTALLED_MODULE := $(my_module_path)/$(my_installed_module_stem) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 309 | endif |
| 310 | |
| 311 | # Assemble the list of targets to create PRIVATE_ variables for. |
| 312 | LOCAL_INTERMEDIATE_TARGETS += $(LOCAL_BUILT_MODULE) |
| 313 | |
Yasuhiro Matsuda | ff82e82 | 2015-09-04 16:23:49 +0900 | [diff] [blame] | 314 | ########################################################### |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 315 | ## Create .toc files from shared objects to reduce unnecessary rebuild |
| 316 | # .toc files have the list of external dynamic symbols without their addresses. |
Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame] | 317 | # 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 Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 319 | # the .toc file is changed. |
| 320 | ########################################################### |
| 321 | ifeq ($(LOCAL_MODULE_CLASS),SHARED_LIBRARIES) |
| 322 | LOCAL_INTERMEDIATE_TARGETS += $(LOCAL_BUILT_MODULE).toc |
| 323 | $(LOCAL_BUILT_MODULE).toc: $(LOCAL_BUILT_MODULE) |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 324 | $(call $(PRIVATE_2ND_ARCH_VAR_PREFIX)$(PRIVATE_PREFIX)transform-shared-lib-to-toc,$<,$@.tmp) |
Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame] | 325 | $(call commit-change-for-toc,$@) |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 326 | |
| 327 | # Kati adds restat=1 to ninja. GNU make does nothing for this. |
| 328 | .KATI_RESTAT: $(LOCAL_BUILT_MODULE).toc |
Colin Cross | e2b8f68 | 2016-02-04 13:28:04 -0800 | [diff] [blame] | 329 | # Build .toc file when using mm, mma, or make $(my_register_name) |
Colin Cross | aaf888a | 2016-09-07 12:48:30 -0700 | [diff] [blame] | 330 | $(my_all_targets): $(LOCAL_BUILT_MODULE).toc |
Dan Willemsen | 0cf52d8 | 2017-05-15 23:38:04 -0700 | [diff] [blame] | 331 | |
| 332 | ifdef 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) |
| 335 | endif |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 336 | endif |
| 337 | |
| 338 | ########################################################### |
Yasuhiro Matsuda | ff82e82 | 2015-09-04 16:23:49 +0900 | [diff] [blame] | 339 | ## logtags: Add .logtags files to global list |
| 340 | ########################################################### |
| 341 | |
Dan Willemsen | b0a08b8 | 2016-06-01 15:27:11 -0700 | [diff] [blame] | 342 | logtags_sources := $(filter %.logtags,$(LOCAL_SRC_FILES)) $(LOCAL_LOGTAGS_FILES) |
Yasuhiro Matsuda | ff82e82 | 2015-09-04 16:23:49 +0900 | [diff] [blame] | 343 | |
| 344 | ifneq ($(strip $(logtags_sources)),) |
| 345 | event_log_tags := $(addprefix $(LOCAL_PATH)/,$(logtags_sources)) |
| 346 | else |
| 347 | event_log_tags := |
| 348 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 349 | |
| 350 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 351 | ## make clean- targets |
| 352 | ########################################################### |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 353 | cleantarget := clean-$(my_register_name) |
| 354 | $(cleantarget) : PRIVATE_MODULE := $(my_register_name) |
Ying Wang | 4d06341 | 2013-03-22 18:52:57 -0700 | [diff] [blame] | 355 | $(cleantarget) : PRIVATE_CLEAN_FILES := \ |
Ying Wang | 95221ca | 2012-11-07 14:07:34 -0800 | [diff] [blame] | 356 | $(LOCAL_BUILT_MODULE) \ |
| 357 | $(LOCAL_INSTALLED_MODULE) \ |
| 358 | $(intermediates) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 359 | $(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 Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 366 | $(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_PATH:=$(LOCAL_PATH) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 367 | $(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_IS_HOST_MODULE := $(LOCAL_IS_HOST_MODULE) |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame] | 368 | $(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_IS_AUX_MODULE := $(LOCAL_IS_AUX_MODULE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 369 | $(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_HOST:= $(my_host) |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 370 | $(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_PREFIX := $(my_prefix) |
| 371 | |
Dima Zavin | 46e9bec | 2009-05-27 19:41:07 -0700 | [diff] [blame] | 372 | $(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_INTERMEDIATES_DIR:= $(intermediates) |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 373 | $(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_2ND_ARCH_VAR_PREFIX := $(LOCAL_2ND_ARCH_VAR_PREFIX) |
| 374 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 375 | # Tell the module and all of its sub-modules who it is. |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 376 | $(LOCAL_INTERMEDIATE_TARGETS) : PRIVATE_MODULE:= $(my_register_name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 377 | |
| 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 Cross | aaf888a | 2016-09-07 12:48:30 -0700 | [diff] [blame] | 381 | .PHONY: $(my_all_targets) |
| 382 | $(my_all_targets): $(LOCAL_BUILT_MODULE) $(LOCAL_INSTALLED_MODULE) |
| 383 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 384 | .PHONY: $(my_register_name) |
Colin Cross | aaf888a | 2016-09-07 12:48:30 -0700 | [diff] [blame] | 385 | $(my_register_name): $(my_all_targets) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 386 | |
Ying Wang | 71c5809 | 2016-03-23 11:02:03 -0700 | [diff] [blame] | 387 | ifneq ($(my_register_name),$(LOCAL_MODULE)) |
| 388 | # $(LOCAL_MODULE) covers all the multilib targets. |
| 389 | .PHONY: $(LOCAL_MODULE) |
Colin Cross | aaf888a | 2016-09-07 12:48:30 -0700 | [diff] [blame] | 390 | $(LOCAL_MODULE) : $(my_all_targets) |
Ying Wang | 71c5809 | 2016-03-23 11:02:03 -0700 | [diff] [blame] | 391 | endif |
| 392 | |
Ying Wang | caeaa08 | 2015-09-23 16:08:55 -0700 | [diff] [blame] | 393 | # 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. |
| 395 | my_path_components := $(subst /,$(space),$(LOCAL_PATH)) |
| 396 | my_path_prefix := MODULES-IN |
| 397 | $(foreach c, $(my_path_components),\ |
Ying Wang | 61cd884 | 2015-09-24 16:19:19 -0700 | [diff] [blame] | 398 | $(eval my_path_prefix := $(my_path_prefix)-$(c))\ |
Ying Wang | caeaa08 | 2015-09-23 16:08:55 -0700 | [diff] [blame] | 399 | $(eval .PHONY : $(my_path_prefix))\ |
Colin Cross | aaf888a | 2016-09-07 12:48:30 -0700 | [diff] [blame] | 400 | $(eval $(my_path_prefix) : $(my_all_targets))) |
Ying Wang | caeaa08 | 2015-09-23 16:08:55 -0700 | [diff] [blame] | 401 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 402 | ########################################################### |
| 403 | ## Module installation rule |
| 404 | ########################################################### |
| 405 | |
Colin Cross | 744d33b | 2016-07-14 16:02:57 -0700 | [diff] [blame] | 406 | my_init_rc_installed := |
| 407 | my_init_rc_pairs := |
| 408 | my_installed_symlinks := |
Ying Wang | ed0361f | 2015-04-19 09:55:39 -0700 | [diff] [blame] | 409 | ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE)) |
Ying Wang | e56605a | 2013-02-06 11:44:41 -0800 | [diff] [blame] | 410 | $(LOCAL_INSTALLED_MODULE): PRIVATE_POST_INSTALL_CMD := $(LOCAL_POST_INSTALL_CMD) |
Dan Willemsen | 7f01615 | 2016-02-29 17:52:39 -0800 | [diff] [blame] | 411 | $(LOCAL_INSTALLED_MODULE): $(LOCAL_BUILT_MODULE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 412 | @echo "Install: $@" |
Ying Wang | 84ed6fa | 2011-01-18 17:21:20 -0800 | [diff] [blame] | 413 | $(copy-file-to-new-target) |
Ying Wang | e56605a | 2013-02-06 11:44:41 -0800 | [diff] [blame] | 414 | $(PRIVATE_POST_INSTALL_CMD) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 415 | |
Dan Willemsen | 435360a | 2016-07-27 22:52:42 -0700 | [diff] [blame] | 416 | ifndef LOCAL_IS_HOST_MODULE |
Ying Wang | 9fe15ac | 2015-08-20 12:02:10 -0700 | [diff] [blame] | 417 | # Rule to install the module's companion init.rc. |
Dan Willemsen | 435360a | 2016-07-27 22:52:42 -0700 | [diff] [blame] | 418 | my_init_rc := $(LOCAL_INIT_RC_$(my_32_64_bit_suffix)) $(LOCAL_INIT_RC) |
| 419 | ifneq ($(strip $(my_init_rc)),) |
| 420 | my_init_rc_pairs := $(foreach rc,$(my_init_rc),$(LOCAL_PATH)/$(rc):$(TARGET_OUT$(partition_tag)_ETC)/init/$(notdir $(rc))) |
| 421 | my_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. |
| 425 | my_init_rc_new_pairs := $(filter-out $(ALL_INIT_RC_INSTALLED_PAIRS),$(my_init_rc_pairs)) |
| 426 | my_init_rc_new_installed := $(call copy-many-files,$(my_init_rc_new_pairs)) |
| 427 | ALL_INIT_RC_INSTALLED_PAIRS += $(my_init_rc_new_pairs) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 428 | |
Colin Cross | aaf888a | 2016-09-07 12:48:30 -0700 | [diff] [blame] | 429 | $(my_all_targets) : $(my_init_rc_installed) |
Dan Willemsen | 435360a | 2016-07-27 22:52:42 -0700 | [diff] [blame] | 430 | endif # my_init_rc |
| 431 | endif # !LOCAL_IS_HOST_MODULE |
Colin Cross | 744d33b | 2016-07-14 16:02:57 -0700 | [diff] [blame] | 432 | |
| 433 | # Rule to install the module's companion symlinks |
| 434 | my_installed_symlinks := $(addprefix $(my_module_path)/,$(LOCAL_MODULE_SYMLINKS) $(LOCAL_MODULE_SYMLINKS_$(my_32_64_bit_suffix))) |
| 435 | $(foreach symlink,$(my_installed_symlinks),\ |
Dan Willemsen | de4e71b | 2017-03-16 16:51:46 -0700 | [diff] [blame] | 436 | $(call symlink-file,$(LOCAL_INSTALLED_MODULE),$(my_installed_module_stem),$(symlink))) |
Colin Cross | 744d33b | 2016-07-14 16:02:57 -0700 | [diff] [blame] | 437 | |
Colin Cross | aaf888a | 2016-09-07 12:48:30 -0700 | [diff] [blame] | 438 | $(my_all_targets) : | $(my_installed_symlinks) |
Colin Cross | 6d34b61 | 2016-08-24 15:20:23 -0700 | [diff] [blame] | 439 | |
Ying Wang | 9fe15ac | 2015-08-20 12:02:10 -0700 | [diff] [blame] | 440 | endif # !LOCAL_UNINSTALLABLE_MODULE |
Joe Onorato | e334d25 | 2009-07-17 15:33:40 -0400 | [diff] [blame] | 441 | |
| 442 | ########################################################### |
Steven Moreland | 3629aa7 | 2018-04-04 15:41:05 -0700 | [diff] [blame^] | 443 | ## VINTF manifest fragment goals |
| 444 | ########################################################### |
| 445 | |
| 446 | my_vintf_installed:= |
| 447 | my_vintf_pairs:= |
| 448 | ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE)) |
| 449 | ifndef LOCAL_IS_HOST_MODULE |
| 450 | ifneq ($(strip $(LOCAL_VINTF_FRAGMENTS)),) |
| 451 | |
| 452 | my_vintf_pairs := $(foreach xml,$(LOCAL_VINTF_FRAGMENTS),$(LOCAL_PATH)/$(xml):$(TARGET_OUT$(partition_tag)_ETC)/vintf/manifest/$(notdir $(xml))) |
| 453 | my_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 |
| 456 | my_vintf_new_pairs := $(filter-out $(ALL_VINTF_MANIFEST_FRAGMENTS_LIST),$(my_vintf_pairs)) |
| 457 | my_vintf_new_installed := $(call copy-many-vintf-manifest-files-checked,$(my_vintf_pairs)) |
| 458 | |
| 459 | ALL_VINTF_MANIFEST_FRAGMENTS_LIST += $(my_vintf_new_pairs) |
| 460 | |
| 461 | $(my_all_targets) : $(my_vintf_installed) |
| 462 | endif # LOCAL_VINTF_FRAGMENTS |
| 463 | endif # !LOCAL_IS_HOST_MODULE |
| 464 | endif # !LOCAL_UNINSTALLABLE_MODULE |
| 465 | |
| 466 | ########################################################### |
Joe Onorato | e334d25 | 2009-07-17 15:33:40 -0400 | [diff] [blame] | 467 | ## CHECK_BUILD goals |
| 468 | ########################################################### |
Ying Wang | 6c1d1cc | 2014-09-29 14:34:32 -0700 | [diff] [blame] | 469 | my_checked_module := |
Joe Onorato | e334d25 | 2009-07-17 15:33:40 -0400 | [diff] [blame] | 470 | # If nobody has defined a more specific module for the |
Ying Wang | 5a8d345 | 2013-01-30 14:43:05 -0800 | [diff] [blame] | 471 | # checked modules, use LOCAL_BUILT_MODULE. |
Ying Wang | 6c1d1cc | 2014-09-29 14:34:32 -0700 | [diff] [blame] | 472 | ifdef LOCAL_CHECKED_MODULE |
| 473 | my_checked_module := $(LOCAL_CHECKED_MODULE) |
| 474 | else |
| 475 | my_checked_module := $(LOCAL_BUILT_MODULE) |
Joe Onorato | e334d25 | 2009-07-17 15:33:40 -0400 | [diff] [blame] | 476 | endif |
| 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. |
| 481 | ifdef LOCAL_DONT_CHECK_MODULE |
Ying Wang | 6c1d1cc | 2014-09-29 14:34:32 -0700 | [diff] [blame] | 482 | my_checked_module := |
Joe Onorato | e334d25 | 2009-07-17 15:33:40 -0400 | [diff] [blame] | 483 | endif |
Ying Wang | 966c1e0 | 2014-05-20 14:43:51 -0700 | [diff] [blame] | 484 | # Don't check build target module defined for the 2nd arch |
| 485 | ifndef LOCAL_IS_HOST_MODULE |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 486 | ifdef LOCAL_2ND_ARCH_VAR_PREFIX |
Ying Wang | 6c1d1cc | 2014-09-29 14:34:32 -0700 | [diff] [blame] | 487 | my_checked_module := |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 488 | endif |
Ying Wang | 966c1e0 | 2014-05-20 14:43:51 -0700 | [diff] [blame] | 489 | endif |
Joe Onorato | e334d25 | 2009-07-17 15:33:40 -0400 | [diff] [blame] | 490 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 491 | ########################################################### |
Simran Basi | 5691cb8 | 2017-12-04 14:44:16 -0800 | [diff] [blame] | 492 | ## Test Data |
| 493 | ########################################################### |
| 494 | my_test_data_pairs := |
| 495 | my_installed_test_data := |
| 496 | # Source to relative dst file paths for reuse in LOCAL_COMPATIBILITY_SUITE. |
| 497 | my_test_data_file_pairs := |
| 498 | |
| 499 | ifneq ($(filter NATIVE_TESTS,$(LOCAL_MODULE_CLASS)),) |
| 500 | ifneq ($(strip $(LOCAL_TEST_DATA)),) |
| 501 | ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE)) |
| 502 | |
| 503 | my_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 | |
| 514 | my_installed_test_data := $(call copy-many-files,$(my_test_data_pairs)) |
| 515 | $(LOCAL_INSTALLED_MODULE): $(my_installed_test_data) |
| 516 | |
| 517 | endif |
| 518 | endif |
| 519 | endif |
| 520 | |
Simran Basi | d63a815 | 2018-03-07 12:36:55 -0800 | [diff] [blame] | 521 | # For test modules that lack a suite tag, set null-suite as the default. |
Simran Basi | a132154 | 2018-02-06 15:15:06 -0800 | [diff] [blame] | 522 | # 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 Basi | a132154 | 2018-02-06 15:15:06 -0800 | [diff] [blame] | 524 | ifndef LOCAL_COMPATIBILITY_SUITE |
Simran Basi | d63a815 | 2018-03-07 12:36:55 -0800 | [diff] [blame] | 525 | ifneq ($(filter NATIVE_TESTS NATIVE_BENCHMARK, $(LOCAL_MODULE_CLASS)),) |
| 526 | LOCAL_COMPATIBILITY_SUITE := null-suite |
| 527 | endif |
| 528 | ifneq ($(filter APPS, $(LOCAL_MODULE_CLASS)),) |
| 529 | ifneq ($(filter $(my_module_tags),tests),) |
Simran Basi | a132154 | 2018-02-06 15:15:06 -0800 | [diff] [blame] | 530 | LOCAL_COMPATIBILITY_SUITE := null-suite |
| 531 | endif |
| 532 | endif |
| 533 | endif |
| 534 | |
Simran Basi | 5691cb8 | 2017-12-04 14:44:16 -0800 | [diff] [blame] | 535 | ########################################################### |
Simran Basi | 6bea37c | 2017-02-16 18:04:10 -0800 | [diff] [blame] | 536 | ## Compatibility suite files. |
Ying Wang | 1624361 | 2015-06-03 12:43:50 -0700 | [diff] [blame] | 537 | ########################################################### |
| 538 | ifdef LOCAL_COMPATIBILITY_SUITE |
Simran Basi | 3fb354c | 2017-02-08 15:53:32 -0800 | [diff] [blame] | 539 | |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 540 | # 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. |
| 542 | arch_dir := |
| 543 | is_native := |
Simran Basi | 7160b06 | 2018-01-08 12:25:18 -0800 | [diff] [blame] | 544 | multi_arch := |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 545 | ifeq ($(LOCAL_MODULE_CLASS),NATIVE_TESTS) |
| 546 | is_native := true |
Simran Basi | 7160b06 | 2018-01-08 12:25:18 -0800 | [diff] [blame] | 547 | multi_arch := true |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 548 | endif |
| 549 | ifeq ($(LOCAL_MODULE_CLASS),NATIVE_BENCHMARK) |
| 550 | is_native := true |
Simran Basi | 7160b06 | 2018-01-08 12:25:18 -0800 | [diff] [blame] | 551 | multi_arch := true |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 552 | endif |
| 553 | ifdef LOCAL_MULTILIB |
Simran Basi | 7160b06 | 2018-01-08 12:25:18 -0800 | [diff] [blame] | 554 | multi_arch := true |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 555 | endif |
Simran Basi | 7160b06 | 2018-01-08 12:25:18 -0800 | [diff] [blame] | 556 | ifdef multi_arch |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 557 | arch_dir := /$($(my_prefix)$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH) |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 558 | endif |
Simran Basi | 7160b06 | 2018-01-08 12:25:18 -0800 | [diff] [blame] | 559 | multi_arch := |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 560 | |
Ying Wang | 719f198 | 2015-10-20 18:18:40 -0700 | [diff] [blame] | 561 | # The module itself. |
Simran Basi | 6bea37c | 2017-02-16 18:04:10 -0800 | [diff] [blame] | 562 | $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \ |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 563 | $(eval my_compat_dist_$(suite) := $(foreach dir, $(call compatibility_suite_dirs,$(suite),$(arch_dir)), \ |
Simran Basi | 6bea37c | 2017-02-16 18:04:10 -0800 | [diff] [blame] | 564 | $(LOCAL_BUILT_MODULE):$(dir)/$(my_installed_module_stem)))) |
Ying Wang | 719f198 | 2015-10-20 18:18:40 -0700 | [diff] [blame] | 565 | |
| 566 | # Make sure we only add the files once for multilib modules. |
| 567 | ifndef $(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_compat_files |
| 568 | $(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_compat_files := true |
| 569 | |
Ying Wang | 25e0117 | 2015-09-17 12:24:56 -0700 | [diff] [blame] | 570 | # LOCAL_COMPATIBILITY_SUPPORT_FILES is a list of <src>[:<dest>]. |
Simran Basi | 6bea37c | 2017-02-16 18:04:10 -0800 | [diff] [blame] | 571 | $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \ |
| 572 | $(eval my_compat_dist_$(suite) += $(foreach f, $(LOCAL_COMPATIBILITY_SUPPORT_FILES), \ |
| 573 | $(eval p := $(subst :,$(space),$(f))) \ |
| 574 | $(eval s := $(word 1,$(p))) \ |
| 575 | $(eval n := $(or $(word 2,$(p)),$(notdir $(word 1, $(p))))) \ |
| 576 | $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \ |
| 577 | $(s):$(dir)/$(n))))) |
| 578 | |
Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 579 | test_config := $(wildcard $(LOCAL_PATH)/AndroidTest.xml) |
| 580 | ifeq (,$(test_config)) |
| 581 | ifneq (true,$(is_native)) |
| 582 | is_instrumentation_test := true |
| 583 | ifeq (true, $(LOCAL_IS_HOST_MODULE)) |
| 584 | is_instrumentation_test := false |
| 585 | endif |
Dan Shi | 2035abf | 2018-01-08 14:16:51 -0800 | [diff] [blame] | 586 | # If LOCAL_MODULE_CLASS is not APPS, it's certainly not an instrumentation |
| 587 | # test. However, some packages for test data also have LOCAL_MODULE_CLASS |
| 588 | # set to APPS. These will require flag LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG |
| 589 | # to disable auto-generating test config file. |
| 590 | ifneq (APPS, $(LOCAL_MODULE_CLASS)) |
| 591 | is_instrumentation_test := false |
| 592 | endif |
Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 593 | endif |
| 594 | # CTS modules can be used for test data, so test config files must be |
| 595 | # explicitly created using AndroidTest.xml |
| 596 | ifeq (,$(filter cts, $(LOCAL_COMPATIBILITY_SUITE))) |
Dan Shi | 2035abf | 2018-01-08 14:16:51 -0800 | [diff] [blame] | 597 | ifneq (true, $(LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG)) |
| 598 | ifeq (true, $(filter true,$(is_native) $(is_instrumentation_test))) |
| 599 | include $(BUILD_SYSTEM)/autogen_test_config.mk |
| 600 | test_config := $(autogen_test_config_file) |
| 601 | autogen_test_config_file := |
| 602 | endif |
Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 603 | endif |
| 604 | endif |
| 605 | endif |
Ying Wang | 1624361 | 2015-06-03 12:43:50 -0700 | [diff] [blame] | 606 | |
Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 607 | is_instrumentation_test := |
| 608 | |
| 609 | ifneq (,$(test_config)) |
Simran Basi | 6bea37c | 2017-02-16 18:04:10 -0800 | [diff] [blame] | 610 | $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \ |
| 611 | $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \ |
Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 612 | $(test_config):$(dir)/$(LOCAL_MODULE).config))) |
Ying Wang | 562d700 | 2015-06-04 11:21:49 -0700 | [diff] [blame] | 613 | endif |
Ying Wang | 1624361 | 2015-06-03 12:43:50 -0700 | [diff] [blame] | 614 | |
Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 615 | test_config := |
| 616 | |
Ying Wang | 25e0117 | 2015-09-17 12:24:56 -0700 | [diff] [blame] | 617 | ifneq (,$(wildcard $(LOCAL_PATH)/DynamicConfig.xml)) |
Simran Basi | 6bea37c | 2017-02-16 18:04:10 -0800 | [diff] [blame] | 618 | $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \ |
| 619 | $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \ |
| 620 | $(LOCAL_PATH)/DynamicConfig.xml:$(dir)/$(LOCAL_MODULE).dynamic))) |
Stuart Scott | 8fe4bc7 | 2015-08-18 14:31:08 -0700 | [diff] [blame] | 621 | endif |
Simran Basi | 3e73e2b | 2017-04-19 16:10:45 -0700 | [diff] [blame] | 622 | |
| 623 | ifneq (,$(wildcard $(LOCAL_PATH)/$(LOCAL_MODULE)_*.config)) |
| 624 | $(foreach extra_config, $(wildcard $(LOCAL_PATH)/$(LOCAL_MODULE)_*.config), \ |
| 625 | $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \ |
| 626 | $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \ |
| 627 | $(extra_config):$(dir)/$(notdir $(extra_config)))))) |
| 628 | endif |
Ying Wang | 719f198 | 2015-10-20 18:18:40 -0700 | [diff] [blame] | 629 | endif # $(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_compat_files |
Stuart Scott | 8fe4bc7 | 2015-08-18 14:31:08 -0700 | [diff] [blame] | 630 | |
Simran Basi | 5691cb8 | 2017-12-04 14:44:16 -0800 | [diff] [blame] | 631 | ifneq ($(my_test_data_file_pairs),) |
| 632 | $(foreach pair, $(my_test_data_file_pairs), \ |
| 633 | $(eval parts := $(subst :,$(space),$(pair))) \ |
| 634 | $(eval src_path := $(word 1,$(parts))) \ |
| 635 | $(eval file := $(word 2,$(parts))) \ |
| 636 | $(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \ |
| 637 | $(eval my_compat_dist_$(suite) += $(foreach dir, $(call compatibility_suite_dirs,$(suite),$(arch_dir)), \ |
| 638 | $(src_path):$(call append-path,$(dir),$(file)))))) |
| 639 | endif |
| 640 | |
Dan Willemsen | 4133793 | 2018-01-26 16:57:57 -0800 | [diff] [blame] | 641 | arch_dir := |
| 642 | is_native := |
| 643 | |
Simran Basi | 6bea37c | 2017-02-16 18:04:10 -0800 | [diff] [blame] | 644 | $(call create-suite-dependencies) |
Ying Wang | 25e0117 | 2015-09-17 12:24:56 -0700 | [diff] [blame] | 645 | |
Ying Wang | 1624361 | 2015-06-03 12:43:50 -0700 | [diff] [blame] | 646 | endif # LOCAL_COMPATIBILITY_SUITE |
| 647 | |
| 648 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 649 | ## Register with ALL_MODULES |
| 650 | ########################################################### |
| 651 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 652 | ALL_MODULES += $(my_register_name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 653 | |
| 654 | # Don't use += on subvars, or else they'll end up being |
| 655 | # recursively expanded. |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 656 | ALL_MODULES.$(my_register_name).CLASS := \ |
| 657 | $(ALL_MODULES.$(my_register_name).CLASS) $(LOCAL_MODULE_CLASS) |
| 658 | ALL_MODULES.$(my_register_name).PATH := \ |
| 659 | $(ALL_MODULES.$(my_register_name).PATH) $(LOCAL_PATH) |
| 660 | ALL_MODULES.$(my_register_name).TAGS := \ |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 661 | $(ALL_MODULES.$(my_register_name).TAGS) $(my_module_tags) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 662 | ALL_MODULES.$(my_register_name).CHECKED := \ |
Ying Wang | 6c1d1cc | 2014-09-29 14:34:32 -0700 | [diff] [blame] | 663 | $(ALL_MODULES.$(my_register_name).CHECKED) $(my_checked_module) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 664 | ALL_MODULES.$(my_register_name).BUILT := \ |
| 665 | $(ALL_MODULES.$(my_register_name).BUILT) $(LOCAL_BUILT_MODULE) |
Ying Wang | 3380d3a | 2014-05-19 13:03:36 -0700 | [diff] [blame] | 666 | ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE)) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 667 | ALL_MODULES.$(my_register_name).INSTALLED := \ |
Ying Wang | 9fe15ac | 2015-08-20 12:02:10 -0700 | [diff] [blame] | 668 | $(strip $(ALL_MODULES.$(my_register_name).INSTALLED) \ |
Dan Willemsen | d07ba4e | 2016-12-09 16:05:09 -0800 | [diff] [blame] | 669 | $(LOCAL_INSTALLED_MODULE) $(my_init_rc_installed) $(my_installed_symlinks) \ |
Steven Moreland | 3629aa7 | 2018-04-04 15:41:05 -0700 | [diff] [blame^] | 670 | $(my_installed_test_data) $(my_vintf_installed)) |
Ying Wang | 3380d3a | 2014-05-19 13:03:36 -0700 | [diff] [blame] | 671 | ALL_MODULES.$(my_register_name).BUILT_INSTALLED := \ |
Ying Wang | 9fe15ac | 2015-08-20 12:02:10 -0700 | [diff] [blame] | 672 | $(strip $(ALL_MODULES.$(my_register_name).BUILT_INSTALLED) \ |
| 673 | $(LOCAL_BUILT_MODULE):$(LOCAL_INSTALLED_MODULE) \ |
Steven Moreland | 3629aa7 | 2018-04-04 15:41:05 -0700 | [diff] [blame^] | 674 | $(my_init_rc_pairs) $(my_test_data_pairs) $(my_vintf_pairs)) |
Ying Wang | 3380d3a | 2014-05-19 13:03:36 -0700 | [diff] [blame] | 675 | endif |
Ying Wang | 3b81aab | 2014-05-05 16:46:52 -0700 | [diff] [blame] | 676 | ifdef LOCAL_PICKUP_FILES |
| 677 | # Files or directories ready to pick up by the build system |
| 678 | # when $(LOCAL_BUILT_MODULE) is done. |
| 679 | ALL_MODULES.$(my_register_name).PICKUP_FILES := \ |
| 680 | $(ALL_MODULES.$(my_register_name).PICKUP_FILES) $(LOCAL_PICKUP_FILES) |
| 681 | endif |
Dan Willemsen | 7a54985 | 2015-08-13 17:51:40 -0700 | [diff] [blame] | 682 | my_required_modules := $(LOCAL_REQUIRED_MODULES) \ |
| 683 | $(LOCAL_REQUIRED_MODULES_$(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)) |
| 684 | ifdef LOCAL_IS_HOST_MODULE |
| 685 | my_required_modules += $(LOCAL_REQUIRED_MODULES_$($(my_prefix)OS)) |
| 686 | endif |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 687 | ALL_MODULES.$(my_register_name).REQUIRED := \ |
Dan Willemsen | 7a54985 | 2015-08-13 17:51:40 -0700 | [diff] [blame] | 688 | $(strip $(ALL_MODULES.$(my_register_name).REQUIRED) $(my_required_modules)) |
Alex Deymo | 00dc667 | 2017-01-05 08:54:46 -0800 | [diff] [blame] | 689 | ALL_MODULES.$(my_register_name).EXPLICITLY_REQUIRED := \ |
| 690 | $(strip $(ALL_MODULES.$(my_register_name).EXPLICITLY_REQUIRED)\ |
| 691 | $(my_required_modules)) |
Jeff Gaston | 9557cae | 2017-08-29 19:31:48 -0700 | [diff] [blame] | 692 | ALL_MODULES.$(my_register_name).TARGET_REQUIRED := \ |
| 693 | $(strip $(ALL_MODULES.$(my_register_name).TARGET_REQUIRED)\ |
| 694 | $(LOCAL_TARGET_REQUIRED_MODULES)) |
Simran Basi | 893098b | 2018-02-01 19:48:59 -0800 | [diff] [blame] | 695 | ALL_MODULES.$(my_register_name).HOST_REQUIRED := \ |
| 696 | $(strip $(ALL_MODULES.$(my_register_name).HOST_REQUIRED)\ |
| 697 | $(LOCAL_HOST_REQUIRED_MODULES)) |
Yasuhiro Matsuda | ff82e82 | 2015-09-04 16:23:49 +0900 | [diff] [blame] | 698 | ALL_MODULES.$(my_register_name).EVENT_LOG_TAGS := \ |
| 699 | $(ALL_MODULES.$(my_register_name).EVENT_LOG_TAGS) $(event_log_tags) |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 700 | ALL_MODULES.$(my_register_name).MAKEFILE := \ |
| 701 | $(ALL_MODULES.$(my_register_name).MAKEFILE) $(LOCAL_MODULE_MAKEFILE) |
Ying Wang | dbb31be | 2011-12-09 15:11:57 -0800 | [diff] [blame] | 702 | ifdef LOCAL_MODULE_OWNER |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 703 | ALL_MODULES.$(my_register_name).OWNER := \ |
| 704 | $(sort $(ALL_MODULES.$(my_register_name).OWNER) $(LOCAL_MODULE_OWNER)) |
Ying Wang | dbb31be | 2011-12-09 15:11:57 -0800 | [diff] [blame] | 705 | endif |
Ying Wang | 14a6cbd | 2014-02-10 22:26:23 -0800 | [diff] [blame] | 706 | ifdef LOCAL_2ND_ARCH_VAR_PREFIX |
| 707 | ALL_MODULES.$(my_register_name).FOR_2ND_ARCH := true |
| 708 | endif |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 709 | ALL_MODULES.$(my_register_name).FOR_HOST_CROSS := $(my_host_cross) |
Kevin Cheng | 2260918 | 2017-11-28 15:04:40 -0800 | [diff] [blame] | 710 | ALL_MODULES.$(my_register_name).COMPATIBILITY_SUITES := $(LOCAL_COMPATIBILITY_SUITE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 711 | |
Ying Wang | 6ef6519 | 2014-01-15 16:02:16 -0800 | [diff] [blame] | 712 | INSTALLABLE_FILES.$(LOCAL_INSTALLED_MODULE).MODULE := $(my_register_name) |
Joe Onorato | 8a06bac | 2010-05-21 14:29:29 -0700 | [diff] [blame] | 713 | |
Ying Wang | 39b9b69 | 2015-05-07 12:08:53 -0700 | [diff] [blame] | 714 | ########################################################## |
| 715 | # Track module-level dependencies. |
| 716 | # Use $(LOCAL_MODULE) instead of $(my_register_name) to ignore module's bitness. |
| 717 | ALL_DEPS.MODULES := $(sort $(ALL_DEPS.MODULES) $(LOCAL_MODULE)) |
| 718 | ALL_DEPS.$(LOCAL_MODULE).ALL_DEPS := $(sort \ |
| 719 | $(ALL_MODULES.$(LOCAL_MODULE).ALL_DEPS) \ |
| 720 | $(LOCAL_STATIC_LIBRARIES) \ |
| 721 | $(LOCAL_WHOLE_STATIC_LIBRARIES) \ |
| 722 | $(LOCAL_SHARED_LIBRARIES) \ |
Dan Willemsen | 8dae49c | 2017-02-15 15:48:11 -0800 | [diff] [blame] | 723 | $(LOCAL_HEADER_LIBRARIES) \ |
Ying Wang | 39b9b69 | 2015-05-07 12:08:53 -0700 | [diff] [blame] | 724 | $(LOCAL_STATIC_JAVA_LIBRARIES) \ |
| 725 | $(LOCAL_JAVA_LIBRARIES)\ |
| 726 | $(LOCAL_JNI_SHARED_LIBRARIES)) |
| 727 | |
| 728 | ALL_DEPS.$(LOCAL_MODULE).LICENSE := $(sort $(ALL_DEPS.$(LOCAL_MODULE).LICENSE) $(license_files)) |
| 729 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 730 | ########################################################### |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 731 | ## Take care of my_module_tags |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 732 | ########################################################### |
| 733 | |
| 734 | # Keep track of all the tags we've seen. |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 735 | ALL_MODULE_TAGS := $(sort $(ALL_MODULE_TAGS) $(my_module_tags)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 736 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 737 | # Add this module name to the tag list of each specified tag. |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 738 | $(foreach tag,$(my_module_tags),\ |
Dan Willemsen | 44fd0f6 | 2017-10-09 18:01:50 -0700 | [diff] [blame] | 739 | $(eval ALL_MODULE_NAME_TAGS.$(tag) := $$(ALL_MODULE_NAME_TAGS.$(tag)) $(my_register_name))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 740 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 741 | ########################################################### |
Ying Wang | ef4d82f | 2013-01-29 16:59:18 -0800 | [diff] [blame] | 742 | ## umbrella targets used to verify builds |
| 743 | ########################################################### |
Ying Wang | ef4d82f | 2013-01-29 16:59:18 -0800 | [diff] [blame] | 744 | j_or_n := |
Dan Willemsen | 8dae49c | 2017-02-15 15:48:11 -0800 | [diff] [blame] | 745 | ifneq (,$(filter EXECUTABLES SHARED_LIBRARIES STATIC_LIBRARIES HEADER_LIBRARIES NATIVE_TESTS,$(LOCAL_MODULE_CLASS))) |
Ying Wang | ef4d82f | 2013-01-29 16:59:18 -0800 | [diff] [blame] | 746 | j_or_n := native |
| 747 | else |
| 748 | ifneq (,$(filter JAVA_LIBRARIES APPS,$(LOCAL_MODULE_CLASS))) |
| 749 | j_or_n := java |
Ying Wang | ef4d82f | 2013-01-29 16:59:18 -0800 | [diff] [blame] | 750 | endif |
| 751 | endif |
| 752 | ifdef LOCAL_IS_HOST_MODULE |
| 753 | h_or_t := host |
Colin Cross | d76e2e6 | 2016-12-09 13:08:27 -0800 | [diff] [blame] | 754 | ifeq ($(my_host_cross),true) |
| 755 | h_or_hc_or_t := host-cross |
Ying Wang | ef4d82f | 2013-01-29 16:59:18 -0800 | [diff] [blame] | 756 | else |
Colin Cross | d76e2e6 | 2016-12-09 13:08:27 -0800 | [diff] [blame] | 757 | h_or_hc_or_t := host |
| 758 | endif |
| 759 | else |
| 760 | h_or_hc_or_t := target |
Ying Wang | ef4d82f | 2013-01-29 16:59:18 -0800 | [diff] [blame] | 761 | h_or_t := target |
| 762 | endif |
| 763 | |
Colin Cross | d76e2e6 | 2016-12-09 13:08:27 -0800 | [diff] [blame] | 764 | |
Ying Wang | ef4d82f | 2013-01-29 16:59:18 -0800 | [diff] [blame] | 765 | ifdef j_or_n |
Dan Willemsen | c01ad7b | 2017-11-29 20:54:41 -0800 | [diff] [blame] | 766 | $(j_or_n) $(h_or_t) $(j_or_n)-$(h_or_hc_or_t) : $(my_checked_module) |
Ying Wang | 37bd1f2 | 2014-01-27 15:19:09 -0800 | [diff] [blame] | 767 | ifneq (,$(filter $(my_module_tags),tests)) |
Ying Wang | 6c1d1cc | 2014-09-29 14:34:32 -0700 | [diff] [blame] | 768 | $(j_or_n)-$(h_or_t)-tests $(j_or_n)-tests $(h_or_t)-tests : $(my_checked_module) |
Ying Wang | ef4d82f | 2013-01-29 16:59:18 -0800 | [diff] [blame] | 769 | endif |
Colin Cross | d76e2e6 | 2016-12-09 13:08:27 -0800 | [diff] [blame] | 770 | $(LOCAL_MODULE)-$(h_or_hc_or_t) : $(my_all_targets) |
| 771 | ifeq ($(j_or_n),native) |
| 772 | $(LOCAL_MODULE)-$(h_or_hc_or_t)$(my_32_64_bit_suffix) : $(my_all_targets) |
| 773 | endif |
Ying Wang | ef4d82f | 2013-01-29 16:59:18 -0800 | [diff] [blame] | 774 | endif |
| 775 | |
| 776 | ########################################################### |
Nicolas Geoffray | b06c30b | 2017-09-19 11:51:45 +0000 | [diff] [blame] | 777 | # Ensure privileged applications always have LOCAL_PRIVILEGED_MODULE |
| 778 | ########################################################### |
| 779 | ifndef LOCAL_PRIVILEGED_MODULE |
| 780 | ifneq (,$(filter $(TARGET_OUT_APPS_PRIVILEGED)/% $(TARGET_OUT_VENDOR_APPS_PRIVILEGED)/%,$(my_module_path))) |
| 781 | LOCAL_PRIVILEGED_MODULE := true |
| 782 | endif |
| 783 | endif |
| 784 | |
| 785 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 786 | ## NOTICE files |
| 787 | ########################################################### |
| 788 | |
Ying Wang | 13d6950 | 2012-11-01 17:22:33 -0700 | [diff] [blame] | 789 | include $(BUILD_NOTICE_FILE) |