blob: 492219b790417af5455a857dbd804067526af679 [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
Dan Willemsenf23e6bf2016-07-28 15:56:48 -070077$(sort $(shell find $(2) -name "$(1)" -type f | $(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#
Dan Willemsen20f99a62017-10-12 01:35:14 -070091ifeq ($(CALLED_FROM_SETUP),true)
The Android Open Source Project88b60792009-03-03 19:28:42 -080092product_goals := $(strip $(filter PRODUCT-%,$(MAKECMDGOALS)))
93ifdef product_goals
94 # Scrape the product and build names out of the goal,
95 # which should be of the form PRODUCT-<productname>-<buildname>.
96 #
97 ifneq ($(words $(product_goals)),1)
98 $(error Only one PRODUCT-* goal may be specified; saw "$(product_goals)")
99 endif
100 goal_name := $(product_goals)
101 product_goals := $(patsubst PRODUCT-%,%,$(product_goals))
102 product_goals := $(subst -, ,$(product_goals))
103 ifneq ($(words $(product_goals)),2)
104 $(error Bad PRODUCT-* goal "$(goal_name)")
105 endif
106
107 # The product they want
108 TARGET_PRODUCT := $(word 1,$(product_goals))
109
110 # The variant they want
111 TARGET_BUILD_VARIANT := $(word 2,$(product_goals))
112
Ying Wangd0244b32011-11-17 14:51:12 -0800113 ifeq ($(TARGET_BUILD_VARIANT),tests)
114 $(error "tests" has been deprecated as a build variant. Use it as a build goal instead.)
115 endif
116
Dan Willemsen9bfcbc82017-05-25 21:25:24 -0700117 # The build server wants to do make PRODUCT-dream-sdk
118 # which really means TARGET_PRODUCT=dream make sdk.
The Android Open Source Project2f312932009-03-09 11:52:11 -0700119 ifneq ($(filter-out $(INTERNAL_VALID_VARIANTS),$(TARGET_BUILD_VARIANT)),)
Dan Willemsen9bfcbc82017-05-25 21:25:24 -0700120 override MAKECMDGOALS := $(MAKECMDGOALS) $(TARGET_BUILD_VARIANT)
Vince Harronba740ff2015-10-27 16:08:25 -0700121 TARGET_BUILD_VARIANT := userdebug
Doug Zongker17c83cf2009-04-01 15:48:46 -0700122 default_goal_substitution :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800123 else
Dan Willemsen9bfcbc82017-05-25 21:25:24 -0700124 default_goal_substitution := droid
The Android Open Source Project88b60792009-03-03 19:28:42 -0800125 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800126
The Android Open Source Project88b60792009-03-03 19:28:42 -0800127 # Replace the PRODUCT-* goal with the build goal that it refers to.
128 # Note that this will ensure that it appears in the same relative
129 # position, in case it matters.
Dan Willemsen9bfcbc82017-05-25 21:25:24 -0700130 override MAKECMDGOALS := $(patsubst $(goal_name),$(default_goal_substitution),$(MAKECMDGOALS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800131endif
Dan Willemsen20f99a62017-10-12 01:35:14 -0700132endif # CALLED_FROM_SETUP
The Android Open Source Project88b60792009-03-03 19:28:42 -0800133# else: Use the value set in the environment or buildspec.mk.
134
135# ---------------------------------------------------------------
Ying Wang52911302010-05-26 13:13:56 -0700136# Provide "APP-<appname>" targets, which lets you build
137# an unbundled app.
138#
Dan Willemsen20f99a62017-10-12 01:35:14 -0700139ifeq ($(CALLED_FROM_SETUP),true)
Ying Wang52911302010-05-26 13:13:56 -0700140unbundled_goals := $(strip $(filter APP-%,$(MAKECMDGOALS)))
141ifdef unbundled_goals
142 ifneq ($(words $(unbundled_goals)),1)
Shinichiro Hamaji1d97b902015-05-28 17:44:03 +0900143 $(error Only one APP-* goal may be specified; saw "$(unbundled_goals)")
Ying Wang52911302010-05-26 13:13:56 -0700144 endif
Joe Onorato16fa4b22010-06-09 16:35:58 -0700145 TARGET_BUILD_APPS := $(strip $(subst -, ,$(patsubst APP-%,%,$(unbundled_goals))))
Dan Willemsen9bfcbc82017-05-25 21:25:24 -0700146 ifneq ($(filter droid,$(MAKECMDGOALS)),)
147 override MAKECMDGOALS := $(patsubst $(unbundled_goals),,$(MAKECMDGOALS))
Ying Wang52911302010-05-26 13:13:56 -0700148 else
Dan Willemsen9bfcbc82017-05-25 21:25:24 -0700149 override MAKECMDGOALS := $(patsubst $(unbundled_goals),droid,$(MAKECMDGOALS))
Ying Wang52911302010-05-26 13:13:56 -0700150 endif
Ying Wang52911302010-05-26 13:13:56 -0700151endif # unbundled_goals
Dan Willemsen9bfcbc82017-05-25 21:25:24 -0700152endif
Ying Wang52911302010-05-26 13:13:56 -0700153
Ryo Fujiicbb32662011-06-16 16:58:11 -0700154# Default to building dalvikvm on hosts that support it...
155ifeq ($(HOST_OS),linux)
Ryo Fujiicbb32662011-06-16 16:58:11 -0700156# ... or if the if the option is already set
157ifeq ($(WITH_HOST_DALVIK),)
Ying Wangcf5da402011-06-17 17:44:08 -0700158 WITH_HOST_DALVIK := true
Ryo Fujiicbb32662011-06-16 16:58:11 -0700159endif
160endif
Ryo Fujiicbb32662011-06-16 16:58:11 -0700161
162# ---------------------------------------------------------------
The Android Open Source Project88b60792009-03-03 19:28:42 -0800163# Include the product definitions.
164# We need to do this to translate TARGET_PRODUCT into its
165# underlying TARGET_DEVICE before we start defining any rules.
166#
167include $(BUILD_SYSTEM)/node_fns.mk
168include $(BUILD_SYSTEM)/product.mk
169include $(BUILD_SYSTEM)/device.mk
170
Joe Onorato16fa4b22010-06-09 16:35:58 -0700171ifneq ($(strip $(TARGET_BUILD_APPS)),)
Ying Wang157a5e12012-09-27 13:26:25 -0700172# An unbundled app build needs only the core product makefiles.
173all_product_configs := $(call get-product-makefiles,\
174 $(SRC_TARGET_DIR)/product/AndroidProducts.mk)
Ying Wang52911302010-05-26 13:13:56 -0700175else
Ying Wang157a5e12012-09-27 13:26:25 -0700176# Read in all of the product definitions specified by the AndroidProducts.mk
177# files in the tree.
178all_product_configs := $(get-all-product-makefiles)
179endif
180
Dan Willemsen4c364622016-05-16 01:35:57 -0700181all_named_products :=
182
Ying Wang157a5e12012-09-27 13:26:25 -0700183# Find the product config makefile for the current product.
184# all_product_configs consists items like:
185# <product_name>:<path_to_the_product_makefile>
186# or just <path_to_the_product_makefile> in case the product name is the
187# same as the base filename of the product config makefile.
188current_product_makefile :=
189all_product_makefiles :=
190$(foreach f, $(all_product_configs),\
191 $(eval _cpm_words := $(subst :,$(space),$(f)))\
192 $(eval _cpm_word1 := $(word 1,$(_cpm_words)))\
193 $(eval _cpm_word2 := $(word 2,$(_cpm_words)))\
194 $(if $(_cpm_word2),\
195 $(eval all_product_makefiles += $(_cpm_word2))\
Dan Willemsen594c3fc2017-02-24 15:01:12 -0800196 $(eval all_named_products += $(_cpm_word1))\
Ying Wang157a5e12012-09-27 13:26:25 -0700197 $(if $(filter $(TARGET_PRODUCT),$(_cpm_word1)),\
198 $(eval current_product_makefile += $(_cpm_word2)),),\
199 $(eval all_product_makefiles += $(f))\
Dan Willemsen4c364622016-05-16 01:35:57 -0700200 $(eval all_named_products += $(basename $(notdir $(f))))\
Ying Wang157a5e12012-09-27 13:26:25 -0700201 $(if $(filter $(TARGET_PRODUCT),$(basename $(notdir $(f)))),\
202 $(eval current_product_makefile += $(f)),)))
203_cpm_words :=
204_cpm_word1 :=
205_cpm_word2 :=
206current_product_makefile := $(strip $(current_product_makefile))
207all_product_makefiles := $(strip $(all_product_makefiles))
208
Ying Wang67132ba2015-10-28 16:42:39 -0700209load_all_product_makefiles :=
210ifneq (,$(filter product-graph, $(MAKECMDGOALS)))
211ifeq ($(ANDROID_PRODUCT_GRAPH),--all)
212load_all_product_makefiles := true
213endif
214endif
215ifneq (,$(filter dump-products,$(MAKECMDGOALS)))
216ifeq ($(ANDROID_DUMP_PRODUCTS),all)
217load_all_product_makefiles := true
218endif
219endif
220
221ifeq ($(load_all_product_makefiles),true)
Ying Wang157a5e12012-09-27 13:26:25 -0700222# Import all product makefiles.
223$(call import-products, $(all_product_makefiles))
224else
225# Import just the current product.
226ifndef current_product_makefile
Ying Wang0c4eb412012-09-27 13:26:25 -0700227$(error Can not locate config makefile for product "$(TARGET_PRODUCT)")
Ying Wang157a5e12012-09-27 13:26:25 -0700228endif
229ifneq (1,$(words $(current_product_makefile)))
230$(error Product "$(TARGET_PRODUCT)" ambiguous: matches $(current_product_makefile))
231endif
232$(call import-products, $(current_product_makefile))
233endif # Import all or just the current product makefile
234
235# Sanity check
The Android Open Source Project88b60792009-03-03 19:28:42 -0800236$(check-all-products)
Ying Wangcae4d122010-11-02 23:04:24 -0700237
238ifneq ($(filter dump-products, $(MAKECMDGOALS)),)
239$(dump-products)
240$(error done)
241endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800242
243# Convert a short name like "sooner" into the path to the product
244# file defining that product.
245#
246INTERNAL_PRODUCT := $(call resolve-short-product-name, $(TARGET_PRODUCT))
Ying Wang157a5e12012-09-27 13:26:25 -0700247ifneq ($(current_product_makefile),$(INTERNAL_PRODUCT))
248$(error PRODUCT_NAME inconsistent in $(current_product_makefile) and $(INTERNAL_PRODUCT))
249endif
250current_product_makefile :=
251all_product_makefiles :=
252all_product_configs :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800253
Ying Wang22ef7982013-07-10 18:12:33 -0700254
255#############################################################################
Ying Wang22ef7982013-07-10 18:12:33 -0700256
Ying Wang0650d152013-07-23 17:57:38 -0700257# A list of module names of BOOTCLASSPATH (jar files)
Ying Wangad6674c2014-01-07 14:31:49 -0800258PRODUCT_BOOT_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BOOT_JARS))
Narayan Kamath89ec4962014-08-05 14:51:08 +0100259PRODUCT_SYSTEM_SERVER_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_JARS))
Nicolas Geoffraycdd43432017-03-24 14:45:59 +0000260PRODUCT_SYSTEM_SERVER_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_APPS))
Nicolas Geoffray4a0ad4a2017-06-12 15:19:16 +0100261PRODUCT_DEXPREOPT_SPEED_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEXPREOPT_SPEED_APPS))
Ying Wang0650d152013-07-23 17:57:38 -0700262
The Android Open Source Project88b60792009-03-03 19:28:42 -0800263# Find the device that this product maps to.
264TARGET_DEVICE := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEVICE)
265
266# Figure out which resoure configuration options to use for this
267# product.
268PRODUCT_LOCALES := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_LOCALES))
269# TODO: also keep track of things like "port", "land" in product files.
270
271# If CUSTOM_LOCALES contains any locales not already included
272# in PRODUCT_LOCALES, add them to PRODUCT_LOCALES.
273extra_locales := $(filter-out $(PRODUCT_LOCALES),$(CUSTOM_LOCALES))
274ifneq (,$(extra_locales))
Dave Bortd14f6d92009-03-24 20:50:42 -0700275 ifneq ($(CALLED_FROM_SETUP),true)
276 # Don't spam stdout, because envsetup.sh may be scraping values from it.
277 $(info Adding CUSTOM_LOCALES [$(extra_locales)] to PRODUCT_LOCALES [$(PRODUCT_LOCALES)])
278 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800279 PRODUCT_LOCALES += $(extra_locales)
280 extra_locales :=
281endif
282
Ying Wang4f1ab922011-03-15 13:19:30 -0700283# Add PRODUCT_LOCALES to PRODUCT_AAPT_CONFIG
Adam Lesinski83ee6d72014-12-02 16:13:09 -0800284PRODUCT_AAPT_CONFIG := $(strip $(PRODUCT_LOCALES) $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_CONFIG))
Dianne Hackborna0f464a2011-10-14 19:37:57 -0700285PRODUCT_AAPT_PREF_CONFIG := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREF_CONFIG))
Ying Wang60686582014-12-10 12:40:09 -0800286PRODUCT_AAPT_PREBUILT_DPI := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREBUILT_DPI))
Ying Wang4f1ab922011-03-15 13:19:30 -0700287
Ying Wang91341e52013-11-22 10:07:51 -0800288# Keep a copy of the space-separated config
289PRODUCT_AAPT_CONFIG_SP := $(PRODUCT_AAPT_CONFIG)
290
The Android Open Source Project88b60792009-03-03 19:28:42 -0800291# Convert spaces to commas.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800292PRODUCT_AAPT_CONFIG := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700293 $(subst $(space),$(comma),$(strip $(PRODUCT_AAPT_CONFIG)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800294
Igor Viarheichykc4dfe6e2014-06-26 14:56:21 -0700295# product-scoped aapt flags
296PRODUCT_AAPT_FLAGS :=
Adam Lesinski497888d2016-01-26 12:17:32 -0800297PRODUCT_AAPT2_CFLAGS :=
Igor Viarheichykc4dfe6e2014-06-26 14:56:21 -0700298ifneq ($(filter en_XA ar_XB,$(PRODUCT_LOCALES)),)
Adam Lesinski497888d2016-01-26 12:17:32 -0800299 # Force generating resources for pseudo-locales.
Ying Wange295c3d2016-02-24 14:11:55 -0800300 PRODUCT_AAPT2_CFLAGS += --pseudo-localize
301 PRODUCT_AAPT_FLAGS += --pseudo-localize
Igor Viarheichykc4dfe6e2014-06-26 14:56:21 -0700302endif
303
The Android Open Source Project88b60792009-03-03 19:28:42 -0800304PRODUCT_BRAND := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BRAND))
305
306PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MODEL))
307ifndef PRODUCT_MODEL
Doug Zongker17c83cf2009-04-01 15:48:46 -0700308 PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_NAME))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800309endif
310
311PRODUCT_MANUFACTURER := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700312 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MANUFACTURER))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800313ifndef PRODUCT_MANUFACTURER
314 PRODUCT_MANUFACTURER := unknown
315endif
316
Joe Onorato700b88e2010-10-05 17:33:58 -0400317ifeq ($(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS),)
318 TARGET_AAPT_CHARACTERISTICS := default
319else
320 TARGET_AAPT_CHARACTERISTICS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS))
321endif
322
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700323PRODUCT_DEFAULT_WIFI_CHANNELS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700324 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_WIFI_CHANNELS))
325
326PRODUCT_DEFAULT_DEV_CERTIFICATE := \
327 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_DEV_CERTIFICATE))
328ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE
329ifneq (1,$(words $(PRODUCT_DEFAULT_DEV_CERTIFICATE)))
330 $(error PRODUCT_DEFAULT_DEV_CERTIFICATE='$(PRODUCT_DEFAULT_DEV_CERTIFICATE)', \
331 only 1 certificate is allowed.)
332endif
333endif
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700334
Ying Wang4b0486b2012-09-20 16:35:36 -0700335# A list of words like <source path>:<destination path>[:<owner>].
336# The file at the source path should be copied to the destination path
337# when building this product. <destination path> is relative to
338# $(PRODUCT_OUT), so it should look like, e.g., "system/etc/file.xml".
339# The rules for these copy steps are defined in build/core/Makefile.
340# The optional :<owner> is used to indicate the owner of a vendor file.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800341PRODUCT_COPY_FILES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700342 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COPY_FILES))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800343
The Android Open Source Project88b60792009-03-03 19:28:42 -0800344# A list of property assignments, like "key = value", with zero or more
345# whitespace characters on either side of the '='.
346PRODUCT_PROPERTY_OVERRIDES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700347 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PROPERTY_OVERRIDES))
Jaekyun Seok7ace0d62017-01-20 13:17:12 +0900348.KATI_READONLY := PRODUCT_PROPERTY_OVERRIDES
The Android Open Source Project88b60792009-03-03 19:28:42 -0800349
Gustav Sennton81ee1862016-05-27 14:07:54 +0100350PRODUCT_SHIPPING_API_LEVEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SHIPPING_API_LEVEL))
Gustav Sennton81ee1862016-05-27 14:07:54 +0100351
Mike Lockwood0d23fec2011-06-09 14:54:40 -0700352# A list of property assignments, like "key = value", with zero or more
353# whitespace characters on either side of the '='.
354# used for adding properties to default.prop
355PRODUCT_DEFAULT_PROPERTY_OVERRIDES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700356 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_PROPERTY_OVERRIDES))
Jaekyun Seok7ace0d62017-01-20 13:17:12 +0900357.KATI_READONLY := PRODUCT_DEFAULT_PROPERTY_OVERRIDES
Mike Lockwood0d23fec2011-06-09 14:54:40 -0700358
The Android Open Source Project88b60792009-03-03 19:28:42 -0800359# Should we use the default resources or add any product specific overlays
360PRODUCT_PACKAGE_OVERLAYS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700361 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGE_OVERLAYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800362DEVICE_PACKAGE_OVERLAYS := \
363 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).DEVICE_PACKAGE_OVERLAYS))
364
Dima Zavinf9269902012-03-16 09:57:11 -0700365# The list of product-specific kernel header dirs
366PRODUCT_VENDOR_KERNEL_HEADERS := \
367 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_VENDOR_KERNEL_HEADERS)
368
Doug Zongker17c83cf2009-04-01 15:48:46 -0700369# The OTA key(s) specified by the product config, if any. The names
370# of these keys are stored in the target-files zip so that post-build
371# signing tools can substitute them for the test key embedded by
372# default.
373PRODUCT_OTA_PUBLIC_KEYS := $(sort \
374 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTA_PUBLIC_KEYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800375
Doug Zongker5d4808d2011-03-16 07:49:13 -0700376PRODUCT_EXTRA_RECOVERY_KEYS := $(sort \
377 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_EXTRA_RECOVERY_KEYS))
Brian Carlstrom8fb5dfc2014-01-16 23:25:27 -0800378
Ying Wang70d617a2014-10-07 18:07:23 -0700379PRODUCT_DEX_PREOPT_DEFAULT_FLAGS := \
380 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_FLAGS))
381PRODUCT_DEX_PREOPT_BOOT_FLAGS := \
382 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_FLAGS))
Mathieu Chartierfcc8d8b2017-05-05 17:22:37 -0700383PRODUCT_DEX_PREOPT_PROFILE_DIR := \
384 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_PROFILE_DIR))
385
Mathieu Chartiera61acf62017-06-28 18:23:37 -0700386# Boot image options.
387PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE := \
388 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE))
389PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION := \
390 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION))
391
Mathieu Chartier6228ec22017-06-23 10:44:45 -0700392PRODUCT_SYSTEM_SERVER_COMPILER_FILTER := \
393 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_COMPILER_FILTER))
Mathieu Chartierf0db9082017-06-23 14:47:56 -0700394PRODUCT_SYSTEM_SERVER_DEBUG_INFO := \
395 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_DEBUG_INFO))
Mathieu Chartier6228ec22017-06-23 10:44:45 -0700396
Andreas Gampebb5454b2016-06-27 15:15:31 -0700397# Resolve and setup per-module dex-preopt configs.
Ying Wang70d617a2014-10-07 18:07:23 -0700398PRODUCT_DEX_PREOPT_MODULE_CONFIGS := \
399 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_MODULE_CONFIGS))
400# If a module has multiple setups, the first takes precedence.
401_pdpmc_modules :=
402$(foreach c,$(PRODUCT_DEX_PREOPT_MODULE_CONFIGS),\
403 $(eval m := $(firstword $(subst =,$(space),$(c))))\
404 $(if $(filter $(_pdpmc_modules),$(m)),,\
405 $(eval _pdpmc_modules += $(m))\
406 $(eval cf := $(patsubst $(m)=%,%,$(c)))\
407 $(eval cf := $(subst $(_PDPMC_SP_PLACE_HOLDER),$(space),$(cf)))\
408 $(eval DEXPREOPT.$(TARGET_PRODUCT).$(m).CONFIG := $(cf))))
409_pdpmc_modules :=
Andreas Gampebb5454b2016-06-27 15:15:31 -0700410
411# Resolve and setup per-module sanitizer configs.
412PRODUCT_SANITIZER_MODULE_CONFIGS := \
413 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SANITIZER_MODULE_CONFIGS))
414# If a module has multiple setups, the first takes precedence.
415_psmc_modules :=
416$(foreach c,$(PRODUCT_SANITIZER_MODULE_CONFIGS),\
417 $(eval m := $(firstword $(subst =,$(space),$(c))))\
418 $(if $(filter $(_psmc_modules),$(m)),,\
419 $(eval _psmc_modules += $(m))\
420 $(eval cf := $(patsubst $(m)=%,%,$(c)))\
421 $(eval cf := $(subst $(_PSMC_SP_PLACE_HOLDER),$(space),$(cf)))\
422 $(eval SANITIZER.$(TARGET_PRODUCT).$(m).CONFIG := $(cf))))
423_psmc_modules :=
Hiroshi Yamauchi64594c42016-12-15 16:00:41 -0800424
Andreas Gampe831fc712017-06-30 11:36:26 -0700425# Whether the product wants to ship libartd. For rules and meaning, see art/Android.mk.
426PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD := \
427 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD))
428
Hiroshi Yamauchi64594c42016-12-15 16:00:41 -0800429# Make this art variable visible to soong_config.mk.
430PRODUCT_ART_USE_READ_BARRIER := \
431 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_USE_READ_BARRIER))
Alex Deymo8fe63c32017-03-02 22:08:41 -0800432
433# Whether the product is an Android Things variant.
434PRODUCT_IOT := \
435 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_IOT))
Jaekyun Seok1b224282017-03-30 11:25:02 +0900436
Jaekyun Seokccee95e2017-09-01 17:23:25 +0900437# Resource overlay list which must be excluded from enforcing RRO.
438PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS := \
439 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS))
440
Jaekyun Seok1b224282017-03-30 11:25:02 +0900441# Package list to apply enforcing RRO.
442PRODUCT_ENFORCE_RRO_TARGETS := \
443 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_TARGETS))
Julius D'souza001c6762017-05-03 13:43:27 -0700444
445# Add reserved headroom to a system image.
446PRODUCT_SYSTEM_HEADROOM := \
447 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_HEADROOM))
Przemyslaw Szczepaniak2e81b3c2017-06-30 14:51:12 +0100448
449# Whether to save disk space by minimizing java debug info
450PRODUCT_MINIMIZE_JAVA_DEBUG_INFO := \
451 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MINIMIZE_JAVA_DEBUG_INFO))
Ivan Lozano9a82bfd2017-07-13 14:49:12 -0700452
453# Whether any paths are excluded from sanitization when SANITIZE_TARGET=integer_overflow
454PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS := \
455 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS))