blob: 6449b9fd7678022e25c3fbe38f0be0deaff05965 [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
237# Sanity check
The Android Open Source Project88b60792009-03-03 19:28:42 -0800238$(check-all-products)
Ying Wangcae4d122010-11-02 23:04:24 -0700239
240ifneq ($(filter dump-products, $(MAKECMDGOALS)),)
241$(dump-products)
242$(error done)
243endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800244
245# Convert a short name like "sooner" into the path to the product
246# file defining that product.
247#
248INTERNAL_PRODUCT := $(call resolve-short-product-name, $(TARGET_PRODUCT))
Ying Wang157a5e12012-09-27 13:26:25 -0700249ifneq ($(current_product_makefile),$(INTERNAL_PRODUCT))
250$(error PRODUCT_NAME inconsistent in $(current_product_makefile) and $(INTERNAL_PRODUCT))
251endif
252current_product_makefile :=
253all_product_makefiles :=
254all_product_configs :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800255
Ying Wang22ef7982013-07-10 18:12:33 -0700256
257#############################################################################
Ying Wang22ef7982013-07-10 18:12:33 -0700258
Ying Wang0650d152013-07-23 17:57:38 -0700259# A list of module names of BOOTCLASSPATH (jar files)
Ying Wangad6674c2014-01-07 14:31:49 -0800260PRODUCT_BOOT_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BOOT_JARS))
Narayan Kamath89ec4962014-08-05 14:51:08 +0100261PRODUCT_SYSTEM_SERVER_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_JARS))
Nicolas Geoffraycdd43432017-03-24 14:45:59 +0000262PRODUCT_SYSTEM_SERVER_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_APPS))
Nicolas Geoffray4a0ad4a2017-06-12 15:19:16 +0100263PRODUCT_DEXPREOPT_SPEED_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEXPREOPT_SPEED_APPS))
Nicolas Geoffraya95fbd12017-09-19 13:10:31 +0100264PRODUCT_LOADED_BY_PRIVILEGED_MODULES := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_LOADED_BY_PRIVILEGED_MODULES))
Ying Wang0650d152013-07-23 17:57:38 -0700265
Mathieu Chartier55eabd52017-09-15 13:40:48 -0700266# All of the apps that we force preopt, this overrides WITH_DEXPREOPT.
267PRODUCT_ALWAYS_PREOPT_EXTRACTED_APK := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ALWAYS_PREOPT_EXTRACTED_APK))
268
The Android Open Source Project88b60792009-03-03 19:28:42 -0800269# Find the device that this product maps to.
270TARGET_DEVICE := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEVICE)
271
272# Figure out which resoure configuration options to use for this
273# product.
274PRODUCT_LOCALES := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_LOCALES))
275# TODO: also keep track of things like "port", "land" in product files.
276
277# If CUSTOM_LOCALES contains any locales not already included
278# in PRODUCT_LOCALES, add them to PRODUCT_LOCALES.
279extra_locales := $(filter-out $(PRODUCT_LOCALES),$(CUSTOM_LOCALES))
280ifneq (,$(extra_locales))
Dave Bortd14f6d92009-03-24 20:50:42 -0700281 ifneq ($(CALLED_FROM_SETUP),true)
282 # Don't spam stdout, because envsetup.sh may be scraping values from it.
283 $(info Adding CUSTOM_LOCALES [$(extra_locales)] to PRODUCT_LOCALES [$(PRODUCT_LOCALES)])
284 endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800285 PRODUCT_LOCALES += $(extra_locales)
286 extra_locales :=
287endif
288
Ying Wang4f1ab922011-03-15 13:19:30 -0700289# Add PRODUCT_LOCALES to PRODUCT_AAPT_CONFIG
Adam Lesinski83ee6d72014-12-02 16:13:09 -0800290PRODUCT_AAPT_CONFIG := $(strip $(PRODUCT_LOCALES) $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_CONFIG))
Dianne Hackborna0f464a2011-10-14 19:37:57 -0700291PRODUCT_AAPT_PREF_CONFIG := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREF_CONFIG))
Ying Wang60686582014-12-10 12:40:09 -0800292PRODUCT_AAPT_PREBUILT_DPI := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREBUILT_DPI))
Ying Wang4f1ab922011-03-15 13:19:30 -0700293
Ying Wang91341e52013-11-22 10:07:51 -0800294# Keep a copy of the space-separated config
295PRODUCT_AAPT_CONFIG_SP := $(PRODUCT_AAPT_CONFIG)
296
The Android Open Source Project88b60792009-03-03 19:28:42 -0800297# Convert spaces to commas.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800298PRODUCT_AAPT_CONFIG := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700299 $(subst $(space),$(comma),$(strip $(PRODUCT_AAPT_CONFIG)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800300
301PRODUCT_BRAND := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BRAND))
302
303PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MODEL))
304ifndef PRODUCT_MODEL
Doug Zongker17c83cf2009-04-01 15:48:46 -0700305 PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_NAME))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800306endif
307
308PRODUCT_MANUFACTURER := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700309 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MANUFACTURER))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800310ifndef PRODUCT_MANUFACTURER
311 PRODUCT_MANUFACTURER := unknown
312endif
313
Joe Onorato700b88e2010-10-05 17:33:58 -0400314ifeq ($(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS),)
315 TARGET_AAPT_CHARACTERISTICS := default
316else
317 TARGET_AAPT_CHARACTERISTICS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS))
318endif
319
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700320PRODUCT_DEFAULT_WIFI_CHANNELS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700321 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_WIFI_CHANNELS))
322
323PRODUCT_DEFAULT_DEV_CERTIFICATE := \
324 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_DEV_CERTIFICATE))
325ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE
326ifneq (1,$(words $(PRODUCT_DEFAULT_DEV_CERTIFICATE)))
327 $(error PRODUCT_DEFAULT_DEV_CERTIFICATE='$(PRODUCT_DEFAULT_DEV_CERTIFICATE)', \
328 only 1 certificate is allowed.)
329endif
330endif
Robert Greenwaltfbd10d92009-05-20 13:37:35 -0700331
Ying Wang4b0486b2012-09-20 16:35:36 -0700332# A list of words like <source path>:<destination path>[:<owner>].
333# The file at the source path should be copied to the destination path
334# when building this product. <destination path> is relative to
335# $(PRODUCT_OUT), so it should look like, e.g., "system/etc/file.xml".
Colin Cross6cdc5d22017-10-20 11:37:33 -0700336# The rules for these copy steps are defined in build/make/core/Makefile.
Ying Wang4b0486b2012-09-20 16:35:36 -0700337# The optional :<owner> is used to indicate the owner of a vendor file.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800338PRODUCT_COPY_FILES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700339 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COPY_FILES))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800340
The Android Open Source Project88b60792009-03-03 19:28:42 -0800341# A list of property assignments, like "key = value", with zero or more
342# whitespace characters on either side of the '='.
343PRODUCT_PROPERTY_OVERRIDES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700344 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PROPERTY_OVERRIDES))
Jaekyun Seok7ace0d62017-01-20 13:17:12 +0900345.KATI_READONLY := PRODUCT_PROPERTY_OVERRIDES
The Android Open Source Project88b60792009-03-03 19:28:42 -0800346
Gustav Sennton81ee1862016-05-27 14:07:54 +0100347PRODUCT_SHIPPING_API_LEVEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SHIPPING_API_LEVEL))
Gustav Sennton81ee1862016-05-27 14:07:54 +0100348
Mike Lockwood0d23fec2011-06-09 14:54:40 -0700349# A list of property assignments, like "key = value", with zero or more
350# whitespace characters on either side of the '='.
351# used for adding properties to default.prop
352PRODUCT_DEFAULT_PROPERTY_OVERRIDES := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700353 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_PROPERTY_OVERRIDES))
Jaekyun Seok7ace0d62017-01-20 13:17:12 +0900354.KATI_READONLY := PRODUCT_DEFAULT_PROPERTY_OVERRIDES
Mike Lockwood0d23fec2011-06-09 14:54:40 -0700355
Jaekyun Seokb31b9ba2017-11-03 15:18:55 +0900356# A list of property assignments, like "key = value", with zero or more
357# whitespace characters on either side of the '='.
358# used for adding properties to default.prop of system partition
359PRODUCT_SYSTEM_DEFAULT_PROPERTIES := \
360 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_DEFAULT_PROPERTIES))
361.KATI_READONLY := PRODUCT_SYSTEM_DEFAULT_PROPERTIES
362
Jaekyun Seokb7735d82017-11-27 17:04:47 +0900363# A list of property assignments, like "key = value", with zero or more
364# whitespace characters on either side of the '='.
365# used for adding properties to build.prop of product partition
366PRODUCT_PRODUCT_PROPERTIES := \
367 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PRODUCT_PROPERTIES))
368.KATI_READONLY := PRODUCT_PRODUCT_PROPERTIES
369
The Android Open Source Project88b60792009-03-03 19:28:42 -0800370# Should we use the default resources or add any product specific overlays
371PRODUCT_PACKAGE_OVERLAYS := \
Ying Wang3c21fe52011-10-04 10:50:08 -0700372 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGE_OVERLAYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800373DEVICE_PACKAGE_OVERLAYS := \
374 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).DEVICE_PACKAGE_OVERLAYS))
375
Dima Zavinf9269902012-03-16 09:57:11 -0700376# The list of product-specific kernel header dirs
377PRODUCT_VENDOR_KERNEL_HEADERS := \
378 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_VENDOR_KERNEL_HEADERS)
379
Doug Zongker17c83cf2009-04-01 15:48:46 -0700380# The OTA key(s) specified by the product config, if any. The names
381# of these keys are stored in the target-files zip so that post-build
382# signing tools can substitute them for the test key embedded by
383# default.
384PRODUCT_OTA_PUBLIC_KEYS := $(sort \
385 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTA_PUBLIC_KEYS))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800386
Doug Zongker5d4808d2011-03-16 07:49:13 -0700387PRODUCT_EXTRA_RECOVERY_KEYS := $(sort \
388 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_EXTRA_RECOVERY_KEYS))
Brian Carlstrom8fb5dfc2014-01-16 23:25:27 -0800389
Mathieu Chartiere8fb7cf2018-02-15 13:19:38 -0800390PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER := \
391 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER))
Ying Wang70d617a2014-10-07 18:07:23 -0700392PRODUCT_DEX_PREOPT_DEFAULT_FLAGS := \
393 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_FLAGS))
Mathieu Chartier5c658ac2018-02-15 13:19:38 -0800394PRODUCT_DEX_PREOPT_GENERATE_DM_FILES := \
395 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_GENERATE_DM_FILES))
Ying Wang70d617a2014-10-07 18:07:23 -0700396PRODUCT_DEX_PREOPT_BOOT_FLAGS := \
397 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_FLAGS))
Mathieu Chartierfcc8d8b2017-05-05 17:22:37 -0700398PRODUCT_DEX_PREOPT_PROFILE_DIR := \
399 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_PROFILE_DIR))
400
Mathieu Chartiera61acf62017-06-28 18:23:37 -0700401# Boot image options.
402PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE := \
403 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE))
404PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION := \
405 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION))
406
Mathieu Chartier6228ec22017-06-23 10:44:45 -0700407PRODUCT_SYSTEM_SERVER_COMPILER_FILTER := \
408 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_COMPILER_FILTER))
Mathieu Chartierf0db9082017-06-23 14:47:56 -0700409PRODUCT_SYSTEM_SERVER_DEBUG_INFO := \
410 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_DEBUG_INFO))
Andreas Gampec3e15192018-03-19 14:28:15 -0700411PRODUCT_OTHER_JAVA_DEBUG_INFO := \
412 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTHER_JAVA_DEBUG_INFO))
Mathieu Chartier6228ec22017-06-23 10:44:45 -0700413
Andreas Gampebb5454b2016-06-27 15:15:31 -0700414# Resolve and setup per-module dex-preopt configs.
Ying Wang70d617a2014-10-07 18:07:23 -0700415PRODUCT_DEX_PREOPT_MODULE_CONFIGS := \
416 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_MODULE_CONFIGS))
417# If a module has multiple setups, the first takes precedence.
418_pdpmc_modules :=
419$(foreach c,$(PRODUCT_DEX_PREOPT_MODULE_CONFIGS),\
420 $(eval m := $(firstword $(subst =,$(space),$(c))))\
421 $(if $(filter $(_pdpmc_modules),$(m)),,\
422 $(eval _pdpmc_modules += $(m))\
423 $(eval cf := $(patsubst $(m)=%,%,$(c)))\
424 $(eval cf := $(subst $(_PDPMC_SP_PLACE_HOLDER),$(space),$(cf)))\
425 $(eval DEXPREOPT.$(TARGET_PRODUCT).$(m).CONFIG := $(cf))))
426_pdpmc_modules :=
Andreas Gampebb5454b2016-06-27 15:15:31 -0700427
428# Resolve and setup per-module sanitizer configs.
429PRODUCT_SANITIZER_MODULE_CONFIGS := \
430 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SANITIZER_MODULE_CONFIGS))
431# If a module has multiple setups, the first takes precedence.
432_psmc_modules :=
433$(foreach c,$(PRODUCT_SANITIZER_MODULE_CONFIGS),\
434 $(eval m := $(firstword $(subst =,$(space),$(c))))\
435 $(if $(filter $(_psmc_modules),$(m)),,\
436 $(eval _psmc_modules += $(m))\
437 $(eval cf := $(patsubst $(m)=%,%,$(c)))\
438 $(eval cf := $(subst $(_PSMC_SP_PLACE_HOLDER),$(space),$(cf)))\
439 $(eval SANITIZER.$(TARGET_PRODUCT).$(m).CONFIG := $(cf))))
440_psmc_modules :=
Hiroshi Yamauchi64594c42016-12-15 16:00:41 -0800441
Andreas Gampe831fc712017-06-30 11:36:26 -0700442# Whether the product wants to ship libartd. For rules and meaning, see art/Android.mk.
443PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD := \
444 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD))
445
Hiroshi Yamauchi64594c42016-12-15 16:00:41 -0800446# Make this art variable visible to soong_config.mk.
447PRODUCT_ART_USE_READ_BARRIER := \
448 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_USE_READ_BARRIER))
Alex Deymo8fe63c32017-03-02 22:08:41 -0800449
450# Whether the product is an Android Things variant.
451PRODUCT_IOT := \
452 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_IOT))
Jaekyun Seok1b224282017-03-30 11:25:02 +0900453
Jaekyun Seokccee95e2017-09-01 17:23:25 +0900454# Resource overlay list which must be excluded from enforcing RRO.
455PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS := \
456 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS))
457
Jaekyun Seok1b224282017-03-30 11:25:02 +0900458# Package list to apply enforcing RRO.
459PRODUCT_ENFORCE_RRO_TARGETS := \
460 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_TARGETS))
Julius D'souza001c6762017-05-03 13:43:27 -0700461
462# Add reserved headroom to a system image.
463PRODUCT_SYSTEM_HEADROOM := \
464 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_HEADROOM))
Przemyslaw Szczepaniak2e81b3c2017-06-30 14:51:12 +0100465
466# Whether to save disk space by minimizing java debug info
467PRODUCT_MINIMIZE_JAVA_DEBUG_INFO := \
468 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MINIMIZE_JAVA_DEBUG_INFO))
Ivan Lozano9a82bfd2017-07-13 14:49:12 -0700469
470# Whether any paths are excluded from sanitization when SANITIZE_TARGET=integer_overflow
471PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS := \
472 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS))
Dan Willemsen0bd79382017-11-03 15:53:52 -0700473
474# ADB keys for debuggable builds
475PRODUCT_ADB_KEYS :=
476ifneq ($(filter eng userdebug,$(TARGET_BUILD_VARIANT)),)
477 PRODUCT_ADB_KEYS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ADB_KEYS))
478endif
479ifneq ($(filter-out 0 1,$(words $(PRODUCT_ADB_KEYS))),)
480 $(error Only one file may be in PRODUCT_ADB_KEYS: $(PRODUCT_ADB_KEYS))
481endif
482.KATI_READONLY := PRODUCT_ADB_KEYS
Vishwath Mohan23b2d2e2017-10-31 02:25:16 -0700483
484# Whether any paths are excluded from sanitization when SANITIZE_TARGET=cfi
485PRODUCT_CFI_EXCLUDE_PATHS := \
486 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CFI_EXCLUDE_PATHS))
487
488# Whether any paths should have CFI enabled for components
489PRODUCT_CFI_INCLUDE_PATHS := \
490 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CFI_INCLUDE_PATHS))
Jeff Gaston1fe28d32017-11-21 15:05:07 -0800491
492# which Soong namespaces to export to Make
Alexey Polyudovea55e8c2018-01-24 16:55:52 -0800493PRODUCT_SOONG_NAMESPACES := \
Jeff Gaston1fe28d32017-11-21 15:05:07 -0800494 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SOONG_NAMESPACES))
Jaekyun Seok0538ff72018-01-16 14:14:59 +0900495
496# A flag to override PRODUCT_COMPATIBLE_PROPERTY
497PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE := \
498 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COMPATIBLE_PROPERTY_OVERRIDE))
499
500# Whether the whitelist of actionable compatible properties should be disabled or not
501PRODUCT_ACTIONABLE_COMPATIBLE_PROPERTY_DISABLE := \
502 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ACTIONABLE_COMPATIBLE_PROPERTY_DISABLE))