blob: 27af09e7fb9d97b39827368ccf90017365fb2e49 [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),\
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700198 $(eval _cpm_words := $(call _decode-product-name,$(f)))\
Ying Wang157a5e12012-09-27 13:26:25 -0700199 $(eval _cpm_word1 := $(word 1,$(_cpm_words)))\
200 $(eval _cpm_word2 := $(word 2,$(_cpm_words)))\
Dan Willemsenaf2e1f82018-04-04 15:41:41 -0700201 $(eval all_product_makefiles += $(_cpm_word2))\
202 $(eval all_named_products += $(_cpm_word1))\
203 $(if $(filter $(TARGET_PRODUCT),$(_cpm_word1)),\
204 $(eval current_product_makefile += $(_cpm_word2)),))
Ying Wang157a5e12012-09-27 13:26:25 -0700205_cpm_words :=
206_cpm_word1 :=
207_cpm_word2 :=
208current_product_makefile := $(strip $(current_product_makefile))
209all_product_makefiles := $(strip $(all_product_makefiles))
210
Ying Wang67132ba2015-10-28 16:42:39 -0700211load_all_product_makefiles :=
212ifneq (,$(filter product-graph, $(MAKECMDGOALS)))
213ifeq ($(ANDROID_PRODUCT_GRAPH),--all)
214load_all_product_makefiles := true
215endif
216endif
217ifneq (,$(filter dump-products,$(MAKECMDGOALS)))
218ifeq ($(ANDROID_DUMP_PRODUCTS),all)
219load_all_product_makefiles := true
220endif
221endif
222
223ifeq ($(load_all_product_makefiles),true)
Ying Wang157a5e12012-09-27 13:26:25 -0700224# Import all product makefiles.
225$(call import-products, $(all_product_makefiles))
226else
227# Import just the current product.
228ifndef current_product_makefile
Ying Wang0c4eb412012-09-27 13:26:25 -0700229$(error Can not locate config makefile for product "$(TARGET_PRODUCT)")
Ying Wang157a5e12012-09-27 13:26:25 -0700230endif
231ifneq (1,$(words $(current_product_makefile)))
232$(error Product "$(TARGET_PRODUCT)" ambiguous: matches $(current_product_makefile))
233endif
234$(call import-products, $(current_product_makefile))
235endif # Import all or just the current product makefile
236
Anton Hansson837425b2018-06-01 14:18:14 +0100237# Import all the products that have made artifact path requirements, so that we can verify
238# the artifacts they produce.
239$(foreach makefile,$(ARTIFACT_PATH_REQUIREMENT_PRODUCTS),\
240 $(if $(filter-out $(makefile),$(PRODUCTS)),$(eval $(call import-products,$(makefile))))\
241)
242
Ying Wang157a5e12012-09-27 13:26:25 -0700243# Sanity check
The Android Open Source Project88b60792009-03-03 19:28:42 -0800244$(check-all-products)
Ying Wangcae4d122010-11-02 23:04:24 -0700245
The Android Open Source Project88b60792009-03-03 19:28:42 -0800246# Convert a short name like "sooner" into the path to the product
247# file defining that product.
248#
249INTERNAL_PRODUCT := $(call resolve-short-product-name, $(TARGET_PRODUCT))
Ying Wang157a5e12012-09-27 13:26:25 -0700250ifneq ($(current_product_makefile),$(INTERNAL_PRODUCT))
251$(error PRODUCT_NAME inconsistent in $(current_product_makefile) and $(INTERNAL_PRODUCT))
252endif
253current_product_makefile :=
254all_product_makefiles :=
255all_product_configs :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800256
Ying Wang22ef7982013-07-10 18:12:33 -0700257
258#############################################################################
Ying Wang22ef7982013-07-10 18:12:33 -0700259
Ying Wang0650d152013-07-23 17:57:38 -0700260# A list of module names of BOOTCLASSPATH (jar files)
Ying Wangad6674c2014-01-07 14:31:49 -0800261PRODUCT_BOOT_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BOOT_JARS))
Narayan Kamath89ec4962014-08-05 14:51:08 +0100262PRODUCT_SYSTEM_SERVER_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_JARS))
Nicolas Geoffraycdd43432017-03-24 14:45:59 +0000263PRODUCT_SYSTEM_SERVER_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_APPS))
Nicolas Geoffray4a0ad4a2017-06-12 15:19:16 +0100264PRODUCT_DEXPREOPT_SPEED_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEXPREOPT_SPEED_APPS))
Nicolas Geoffraya95fbd12017-09-19 13:10:31 +0100265PRODUCT_LOADED_BY_PRIVILEGED_MODULES := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_LOADED_BY_PRIVILEGED_MODULES))
Ying Wang0650d152013-07-23 17:57:38 -0700266
Mathieu Chartier55eabd52017-09-15 13:40:48 -0700267# All of the apps that we force preopt, this overrides WITH_DEXPREOPT.
268PRODUCT_ALWAYS_PREOPT_EXTRACTED_APK := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ALWAYS_PREOPT_EXTRACTED_APK))
269
The Android Open Source Project88b60792009-03-03 19:28:42 -0800270# Find the device that this product maps to.
271TARGET_DEVICE := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEVICE)
272
273# Figure out which resoure configuration options to use for this
274# product.
275PRODUCT_LOCALES := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_LOCALES))
276# TODO: also keep track of things like "port", "land" in product files.
277
278# If CUSTOM_LOCALES contains any locales not already included
279# in PRODUCT_LOCALES, add them to PRODUCT_LOCALES.
280extra_locales := $(filter-out $(PRODUCT_LOCALES),$(CUSTOM_LOCALES))
281ifneq (,$(extra_locales))
Dave Bortd14f6d92009-03-24 20:50:42 -0700282 ifneq ($(CALLED_FROM_SETUP),true)
283 # Don't spam stdout, because envsetup.sh may be scraping values from it.
284 $(info Adding CUSTOM_LOCALES [$(extra_locales)] to PRODUCT_LOCALES [$(PRODUCT_LOCALES)])
285 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800286 PRODUCT_LOCALES += $(extra_locales)
287 extra_locales :=
288endif
289
Ying Wang4f1ab922011-03-15 13:19:30 -0700290# Add PRODUCT_LOCALES to PRODUCT_AAPT_CONFIG
Adam Lesinski83ee6d72014-12-02 16:13:09 -0800291PRODUCT_AAPT_CONFIG := $(strip $(PRODUCT_LOCALES) $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_CONFIG))
Dianne Hackborna0f464a2011-10-14 19:37:57 -0700292PRODUCT_AAPT_PREF_CONFIG := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREF_CONFIG))
Ying Wang60686582014-12-10 12:40:09 -0800293PRODUCT_AAPT_PREBUILT_DPI := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREBUILT_DPI))
Ying Wang4f1ab922011-03-15 13:19:30 -0700294
Ying Wang91341e52013-11-22 10:07:51 -0800295# Keep a copy of the space-separated config
296PRODUCT_AAPT_CONFIG_SP := $(PRODUCT_AAPT_CONFIG)
297
The Android Open Source Project88b60792009-03-03 19:28:42 -0800298# Convert spaces to commas.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800299PRODUCT_AAPT_CONFIG := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700300 $(subst $(space),$(comma),$(strip $(PRODUCT_AAPT_CONFIG)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800301
302PRODUCT_BRAND := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BRAND))
303
304PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MODEL))
305ifndef PRODUCT_MODEL
Doug Zongker17c83cf2009-04-01 15:48:46 -0700306 PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_NAME))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800307endif
308
309PRODUCT_MANUFACTURER := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700310 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MANUFACTURER))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800311ifndef PRODUCT_MANUFACTURER
312 PRODUCT_MANUFACTURER := unknown
313endif
314
Joe Onorato700b88e2010-10-05 17:33:58 -0400315ifeq ($(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS),)
316 TARGET_AAPT_CHARACTERISTICS := default
317else
318 TARGET_AAPT_CHARACTERISTICS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS))
319endif
320
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700321PRODUCT_DEFAULT_WIFI_CHANNELS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700322 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_WIFI_CHANNELS))
323
324PRODUCT_DEFAULT_DEV_CERTIFICATE := \
325 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_DEV_CERTIFICATE))
326ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE
327ifneq (1,$(words $(PRODUCT_DEFAULT_DEV_CERTIFICATE)))
328 $(error PRODUCT_DEFAULT_DEV_CERTIFICATE='$(PRODUCT_DEFAULT_DEV_CERTIFICATE)', \
329 only 1 certificate is allowed.)
330endif
331endif
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700332
Ying Wang4b0486b2012-09-20 16:35:36 -0700333# A list of words like <source path>:<destination path>[:<owner>].
334# The file at the source path should be copied to the destination path
335# when building this product. <destination path> is relative to
336# $(PRODUCT_OUT), so it should look like, e.g., "system/etc/file.xml".
Colin Cross6cdc5d22017-10-20 11:37:33 -0700337# The rules for these copy steps are defined in build/make/core/Makefile.
Ying Wang4b0486b2012-09-20 16:35:36 -0700338# The optional :<owner> is used to indicate the owner of a vendor file.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800339PRODUCT_COPY_FILES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700340 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COPY_FILES))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800341
The Android Open Source Project88b60792009-03-03 19:28:42 -0800342# A list of property assignments, like "key = value", with zero or more
343# whitespace characters on either side of the '='.
344PRODUCT_PROPERTY_OVERRIDES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700345 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PROPERTY_OVERRIDES))
Jaekyun Seok7ace0d62017-01-20 13:17:12 +0900346.KATI_READONLY := PRODUCT_PROPERTY_OVERRIDES
The Android Open Source Project88b60792009-03-03 19:28:42 -0800347
Gustav Sennton81ee1862016-05-27 14:07:54 +0100348PRODUCT_SHIPPING_API_LEVEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SHIPPING_API_LEVEL))
Gustav Sennton81ee1862016-05-27 14:07:54 +0100349
Mike Lockwood0d23fec2011-06-09 14:54:40 -0700350# A list of property assignments, like "key = value", with zero or more
351# whitespace characters on either side of the '='.
352# used for adding properties to default.prop
353PRODUCT_DEFAULT_PROPERTY_OVERRIDES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700354 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_PROPERTY_OVERRIDES))
Jaekyun Seok7ace0d62017-01-20 13:17:12 +0900355.KATI_READONLY := PRODUCT_DEFAULT_PROPERTY_OVERRIDES
Mike Lockwood0d23fec2011-06-09 14:54:40 -0700356
Jaekyun Seokb31b9ba2017-11-03 15:18:55 +0900357# A list of property assignments, like "key = value", with zero or more
358# whitespace characters on either side of the '='.
359# used for adding properties to default.prop of system partition
360PRODUCT_SYSTEM_DEFAULT_PROPERTIES := \
361 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_DEFAULT_PROPERTIES))
362.KATI_READONLY := PRODUCT_SYSTEM_DEFAULT_PROPERTIES
363
Jaekyun Seokb7735d82017-11-27 17:04:47 +0900364# A list of property assignments, like "key = value", with zero or more
365# whitespace characters on either side of the '='.
366# used for adding properties to build.prop of product partition
367PRODUCT_PRODUCT_PROPERTIES := \
368 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PRODUCT_PROPERTIES))
369.KATI_READONLY := PRODUCT_PRODUCT_PROPERTIES
370
Dario Freni5f681e12018-05-29 13:09:01 +0100371
372# A list of property assignments, like "key = value", with zero or more
373# whitespace characters on either side of the '='.
374# used for adding properties to build.prop of product partition
375PRODUCT_PRODUCT_SERVICES_PROPERTIES := \
376 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PRODUCT_SERVICES_PROPERTIES))
377.KATI_READONLY := PRODUCT_PRODUCT_SERVICES_PROPERTIES
378
The Android Open Source Project88b60792009-03-03 19:28:42 -0800379# Should we use the default resources or add any product specific overlays
380PRODUCT_PACKAGE_OVERLAYS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700381 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGE_OVERLAYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800382DEVICE_PACKAGE_OVERLAYS := \
383 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).DEVICE_PACKAGE_OVERLAYS))
384
Dima Zavinf9269902012-03-16 09:57:11 -0700385# The list of product-specific kernel header dirs
386PRODUCT_VENDOR_KERNEL_HEADERS := \
387 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_VENDOR_KERNEL_HEADERS)
388
Doug Zongker17c83cf2009-04-01 15:48:46 -0700389# The OTA key(s) specified by the product config, if any. The names
390# of these keys are stored in the target-files zip so that post-build
391# signing tools can substitute them for the test key embedded by
392# default.
393PRODUCT_OTA_PUBLIC_KEYS := $(sort \
394 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTA_PUBLIC_KEYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800395
Doug Zongker5d4808d2011-03-16 07:49:13 -0700396PRODUCT_EXTRA_RECOVERY_KEYS := $(sort \
397 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_EXTRA_RECOVERY_KEYS))
Brian Carlstrom8fb5dfc2014-01-16 23:25:27 -0800398
Mathieu Chartiere8fb7cf2018-02-15 13:19:38 -0800399PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER := \
400 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER))
Ying Wang70d617a2014-10-07 18:07:23 -0700401PRODUCT_DEX_PREOPT_DEFAULT_FLAGS := \
402 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_FLAGS))
Mathieu Chartier5c658ac2018-02-15 13:19:38 -0800403PRODUCT_DEX_PREOPT_GENERATE_DM_FILES := \
404 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_GENERATE_DM_FILES))
Ying Wang70d617a2014-10-07 18:07:23 -0700405PRODUCT_DEX_PREOPT_BOOT_FLAGS := \
406 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_FLAGS))
Mathieu Chartierfcc8d8b2017-05-05 17:22:37 -0700407PRODUCT_DEX_PREOPT_PROFILE_DIR := \
408 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_PROFILE_DIR))
409
Mathieu Chartiera61acf62017-06-28 18:23:37 -0700410# Boot image options.
411PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE := \
412 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE))
413PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION := \
414 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION))
415
Mathieu Chartier6228ec22017-06-23 10:44:45 -0700416PRODUCT_SYSTEM_SERVER_COMPILER_FILTER := \
417 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_COMPILER_FILTER))
Mathieu Chartierf0db9082017-06-23 14:47:56 -0700418PRODUCT_SYSTEM_SERVER_DEBUG_INFO := \
419 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_DEBUG_INFO))
Andreas Gampec3e15192018-03-19 14:28:15 -0700420PRODUCT_OTHER_JAVA_DEBUG_INFO := \
421 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTHER_JAVA_DEBUG_INFO))
Mathieu Chartier6228ec22017-06-23 10:44:45 -0700422
Andreas Gampebb5454b2016-06-27 15:15:31 -0700423# Resolve and setup per-module dex-preopt configs.
Ying Wang70d617a2014-10-07 18:07:23 -0700424PRODUCT_DEX_PREOPT_MODULE_CONFIGS := \
425 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_MODULE_CONFIGS))
426# If a module has multiple setups, the first takes precedence.
427_pdpmc_modules :=
428$(foreach c,$(PRODUCT_DEX_PREOPT_MODULE_CONFIGS),\
429 $(eval m := $(firstword $(subst =,$(space),$(c))))\
430 $(if $(filter $(_pdpmc_modules),$(m)),,\
431 $(eval _pdpmc_modules += $(m))\
432 $(eval cf := $(patsubst $(m)=%,%,$(c)))\
433 $(eval cf := $(subst $(_PDPMC_SP_PLACE_HOLDER),$(space),$(cf)))\
434 $(eval DEXPREOPT.$(TARGET_PRODUCT).$(m).CONFIG := $(cf))))
435_pdpmc_modules :=
Andreas Gampebb5454b2016-06-27 15:15:31 -0700436
437# Resolve and setup per-module sanitizer configs.
438PRODUCT_SANITIZER_MODULE_CONFIGS := \
439 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SANITIZER_MODULE_CONFIGS))
440# If a module has multiple setups, the first takes precedence.
441_psmc_modules :=
442$(foreach c,$(PRODUCT_SANITIZER_MODULE_CONFIGS),\
443 $(eval m := $(firstword $(subst =,$(space),$(c))))\
444 $(if $(filter $(_psmc_modules),$(m)),,\
445 $(eval _psmc_modules += $(m))\
446 $(eval cf := $(patsubst $(m)=%,%,$(c)))\
447 $(eval cf := $(subst $(_PSMC_SP_PLACE_HOLDER),$(space),$(cf)))\
448 $(eval SANITIZER.$(TARGET_PRODUCT).$(m).CONFIG := $(cf))))
449_psmc_modules :=
Hiroshi Yamauchi64594c42016-12-15 16:00:41 -0800450
Andreas Gampe831fc712017-06-30 11:36:26 -0700451# Whether the product wants to ship libartd. For rules and meaning, see art/Android.mk.
452PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD := \
453 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD))
454
Hiroshi Yamauchi64594c42016-12-15 16:00:41 -0800455# Make this art variable visible to soong_config.mk.
456PRODUCT_ART_USE_READ_BARRIER := \
457 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_USE_READ_BARRIER))
Alex Deymo8fe63c32017-03-02 22:08:41 -0800458
459# Whether the product is an Android Things variant.
460PRODUCT_IOT := \
461 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_IOT))
Jaekyun Seok1b224282017-03-30 11:25:02 +0900462
Jaekyun Seokccee95e2017-09-01 17:23:25 +0900463# Resource overlay list which must be excluded from enforcing RRO.
464PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS := \
465 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS))
466
Jaekyun Seok1b224282017-03-30 11:25:02 +0900467# Package list to apply enforcing RRO.
468PRODUCT_ENFORCE_RRO_TARGETS := \
469 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_TARGETS))
Julius D'souza001c6762017-05-03 13:43:27 -0700470
471# Add reserved headroom to a system image.
472PRODUCT_SYSTEM_HEADROOM := \
473 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_HEADROOM))
Przemyslaw Szczepaniak2e81b3c2017-06-30 14:51:12 +0100474
475# Whether to save disk space by minimizing java debug info
476PRODUCT_MINIMIZE_JAVA_DEBUG_INFO := \
477 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MINIMIZE_JAVA_DEBUG_INFO))
Ivan Lozano9a82bfd2017-07-13 14:49:12 -0700478
479# Whether any paths are excluded from sanitization when SANITIZE_TARGET=integer_overflow
480PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS := \
481 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS))
Dan Willemsen0bd79382017-11-03 15:53:52 -0700482
483# ADB keys for debuggable builds
484PRODUCT_ADB_KEYS :=
485ifneq ($(filter eng userdebug,$(TARGET_BUILD_VARIANT)),)
486 PRODUCT_ADB_KEYS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ADB_KEYS))
487endif
488ifneq ($(filter-out 0 1,$(words $(PRODUCT_ADB_KEYS))),)
489 $(error Only one file may be in PRODUCT_ADB_KEYS: $(PRODUCT_ADB_KEYS))
490endif
491.KATI_READONLY := PRODUCT_ADB_KEYS
Vishwath Mohan23b2d2e2017-10-31 02:25:16 -0700492
493# Whether any paths are excluded from sanitization when SANITIZE_TARGET=cfi
494PRODUCT_CFI_EXCLUDE_PATHS := \
495 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CFI_EXCLUDE_PATHS))
496
497# Whether any paths should have CFI enabled for components
498PRODUCT_CFI_INCLUDE_PATHS := \
499 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CFI_INCLUDE_PATHS))
Jeff Gaston1fe28d32017-11-21 15:05:07 -0800500
501# which Soong namespaces to export to Make
Alexey Polyudovea55e8c2018-01-24 16:55:52 -0800502PRODUCT_SOONG_NAMESPACES := \
Jeff Gaston1fe28d32017-11-21 15:05:07 -0800503 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SOONG_NAMESPACES))
Jaekyun Seok0538ff72018-01-16 14:14:59 +0900504
505# A flag to override PRODUCT_COMPATIBLE_PROPERTY
506PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE := \
507 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE))
508
509# Whether the whitelist of actionable compatible properties should be disabled or not
510PRODUCT_ACTIONABLE_COMPATIBLE_PROPERTY_DISABLE := \
511 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ACTIONABLE_COMPATIBLE_PROPERTY_DISABLE))
Yifan Hongef4cd712018-05-18 17:46:04 -0700512
513# Logical and Resizable Partitions feature flag.
514PRODUCT_USE_LOGICAL_PARTITIONS := \
515 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_USE_LOGICAL_PARTITIONS))
516.KATI_READONLY := PRODUCT_USE_LOGICAL_PARTITIONS
Yifan Hong2dae5722018-07-31 12:47:27 -0700517
Yifan Honga42e5f92018-07-31 13:30:38 -0700518# All requirements of PRODUCT_USE_LOGICAL_PARTITIONS falls back to
519# PRODUCT_USE_LOGICAL_PARTITIONS if not defined.
Yifan Hong2dae5722018-07-31 12:47:27 -0700520PRODUCT_USE_DYNAMIC_PARTITION_SIZE := $(or \
521 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_USE_DYNAMIC_PARTITION_SIZE)),\
Yifan Honga42e5f92018-07-31 13:30:38 -0700522 $(PRODUCT_USE_LOGICAL_PARTITIONS))
Yifan Hong2dae5722018-07-31 12:47:27 -0700523.KATI_READONLY := PRODUCT_USE_DYNAMIC_PARTITION_SIZE
524PRODUCT_BUILD_SUPER_PARTITION := $(or \
525 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BUILD_SUPER_PARTITION)),\
Yifan Honga42e5f92018-07-31 13:30:38 -0700526 $(PRODUCT_USE_LOGICAL_PARTITIONS))
Yifan Hong2dae5722018-07-31 12:47:27 -0700527.KATI_READONLY := PRODUCT_BUILD_SUPER_PARTITION
Dario Frenif31bc452018-07-12 19:44:33 +0100528
529# List of modules that should be forcefully unmarked from being LOCAL_PRODUCT_MODULE, and hence
530# installed on /system directory by default.
531PRODUCT_FORCE_PRODUCT_MODULES_TO_SYSTEM_PARTITION := \
532 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_FORCE_PRODUCT_MODULES_TO_SYSTEM_PARTITION))
533.KATI_READONLY := PRODUCT_FORCE_PRODUCT_MODULES_TO_SYSTEM_PARTITION