blob: 9406812aba1db98b823fecc4d47d2f886c761dff [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
Dan Willemsen2c3f8362017-10-30 17:57:59 -0700154# Now that we've parsed APP-* and PRODUCT-*, mark these as readonly
155TARGET_BUILD_APPS ?=
156.KATI_READONLY := \
157 TARGET_PRODUCT \
158 TARGET_BUILD_VARIANT \
159 TARGET_BUILD_APPS
160
Ryo Fujiicbb32662011-06-16 16:58:11 -0700161# Default to building dalvikvm on hosts that support it...
162ifeq ($(HOST_OS),linux)
Ryo Fujiicbb32662011-06-16 16:58:11 -0700163# ... or if the if the option is already set
164ifeq ($(WITH_HOST_DALVIK),)
Ying Wangcf5da402011-06-17 17:44:08 -0700165 WITH_HOST_DALVIK := true
Ryo Fujiicbb32662011-06-16 16:58:11 -0700166endif
167endif
Ryo Fujiicbb32662011-06-16 16:58:11 -0700168
169# ---------------------------------------------------------------
The Android Open Source Project88b60792009-03-03 19:28:42 -0800170# Include the product definitions.
171# We need to do this to translate TARGET_PRODUCT into its
172# underlying TARGET_DEVICE before we start defining any rules.
173#
174include $(BUILD_SYSTEM)/node_fns.mk
175include $(BUILD_SYSTEM)/product.mk
176include $(BUILD_SYSTEM)/device.mk
177
Joe Onorato16fa4b22010-06-09 16:35:58 -0700178ifneq ($(strip $(TARGET_BUILD_APPS)),)
Ying Wang157a5e12012-09-27 13:26:25 -0700179# An unbundled app build needs only the core product makefiles.
180all_product_configs := $(call get-product-makefiles,\
181 $(SRC_TARGET_DIR)/product/AndroidProducts.mk)
Ying Wang52911302010-05-26 13:13:56 -0700182else
Ying Wang157a5e12012-09-27 13:26:25 -0700183# Read in all of the product definitions specified by the AndroidProducts.mk
184# files in the tree.
185all_product_configs := $(get-all-product-makefiles)
186endif
187
Dan Willemsen4c364622016-05-16 01:35:57 -0700188all_named_products :=
189
Ying Wang157a5e12012-09-27 13:26:25 -0700190# Find the product config makefile for the current product.
191# all_product_configs consists items like:
192# <product_name>:<path_to_the_product_makefile>
193# or just <path_to_the_product_makefile> in case the product name is the
194# same as the base filename of the product config makefile.
195current_product_makefile :=
196all_product_makefiles :=
197$(foreach f, $(all_product_configs),\
198 $(eval _cpm_words := $(subst :,$(space),$(f)))\
199 $(eval _cpm_word1 := $(word 1,$(_cpm_words)))\
200 $(eval _cpm_word2 := $(word 2,$(_cpm_words)))\
201 $(if $(_cpm_word2),\
202 $(eval all_product_makefiles += $(_cpm_word2))\
Dan Willemsen594c3fc2017-02-24 15:01:12 -0800203 $(eval all_named_products += $(_cpm_word1))\
Ying Wang157a5e12012-09-27 13:26:25 -0700204 $(if $(filter $(TARGET_PRODUCT),$(_cpm_word1)),\
205 $(eval current_product_makefile += $(_cpm_word2)),),\
206 $(eval all_product_makefiles += $(f))\
Dan Willemsen4c364622016-05-16 01:35:57 -0700207 $(eval all_named_products += $(basename $(notdir $(f))))\
Ying Wang157a5e12012-09-27 13:26:25 -0700208 $(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))
Nicolas Geoffraycdd43432017-03-24 14:45:59 +0000267PRODUCT_SYSTEM_SERVER_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_APPS))
Nicolas Geoffray4a0ad4a2017-06-12 15:19:16 +0100268PRODUCT_DEXPREOPT_SPEED_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEXPREOPT_SPEED_APPS))
Nicolas Geoffraya95fbd12017-09-19 13:10:31 +0100269PRODUCT_LOADED_BY_PRIVILEGED_MODULES := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_LOADED_BY_PRIVILEGED_MODULES))
Ying Wang0650d152013-07-23 17:57:38 -0700270
Mathieu Chartier55eabd52017-09-15 13:40:48 -0700271# All of the apps that we force preopt, this overrides WITH_DEXPREOPT.
272PRODUCT_ALWAYS_PREOPT_EXTRACTED_APK := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ALWAYS_PREOPT_EXTRACTED_APK))
273
The Android Open Source Project88b60792009-03-03 19:28:42 -0800274# Find the device that this product maps to.
275TARGET_DEVICE := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEVICE)
276
277# Figure out which resoure configuration options to use for this
278# product.
279PRODUCT_LOCALES := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_LOCALES))
280# TODO: also keep track of things like "port", "land" in product files.
281
282# If CUSTOM_LOCALES contains any locales not already included
283# in PRODUCT_LOCALES, add them to PRODUCT_LOCALES.
284extra_locales := $(filter-out $(PRODUCT_LOCALES),$(CUSTOM_LOCALES))
285ifneq (,$(extra_locales))
Dave Bortd14f6d92009-03-24 20:50:42 -0700286 ifneq ($(CALLED_FROM_SETUP),true)
287 # Don't spam stdout, because envsetup.sh may be scraping values from it.
288 $(info Adding CUSTOM_LOCALES [$(extra_locales)] to PRODUCT_LOCALES [$(PRODUCT_LOCALES)])
289 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800290 PRODUCT_LOCALES += $(extra_locales)
291 extra_locales :=
292endif
293
Ying Wang4f1ab922011-03-15 13:19:30 -0700294# Add PRODUCT_LOCALES to PRODUCT_AAPT_CONFIG
Adam Lesinski83ee6d72014-12-02 16:13:09 -0800295PRODUCT_AAPT_CONFIG := $(strip $(PRODUCT_LOCALES) $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_CONFIG))
Dianne Hackborna0f464a2011-10-14 19:37:57 -0700296PRODUCT_AAPT_PREF_CONFIG := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREF_CONFIG))
Ying Wang60686582014-12-10 12:40:09 -0800297PRODUCT_AAPT_PREBUILT_DPI := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREBUILT_DPI))
Ying Wang4f1ab922011-03-15 13:19:30 -0700298
Ying Wang91341e52013-11-22 10:07:51 -0800299# Keep a copy of the space-separated config
300PRODUCT_AAPT_CONFIG_SP := $(PRODUCT_AAPT_CONFIG)
301
The Android Open Source Project88b60792009-03-03 19:28:42 -0800302# Convert spaces to commas.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800303PRODUCT_AAPT_CONFIG := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700304 $(subst $(space),$(comma),$(strip $(PRODUCT_AAPT_CONFIG)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800305
306PRODUCT_BRAND := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BRAND))
307
308PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MODEL))
309ifndef PRODUCT_MODEL
Doug Zongker17c83cf2009-04-01 15:48:46 -0700310 PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_NAME))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800311endif
312
313PRODUCT_MANUFACTURER := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700314 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MANUFACTURER))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800315ifndef PRODUCT_MANUFACTURER
316 PRODUCT_MANUFACTURER := unknown
317endif
318
Joe Onorato700b88e2010-10-05 17:33:58 -0400319ifeq ($(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS),)
320 TARGET_AAPT_CHARACTERISTICS := default
321else
322 TARGET_AAPT_CHARACTERISTICS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS))
323endif
324
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700325PRODUCT_DEFAULT_WIFI_CHANNELS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700326 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_WIFI_CHANNELS))
327
328PRODUCT_DEFAULT_DEV_CERTIFICATE := \
329 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_DEV_CERTIFICATE))
330ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE
331ifneq (1,$(words $(PRODUCT_DEFAULT_DEV_CERTIFICATE)))
332 $(error PRODUCT_DEFAULT_DEV_CERTIFICATE='$(PRODUCT_DEFAULT_DEV_CERTIFICATE)', \
333 only 1 certificate is allowed.)
334endif
335endif
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700336
Ying Wang4b0486b2012-09-20 16:35:36 -0700337# A list of words like <source path>:<destination path>[:<owner>].
338# The file at the source path should be copied to the destination path
339# when building this product. <destination path> is relative to
340# $(PRODUCT_OUT), so it should look like, e.g., "system/etc/file.xml".
Colin Cross6cdc5d22017-10-20 11:37:33 -0700341# The rules for these copy steps are defined in build/make/core/Makefile.
Ying Wang4b0486b2012-09-20 16:35:36 -0700342# The optional :<owner> is used to indicate the owner of a vendor file.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800343PRODUCT_COPY_FILES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700344 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COPY_FILES))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800345
The Android Open Source Project88b60792009-03-03 19:28:42 -0800346# A list of property assignments, like "key = value", with zero or more
347# whitespace characters on either side of the '='.
348PRODUCT_PROPERTY_OVERRIDES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700349 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PROPERTY_OVERRIDES))
Jaekyun Seok7ace0d62017-01-20 13:17:12 +0900350.KATI_READONLY := PRODUCT_PROPERTY_OVERRIDES
The Android Open Source Project88b60792009-03-03 19:28:42 -0800351
Gustav Sennton81ee1862016-05-27 14:07:54 +0100352PRODUCT_SHIPPING_API_LEVEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SHIPPING_API_LEVEL))
Gustav Sennton81ee1862016-05-27 14:07:54 +0100353
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))
Jaekyun Seok7ace0d62017-01-20 13:17:12 +0900359.KATI_READONLY := PRODUCT_DEFAULT_PROPERTY_OVERRIDES
Mike Lockwood0d23fec2011-06-09 14:54:40 -0700360
Jaekyun Seokb31b9ba2017-11-03 15:18:55 +0900361# A list of property assignments, like "key = value", with zero or more
362# whitespace characters on either side of the '='.
363# used for adding properties to default.prop of system partition
364PRODUCT_SYSTEM_DEFAULT_PROPERTIES := \
365 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_DEFAULT_PROPERTIES))
366.KATI_READONLY := PRODUCT_SYSTEM_DEFAULT_PROPERTIES
367
Jaekyun Seokb7735d82017-11-27 17:04:47 +0900368# A list of property assignments, like "key = value", with zero or more
369# whitespace characters on either side of the '='.
370# used for adding properties to build.prop of product partition
371PRODUCT_PRODUCT_PROPERTIES := \
372 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PRODUCT_PROPERTIES))
373.KATI_READONLY := PRODUCT_PRODUCT_PROPERTIES
374
The Android Open Source Project88b60792009-03-03 19:28:42 -0800375# Should we use the default resources or add any product specific overlays
376PRODUCT_PACKAGE_OVERLAYS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700377 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGE_OVERLAYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800378DEVICE_PACKAGE_OVERLAYS := \
379 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).DEVICE_PACKAGE_OVERLAYS))
380
Dima Zavinf9269902012-03-16 09:57:11 -0700381# The list of product-specific kernel header dirs
382PRODUCT_VENDOR_KERNEL_HEADERS := \
383 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_VENDOR_KERNEL_HEADERS)
384
Doug Zongker17c83cf2009-04-01 15:48:46 -0700385# The OTA key(s) specified by the product config, if any. The names
386# of these keys are stored in the target-files zip so that post-build
387# signing tools can substitute them for the test key embedded by
388# default.
389PRODUCT_OTA_PUBLIC_KEYS := $(sort \
390 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTA_PUBLIC_KEYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800391
Doug Zongker5d4808d2011-03-16 07:49:13 -0700392PRODUCT_EXTRA_RECOVERY_KEYS := $(sort \
393 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_EXTRA_RECOVERY_KEYS))
Brian Carlstrom8fb5dfc2014-01-16 23:25:27 -0800394
Mathieu Chartiere8fb7cf2018-02-15 13:19:38 -0800395PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER := \
396 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER))
Ying Wang70d617a2014-10-07 18:07:23 -0700397PRODUCT_DEX_PREOPT_DEFAULT_FLAGS := \
398 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_FLAGS))
Mathieu Chartier5c658ac2018-02-15 13:19:38 -0800399PRODUCT_DEX_PREOPT_GENERATE_DM_FILES := \
400 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_GENERATE_DM_FILES))
Ying Wang70d617a2014-10-07 18:07:23 -0700401PRODUCT_DEX_PREOPT_BOOT_FLAGS := \
402 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_FLAGS))
Mathieu Chartierfcc8d8b2017-05-05 17:22:37 -0700403PRODUCT_DEX_PREOPT_PROFILE_DIR := \
404 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_PROFILE_DIR))
405
Mathieu Chartiera61acf62017-06-28 18:23:37 -0700406# Boot image options.
407PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE := \
408 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE))
409PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION := \
410 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION))
411
Mathieu Chartier6228ec22017-06-23 10:44:45 -0700412PRODUCT_SYSTEM_SERVER_COMPILER_FILTER := \
413 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_COMPILER_FILTER))
Mathieu Chartierf0db9082017-06-23 14:47:56 -0700414PRODUCT_SYSTEM_SERVER_DEBUG_INFO := \
415 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_DEBUG_INFO))
Andreas Gampec3e15192018-03-19 14:28:15 -0700416PRODUCT_OTHER_JAVA_DEBUG_INFO := \
417 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTHER_JAVA_DEBUG_INFO))
Mathieu Chartier6228ec22017-06-23 10:44:45 -0700418
Andreas Gampebb5454b2016-06-27 15:15:31 -0700419# Resolve and setup per-module dex-preopt configs.
Ying Wang70d617a2014-10-07 18:07:23 -0700420PRODUCT_DEX_PREOPT_MODULE_CONFIGS := \
421 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_MODULE_CONFIGS))
422# If a module has multiple setups, the first takes precedence.
423_pdpmc_modules :=
424$(foreach c,$(PRODUCT_DEX_PREOPT_MODULE_CONFIGS),\
425 $(eval m := $(firstword $(subst =,$(space),$(c))))\
426 $(if $(filter $(_pdpmc_modules),$(m)),,\
427 $(eval _pdpmc_modules += $(m))\
428 $(eval cf := $(patsubst $(m)=%,%,$(c)))\
429 $(eval cf := $(subst $(_PDPMC_SP_PLACE_HOLDER),$(space),$(cf)))\
430 $(eval DEXPREOPT.$(TARGET_PRODUCT).$(m).CONFIG := $(cf))))
431_pdpmc_modules :=
Andreas Gampebb5454b2016-06-27 15:15:31 -0700432
433# Resolve and setup per-module sanitizer configs.
434PRODUCT_SANITIZER_MODULE_CONFIGS := \
435 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SANITIZER_MODULE_CONFIGS))
436# If a module has multiple setups, the first takes precedence.
437_psmc_modules :=
438$(foreach c,$(PRODUCT_SANITIZER_MODULE_CONFIGS),\
439 $(eval m := $(firstword $(subst =,$(space),$(c))))\
440 $(if $(filter $(_psmc_modules),$(m)),,\
441 $(eval _psmc_modules += $(m))\
442 $(eval cf := $(patsubst $(m)=%,%,$(c)))\
443 $(eval cf := $(subst $(_PSMC_SP_PLACE_HOLDER),$(space),$(cf)))\
444 $(eval SANITIZER.$(TARGET_PRODUCT).$(m).CONFIG := $(cf))))
445_psmc_modules :=
Hiroshi Yamauchi64594c42016-12-15 16:00:41 -0800446
Andreas Gampe831fc712017-06-30 11:36:26 -0700447# Whether the product wants to ship libartd. For rules and meaning, see art/Android.mk.
448PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD := \
449 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD))
450
Hiroshi Yamauchi64594c42016-12-15 16:00:41 -0800451# Make this art variable visible to soong_config.mk.
452PRODUCT_ART_USE_READ_BARRIER := \
453 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_USE_READ_BARRIER))
Alex Deymo8fe63c32017-03-02 22:08:41 -0800454
455# Whether the product is an Android Things variant.
456PRODUCT_IOT := \
457 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_IOT))
Jaekyun Seok1b224282017-03-30 11:25:02 +0900458
Jaekyun Seokccee95e2017-09-01 17:23:25 +0900459# Resource overlay list which must be excluded from enforcing RRO.
460PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS := \
461 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS))
462
Jaekyun Seok1b224282017-03-30 11:25:02 +0900463# Package list to apply enforcing RRO.
464PRODUCT_ENFORCE_RRO_TARGETS := \
465 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_TARGETS))
Julius D'souza001c6762017-05-03 13:43:27 -0700466
467# Add reserved headroom to a system image.
468PRODUCT_SYSTEM_HEADROOM := \
469 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_HEADROOM))
Przemyslaw Szczepaniak2e81b3c2017-06-30 14:51:12 +0100470
471# Whether to save disk space by minimizing java debug info
472PRODUCT_MINIMIZE_JAVA_DEBUG_INFO := \
473 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MINIMIZE_JAVA_DEBUG_INFO))
Ivan Lozano9a82bfd2017-07-13 14:49:12 -0700474
475# Whether any paths are excluded from sanitization when SANITIZE_TARGET=integer_overflow
476PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS := \
477 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS))
Dan Willemsen0bd79382017-11-03 15:53:52 -0700478
479# ADB keys for debuggable builds
480PRODUCT_ADB_KEYS :=
481ifneq ($(filter eng userdebug,$(TARGET_BUILD_VARIANT)),)
482 PRODUCT_ADB_KEYS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ADB_KEYS))
483endif
484ifneq ($(filter-out 0 1,$(words $(PRODUCT_ADB_KEYS))),)
485 $(error Only one file may be in PRODUCT_ADB_KEYS: $(PRODUCT_ADB_KEYS))
486endif
487.KATI_READONLY := PRODUCT_ADB_KEYS
Vishwath Mohan23b2d2e2017-10-31 02:25:16 -0700488
489# Whether any paths are excluded from sanitization when SANITIZE_TARGET=cfi
490PRODUCT_CFI_EXCLUDE_PATHS := \
491 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CFI_EXCLUDE_PATHS))
492
493# Whether any paths should have CFI enabled for components
494PRODUCT_CFI_INCLUDE_PATHS := \
495 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CFI_INCLUDE_PATHS))
Jeff Gaston1fe28d32017-11-21 15:05:07 -0800496
497# which Soong namespaces to export to Make
Alexey Polyudovea55e8c2018-01-24 16:55:52 -0800498PRODUCT_SOONG_NAMESPACES := \
Jeff Gaston1fe28d32017-11-21 15:05:07 -0800499 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SOONG_NAMESPACES))
Jaekyun Seok0538ff72018-01-16 14:14:59 +0900500
501# A flag to override PRODUCT_COMPATIBLE_PROPERTY
502PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE := \
503 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE))
504
505# Whether the whitelist of actionable compatible properties should be disabled or not
506PRODUCT_ACTIONABLE_COMPATIBLE_PROPERTY_DISABLE := \
507 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ACTIONABLE_COMPATIBLE_PROPERTY_DISABLE))