blob: c0a1a9d6d4facf77f3e4fc6ba587afbede4e0f62 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# ---------------------------------------------------------------
18# Generic functions
19# TODO: Move these to definitions.make once we're able to include
20# definitions.make before config.make.
21
22###########################################################
23## Return non-empty if $(1) is a C identifier; i.e., if it
24## matches /^[a-zA-Z_][a-zA-Z0-9_]*$/. We do this by first
25## making sure that it isn't empty and doesn't start with
26## a digit, then by removing each valid character. If the
27## final result is empty, then it was a valid C identifier.
28##
29## $(1): word to check
30###########################################################
31
32_ici_digits := 0 1 2 3 4 5 6 7 8 9
33_ici_alphaunderscore := \
34 a b c d e f g h i j k l m n o p q r s t u v w x y z \
35 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _
36define is-c-identifier
37$(strip \
38 $(if $(1), \
39 $(if $(filter $(addsuffix %,$(_ici_digits)),$(1)), \
40 , \
41 $(eval w := $(1)) \
42 $(foreach c,$(_ici_digits) $(_ici_alphaunderscore), \
43 $(eval w := $(subst $(c),,$(w))) \
44 ) \
45 $(if $(w),,TRUE) \
46 $(eval w :=) \
47 ) \
48 ) \
49 )
50endef
51
Mike Lockwood85399292009-04-10 06:34:59 -070052# TODO: push this into the combo files; unfortunately, we don't even
53# know HOST_OS at this point.
54trysed := $(shell echo a | sed -E -e 's/a/b/' 2>/dev/null)
55ifeq ($(trysed),b)
56 SED_EXTENDED := sed -E
57else
58 trysed := $(shell echo c | sed -r -e 's/c/d/' 2>/dev/null)
59 ifeq ($(trysed),d)
60 SED_EXTENDED := sed -r
61 else
62 $(error Unknown sed version)
63 endif
64endif
65
Joe Onorato64d85d02009-04-09 19:31:12 -070066###########################################################
67## List all of the files in a subdirectory in a format
68## suitable for PRODUCT_COPY_FILES and
69## PRODUCT_SDK_ADDON_COPY_FILES
70##
71## $(1): Glob to match file name
72## $(2): Source directory
73## $(3): Target base directory
74###########################################################
75
76define find-copy-subdir-files
Mike Lockwood85399292009-04-10 06:34:59 -070077$(shell find $(2) -name "$(1)" | $(SED_EXTENDED) "s:($(2)/?(.*)):\\1\\:$(3)/\\2:" | sed "s://:/:g")
Joe Onorato64d85d02009-04-09 19:31:12 -070078endef
79
80# ---------------------------------------------------------------
The Android Open Source Project88b60792009-03-03 19:28:42 -080081
The Android Open Source Project2f312932009-03-09 11:52:11 -070082# These are the valid values of TARGET_BUILD_VARIANT. Also, if anything else is passed
83# as the variant in the PRODUCT-$TARGET_BUILD_PRODUCT-$TARGET_BUILD_VARIANT form,
84# it will be treated as a goal, and the eng variant will be used.
Ying Wangd0244b32011-11-17 14:51:12 -080085INTERNAL_VALID_VARIANTS := user userdebug eng
The Android Open Source Project2f312932009-03-09 11:52:11 -070086
The Android Open Source Project88b60792009-03-03 19:28:42 -080087# ---------------------------------------------------------------
88# Provide "PRODUCT-<prodname>-<goal>" targets, which lets you build
89# a particular configuration without needing to set up the environment.
90#
91product_goals := $(strip $(filter PRODUCT-%,$(MAKECMDGOALS)))
92ifdef product_goals
93 # Scrape the product and build names out of the goal,
94 # which should be of the form PRODUCT-<productname>-<buildname>.
95 #
96 ifneq ($(words $(product_goals)),1)
97 $(error Only one PRODUCT-* goal may be specified; saw "$(product_goals)")
98 endif
99 goal_name := $(product_goals)
100 product_goals := $(patsubst PRODUCT-%,%,$(product_goals))
101 product_goals := $(subst -, ,$(product_goals))
102 ifneq ($(words $(product_goals)),2)
103 $(error Bad PRODUCT-* goal "$(goal_name)")
104 endif
105
106 # The product they want
107 TARGET_PRODUCT := $(word 1,$(product_goals))
108
109 # The variant they want
110 TARGET_BUILD_VARIANT := $(word 2,$(product_goals))
111
Ying Wangd0244b32011-11-17 14:51:12 -0800112 ifeq ($(TARGET_BUILD_VARIANT),tests)
113 $(error "tests" has been deprecated as a build variant. Use it as a build goal instead.)
114 endif
115
The Android Open Source Project88b60792009-03-03 19:28:42 -0800116 # The build server wants to do make PRODUCT-dream-installclean
Doug Zongker17c83cf2009-04-01 15:48:46 -0700117 # which really means TARGET_PRODUCT=dream make installclean.
The Android Open Source Project2f312932009-03-09 11:52:11 -0700118 ifneq ($(filter-out $(INTERNAL_VALID_VARIANTS),$(TARGET_BUILD_VARIANT)),)
Ying Wang3c21fe52011-10-04 10:50:08 -0700119 MAKECMDGOALS := $(MAKECMDGOALS) $(TARGET_BUILD_VARIANT)
Vince Harronba740ff2015-10-27 16:08:25 -0700120 TARGET_BUILD_VARIANT := userdebug
Doug Zongker17c83cf2009-04-01 15:48:46 -0700121 default_goal_substitution :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800122 else
123 default_goal_substitution := $(DEFAULT_GOAL)
124 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800125
The Android Open Source Project88b60792009-03-03 19:28:42 -0800126 # Replace the PRODUCT-* goal with the build goal that it refers to.
127 # Note that this will ensure that it appears in the same relative
128 # position, in case it matters.
129 #
130 # Note that modifying this will not affect the goals that make will
131 # attempt to build, but it's important because we inspect this value
Doug Zongker17c83cf2009-04-01 15:48:46 -0700132 # in certain situations (like for "make sdk").
The Android Open Source Project88b60792009-03-03 19:28:42 -0800133 #
134 MAKECMDGOALS := $(patsubst $(goal_name),$(default_goal_substitution),$(MAKECMDGOALS))
135
136 # Define a rule for the PRODUCT-* goal, and make it depend on the
137 # patched-up command-line goals as well as any other goals that we
138 # want to force.
139 #
140.PHONY: $(goal_name)
141$(goal_name): $(MAKECMDGOALS)
142endif
143# else: Use the value set in the environment or buildspec.mk.
144
145# ---------------------------------------------------------------
Ying Wang52911302010-05-26 13:13:56 -0700146# Provide "APP-<appname>" targets, which lets you build
147# an unbundled app.
148#
149unbundled_goals := $(strip $(filter APP-%,$(MAKECMDGOALS)))
150ifdef unbundled_goals
151 ifneq ($(words $(unbundled_goals)),1)
Shinichiro Hamaji1d97b902015-05-28 17:44:03 +0900152 $(error Only one APP-* goal may be specified; saw "$(unbundled_goals)")
Ying Wang52911302010-05-26 13:13:56 -0700153 endif
Joe Onorato16fa4b22010-06-09 16:35:58 -0700154 TARGET_BUILD_APPS := $(strip $(subst -, ,$(patsubst APP-%,%,$(unbundled_goals))))
Ying Wang52911302010-05-26 13:13:56 -0700155 ifneq ($(filter $(DEFAULT_GOAL),$(MAKECMDGOALS)),)
156 MAKECMDGOALS := $(patsubst $(unbundled_goals),,$(MAKECMDGOALS))
157 else
158 MAKECMDGOALS := $(patsubst $(unbundled_goals),$(DEFAULT_GOAL),$(MAKECMDGOALS))
159 endif
Ying Wang52911302010-05-26 13:13:56 -0700160
161.PHONY: $(unbundled_goals)
162$(unbundled_goals): $(MAKECMDGOALS)
163endif # unbundled_goals
164
Ryo Fujiicbb32662011-06-16 16:58:11 -0700165# Default to building dalvikvm on hosts that support it...
166ifeq ($(HOST_OS),linux)
Ryo Fujiicbb32662011-06-16 16:58:11 -0700167# ... or if the if the option is already set
168ifeq ($(WITH_HOST_DALVIK),)
Ying Wangcf5da402011-06-17 17:44:08 -0700169 WITH_HOST_DALVIK := true
Ryo Fujiicbb32662011-06-16 16:58:11 -0700170endif
171endif
Ryo Fujiicbb32662011-06-16 16:58:11 -0700172
173# ---------------------------------------------------------------
The Android Open Source Project88b60792009-03-03 19:28:42 -0800174# Include the product definitions.
175# We need to do this to translate TARGET_PRODUCT into its
176# underlying TARGET_DEVICE before we start defining any rules.
177#
178include $(BUILD_SYSTEM)/node_fns.mk
179include $(BUILD_SYSTEM)/product.mk
180include $(BUILD_SYSTEM)/device.mk
181
Joe Onorato16fa4b22010-06-09 16:35:58 -0700182ifneq ($(strip $(TARGET_BUILD_APPS)),)
Ying Wang157a5e12012-09-27 13:26:25 -0700183# An unbundled app build needs only the core product makefiles.
184all_product_configs := $(call get-product-makefiles,\
185 $(SRC_TARGET_DIR)/product/AndroidProducts.mk)
Ying Wang52911302010-05-26 13:13:56 -0700186else
Ying Wang157a5e12012-09-27 13:26:25 -0700187# Read in all of the product definitions specified by the AndroidProducts.mk
188# files in the tree.
189all_product_configs := $(get-all-product-makefiles)
190endif
191
192# Find the product config makefile for the current product.
193# all_product_configs consists items like:
194# <product_name>:<path_to_the_product_makefile>
195# or just <path_to_the_product_makefile> in case the product name is the
196# same as the base filename of the product config makefile.
197current_product_makefile :=
198all_product_makefiles :=
199$(foreach f, $(all_product_configs),\
200 $(eval _cpm_words := $(subst :,$(space),$(f)))\
201 $(eval _cpm_word1 := $(word 1,$(_cpm_words)))\
202 $(eval _cpm_word2 := $(word 2,$(_cpm_words)))\
203 $(if $(_cpm_word2),\
204 $(eval all_product_makefiles += $(_cpm_word2))\
205 $(if $(filter $(TARGET_PRODUCT),$(_cpm_word1)),\
206 $(eval current_product_makefile += $(_cpm_word2)),),\
207 $(eval all_product_makefiles += $(f))\
208 $(if $(filter $(TARGET_PRODUCT),$(basename $(notdir $(f)))),\
209 $(eval current_product_makefile += $(f)),)))
210_cpm_words :=
211_cpm_word1 :=
212_cpm_word2 :=
213current_product_makefile := $(strip $(current_product_makefile))
214all_product_makefiles := $(strip $(all_product_makefiles))
215
Ying Wang67132ba2015-10-28 16:42:39 -0700216load_all_product_makefiles :=
217ifneq (,$(filter product-graph, $(MAKECMDGOALS)))
218ifeq ($(ANDROID_PRODUCT_GRAPH),--all)
219load_all_product_makefiles := true
220endif
221endif
222ifneq (,$(filter dump-products,$(MAKECMDGOALS)))
223ifeq ($(ANDROID_DUMP_PRODUCTS),all)
224load_all_product_makefiles := true
225endif
226endif
227
228ifeq ($(load_all_product_makefiles),true)
Ying Wang157a5e12012-09-27 13:26:25 -0700229# Import all product makefiles.
230$(call import-products, $(all_product_makefiles))
231else
232# Import just the current product.
233ifndef current_product_makefile
Ying Wang0c4eb412012-09-27 13:26:25 -0700234$(error Can not locate config makefile for product "$(TARGET_PRODUCT)")
Ying Wang157a5e12012-09-27 13:26:25 -0700235endif
236ifneq (1,$(words $(current_product_makefile)))
237$(error Product "$(TARGET_PRODUCT)" ambiguous: matches $(current_product_makefile))
238endif
239$(call import-products, $(current_product_makefile))
240endif # Import all or just the current product makefile
241
242# Sanity check
The Android Open Source Project88b60792009-03-03 19:28:42 -0800243$(check-all-products)
Ying Wangcae4d122010-11-02 23:04:24 -0700244
245ifneq ($(filter dump-products, $(MAKECMDGOALS)),)
246$(dump-products)
247$(error done)
248endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800249
250# Convert a short name like "sooner" into the path to the product
251# file defining that product.
252#
253INTERNAL_PRODUCT := $(call resolve-short-product-name, $(TARGET_PRODUCT))
Ying Wang157a5e12012-09-27 13:26:25 -0700254ifneq ($(current_product_makefile),$(INTERNAL_PRODUCT))
255$(error PRODUCT_NAME inconsistent in $(current_product_makefile) and $(INTERNAL_PRODUCT))
256endif
257current_product_makefile :=
258all_product_makefiles :=
259all_product_configs :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800260
Ying Wang22ef7982013-07-10 18:12:33 -0700261
262#############################################################################
Ying Wang22ef7982013-07-10 18:12:33 -0700263
Ying Wang0650d152013-07-23 17:57:38 -0700264# A list of module names of BOOTCLASSPATH (jar files)
Ying Wangad6674c2014-01-07 14:31:49 -0800265PRODUCT_BOOT_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BOOT_JARS))
Narayan Kamath89ec4962014-08-05 14:51:08 +0100266PRODUCT_SYSTEM_SERVER_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_JARS))
Ying Wang0650d152013-07-23 17:57:38 -0700267
The Android Open Source Project88b60792009-03-03 19:28:42 -0800268# Find the device that this product maps to.
269TARGET_DEVICE := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEVICE)
270
271# Figure out which resoure configuration options to use for this
272# product.
273PRODUCT_LOCALES := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_LOCALES))
274# TODO: also keep track of things like "port", "land" in product files.
275
276# If CUSTOM_LOCALES contains any locales not already included
277# in PRODUCT_LOCALES, add them to PRODUCT_LOCALES.
278extra_locales := $(filter-out $(PRODUCT_LOCALES),$(CUSTOM_LOCALES))
279ifneq (,$(extra_locales))
Dave Bortd14f6d92009-03-24 20:50:42 -0700280 ifneq ($(CALLED_FROM_SETUP),true)
281 # Don't spam stdout, because envsetup.sh may be scraping values from it.
282 $(info Adding CUSTOM_LOCALES [$(extra_locales)] to PRODUCT_LOCALES [$(PRODUCT_LOCALES)])
283 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800284 PRODUCT_LOCALES += $(extra_locales)
285 extra_locales :=
286endif
287
Ying Wang4f1ab922011-03-15 13:19:30 -0700288# Add PRODUCT_LOCALES to PRODUCT_AAPT_CONFIG
Adam Lesinski83ee6d72014-12-02 16:13:09 -0800289PRODUCT_AAPT_CONFIG := $(strip $(PRODUCT_LOCALES) $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_CONFIG))
Dianne Hackborna0f464a2011-10-14 19:37:57 -0700290PRODUCT_AAPT_PREF_CONFIG := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREF_CONFIG))
Ying Wang60686582014-12-10 12:40:09 -0800291PRODUCT_AAPT_PREBUILT_DPI := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREBUILT_DPI))
Ying Wang4f1ab922011-03-15 13:19:30 -0700292
Ying Wang91341e52013-11-22 10:07:51 -0800293# Keep a copy of the space-separated config
294PRODUCT_AAPT_CONFIG_SP := $(PRODUCT_AAPT_CONFIG)
295
The Android Open Source Project88b60792009-03-03 19:28:42 -0800296# Convert spaces to commas.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800297PRODUCT_AAPT_CONFIG := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700298 $(subst $(space),$(comma),$(strip $(PRODUCT_AAPT_CONFIG)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800299
Igor Viarheichykc4dfe6e2014-06-26 14:56:21 -0700300# product-scoped aapt flags
301PRODUCT_AAPT_FLAGS :=
Adam Lesinski497888d2016-01-26 12:17:32 -0800302PRODUCT_AAPT2_CFLAGS :=
Igor Viarheichykc4dfe6e2014-06-26 14:56:21 -0700303ifneq ($(filter en_XA ar_XB,$(PRODUCT_LOCALES)),)
Adam Lesinski497888d2016-01-26 12:17:32 -0800304 # Force generating resources for pseudo-locales.
Ying Wange295c3d2016-02-24 14:11:55 -0800305 PRODUCT_AAPT2_CFLAGS += --pseudo-localize
306 PRODUCT_AAPT_FLAGS += --pseudo-localize
Igor Viarheichykc4dfe6e2014-06-26 14:56:21 -0700307endif
308
The Android Open Source Project88b60792009-03-03 19:28:42 -0800309PRODUCT_BRAND := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BRAND))
310
311PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MODEL))
312ifndef PRODUCT_MODEL
Doug Zongker17c83cf2009-04-01 15:48:46 -0700313 PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_NAME))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800314endif
315
316PRODUCT_MANUFACTURER := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700317 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MANUFACTURER))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800318ifndef PRODUCT_MANUFACTURER
319 PRODUCT_MANUFACTURER := unknown
320endif
321
Joe Onorato700b88e2010-10-05 17:33:58 -0400322ifeq ($(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS),)
323 TARGET_AAPT_CHARACTERISTICS := default
324else
325 TARGET_AAPT_CHARACTERISTICS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS))
326endif
327
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700328PRODUCT_DEFAULT_WIFI_CHANNELS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700329 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_WIFI_CHANNELS))
330
331PRODUCT_DEFAULT_DEV_CERTIFICATE := \
332 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_DEV_CERTIFICATE))
333ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE
334ifneq (1,$(words $(PRODUCT_DEFAULT_DEV_CERTIFICATE)))
335 $(error PRODUCT_DEFAULT_DEV_CERTIFICATE='$(PRODUCT_DEFAULT_DEV_CERTIFICATE)', \
336 only 1 certificate is allowed.)
337endif
338endif
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700339
Ying Wang4b0486b2012-09-20 16:35:36 -0700340# A list of words like <source path>:<destination path>[:<owner>].
341# The file at the source path should be copied to the destination path
342# when building this product. <destination path> is relative to
343# $(PRODUCT_OUT), so it should look like, e.g., "system/etc/file.xml".
344# The rules for these copy steps are defined in build/core/Makefile.
345# The optional :<owner> is used to indicate the owner of a vendor file.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800346PRODUCT_COPY_FILES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700347 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COPY_FILES))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800348
The Android Open Source Project88b60792009-03-03 19:28:42 -0800349# A list of property assignments, like "key = value", with zero or more
350# whitespace characters on either side of the '='.
351PRODUCT_PROPERTY_OVERRIDES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700352 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PROPERTY_OVERRIDES))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800353
Mike Lockwood0d23fec2011-06-09 14:54:40 -0700354# A list of property assignments, like "key = value", with zero or more
355# whitespace characters on either side of the '='.
356# used for adding properties to default.prop
357PRODUCT_DEFAULT_PROPERTY_OVERRIDES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700358 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_PROPERTY_OVERRIDES))
Mike Lockwood0d23fec2011-06-09 14:54:40 -0700359
The Android Open Source Project88b60792009-03-03 19:28:42 -0800360# Should we use the default resources or add any product specific overlays
361PRODUCT_PACKAGE_OVERLAYS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700362 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGE_OVERLAYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800363DEVICE_PACKAGE_OVERLAYS := \
364 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).DEVICE_PACKAGE_OVERLAYS))
365
Dima Zavinf9269902012-03-16 09:57:11 -0700366# The list of product-specific kernel header dirs
367PRODUCT_VENDOR_KERNEL_HEADERS := \
368 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_VENDOR_KERNEL_HEADERS)
369
Ying Wang22ef7982013-07-10 18:12:33 -0700370# Add the product-defined properties to the build properties.
371ADDITIONAL_BUILD_PROPERTIES := \
372 $(ADDITIONAL_BUILD_PROPERTIES) \
373 $(PRODUCT_PROPERTY_OVERRIDES)
374
Doug Zongker17c83cf2009-04-01 15:48:46 -0700375# The OTA key(s) specified by the product config, if any. The names
376# of these keys are stored in the target-files zip so that post-build
377# signing tools can substitute them for the test key embedded by
378# default.
379PRODUCT_OTA_PUBLIC_KEYS := $(sort \
380 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTA_PUBLIC_KEYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800381
Doug Zongker5d4808d2011-03-16 07:49:13 -0700382PRODUCT_EXTRA_RECOVERY_KEYS := $(sort \
383 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_EXTRA_RECOVERY_KEYS))
Brian Carlstrom8fb5dfc2014-01-16 23:25:27 -0800384
Ying Wang70d617a2014-10-07 18:07:23 -0700385PRODUCT_DEX_PREOPT_DEFAULT_FLAGS := \
386 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_FLAGS))
387PRODUCT_DEX_PREOPT_BOOT_FLAGS := \
388 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_FLAGS))
389# Resolve and setup per-module dex-preopot configs.
390PRODUCT_DEX_PREOPT_MODULE_CONFIGS := \
391 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_MODULE_CONFIGS))
392# If a module has multiple setups, the first takes precedence.
393_pdpmc_modules :=
394$(foreach c,$(PRODUCT_DEX_PREOPT_MODULE_CONFIGS),\
395 $(eval m := $(firstword $(subst =,$(space),$(c))))\
396 $(if $(filter $(_pdpmc_modules),$(m)),,\
397 $(eval _pdpmc_modules += $(m))\
398 $(eval cf := $(patsubst $(m)=%,%,$(c)))\
399 $(eval cf := $(subst $(_PDPMC_SP_PLACE_HOLDER),$(space),$(cf)))\
400 $(eval DEXPREOPT.$(TARGET_PRODUCT).$(m).CONFIG := $(cf))))
401_pdpmc_modules :=