github.com/westcoastroms/westcoastroms-build@v0.0.0-20190928114312-2350e5a73030/build/make/core/product_config.mk (about) 1 # 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 _ 36 define 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 ) 50 endef 51 52 # TODO: push this into the combo files; unfortunately, we don't even 53 # know HOST_OS at this point. 54 trysed := $(shell echo a | sed -E -e 's/a/b/' 2>/dev/null) 55 ifeq ($(trysed),b) 56 SED_EXTENDED := sed -E 57 else 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 64 endif 65 66 ########################################################### 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 76 define find-copy-subdir-files 77 $(sort $(shell find $(2) -name "$(1)" -type f | $(SED_EXTENDED) "s:($(2)/?(.*)):\\1\\:$(3)/\\2:" | sed "s://:/:g")) 78 endef 79 80 # --------------------------------------------------------------- 81 82 # 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. 85 INTERNAL_VALID_VARIANTS := user userdebug eng 86 87 # --------------------------------------------------------------- 88 # Provide "PRODUCT-<prodname>-<goal>" targets, which lets you build 89 # a particular configuration without needing to set up the environment. 90 # 91 ifeq ($(CALLED_FROM_SETUP),true) 92 product_goals := $(strip $(filter PRODUCT-%,$(MAKECMDGOALS))) 93 ifdef 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 113 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 117 # The build server wants to do make PRODUCT-dream-sdk 118 # which really means TARGET_PRODUCT=dream make sdk. 119 ifneq ($(filter-out $(INTERNAL_VALID_VARIANTS),$(TARGET_BUILD_VARIANT)),) 120 override MAKECMDGOALS := $(MAKECMDGOALS) $(TARGET_BUILD_VARIANT) 121 TARGET_BUILD_VARIANT := userdebug 122 default_goal_substitution := 123 else 124 default_goal_substitution := droid 125 endif 126 127 # 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. 130 override MAKECMDGOALS := $(patsubst $(goal_name),$(default_goal_substitution),$(MAKECMDGOALS)) 131 endif 132 endif # CALLED_FROM_SETUP 133 # else: Use the value set in the environment or buildspec.mk. 134 135 # --------------------------------------------------------------- 136 # Provide "APP-<appname>" targets, which lets you build 137 # an unbundled app. 138 # 139 ifeq ($(CALLED_FROM_SETUP),true) 140 unbundled_goals := $(strip $(filter APP-%,$(MAKECMDGOALS))) 141 ifdef unbundled_goals 142 ifneq ($(words $(unbundled_goals)),1) 143 $(error Only one APP-* goal may be specified; saw "$(unbundled_goals)") 144 endif 145 TARGET_BUILD_APPS := $(strip $(subst -, ,$(patsubst APP-%,%,$(unbundled_goals)))) 146 ifneq ($(filter droid,$(MAKECMDGOALS)),) 147 override MAKECMDGOALS := $(patsubst $(unbundled_goals),,$(MAKECMDGOALS)) 148 else 149 override MAKECMDGOALS := $(patsubst $(unbundled_goals),droid,$(MAKECMDGOALS)) 150 endif 151 endif # unbundled_goals 152 endif 153 154 # Now that we've parsed APP-* and PRODUCT-*, mark these as readonly 155 TARGET_BUILD_APPS ?= 156 .KATI_READONLY := \ 157 TARGET_PRODUCT \ 158 TARGET_BUILD_VARIANT \ 159 TARGET_BUILD_APPS 160 161 # Default to building dalvikvm on hosts that support it... 162 ifeq ($(HOST_OS),linux) 163 # ... or if the if the option is already set 164 ifeq ($(WITH_HOST_DALVIK),) 165 WITH_HOST_DALVIK := true 166 endif 167 endif 168 169 # --------------------------------------------------------------- 170 # 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 # 174 include $(BUILD_SYSTEM)/node_fns.mk 175 include $(BUILD_SYSTEM)/product.mk 176 include $(BUILD_SYSTEM)/device.mk 177 178 ifneq ($(strip $(TARGET_BUILD_APPS)),) 179 # An unbundled app build needs only the core product makefiles. 180 all_product_configs := $(call get-product-makefiles,\ 181 $(SRC_TARGET_DIR)/product/AndroidProducts.mk) 182 else 183 # Read in all of the product definitions specified by the AndroidProducts.mk 184 # files in the tree. 185 all_product_configs := $(get-all-product-makefiles) 186 endif 187 188 all_named_products := 189 190 # 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. 195 current_product_makefile := 196 all_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))\ 203 $(eval all_named_products += $(_cpm_word1))\ 204 $(if $(filter $(TARGET_PRODUCT),$(_cpm_word1)),\ 205 $(eval current_product_makefile += $(_cpm_word2)),),\ 206 $(eval all_product_makefiles += $(f))\ 207 $(eval all_named_products += $(basename $(notdir $(f))))\ 208 $(if $(filter $(TARGET_PRODUCT),$(basename $(notdir $(f)))),\ 209 $(eval current_product_makefile += $(f)),))) 210 _cpm_words := 211 _cpm_word1 := 212 _cpm_word2 := 213 current_product_makefile := $(strip $(current_product_makefile)) 214 all_product_makefiles := $(strip $(all_product_makefiles)) 215 216 load_all_product_makefiles := 217 ifneq (,$(filter product-graph, $(MAKECMDGOALS))) 218 ifeq ($(ANDROID_PRODUCT_GRAPH),--all) 219 load_all_product_makefiles := true 220 endif 221 endif 222 ifneq (,$(filter dump-products,$(MAKECMDGOALS))) 223 ifeq ($(ANDROID_DUMP_PRODUCTS),all) 224 load_all_product_makefiles := true 225 endif 226 endif 227 228 ifeq ($(load_all_product_makefiles),true) 229 # Import all product makefiles. 230 $(call import-products, $(all_product_makefiles)) 231 else 232 # Import just the current product. 233 ifndef current_product_makefile 234 $(error Can not locate config makefile for product "$(TARGET_PRODUCT)") 235 endif 236 ifneq (1,$(words $(current_product_makefile))) 237 $(error Product "$(TARGET_PRODUCT)" ambiguous: matches $(current_product_makefile)) 238 endif 239 $(call import-products, $(current_product_makefile)) 240 endif # Import all or just the current product makefile 241 242 # Sanity check 243 $(check-all-products) 244 245 ifneq ($(filter dump-products, $(MAKECMDGOALS)),) 246 $(dump-products) 247 $(error done) 248 endif 249 250 # Convert a short name like "sooner" into the path to the product 251 # file defining that product. 252 # 253 INTERNAL_PRODUCT := $(call resolve-short-product-name, $(TARGET_PRODUCT)) 254 ifneq ($(current_product_makefile),$(INTERNAL_PRODUCT)) 255 $(error PRODUCT_NAME inconsistent in $(current_product_makefile) and $(INTERNAL_PRODUCT)) 256 endif 257 current_product_makefile := 258 all_product_makefiles := 259 all_product_configs := 260 261 262 ############################################################################# 263 264 # A list of module names of BOOTCLASSPATH (jar files) 265 PRODUCT_BOOT_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BOOT_JARS)) 266 PRODUCT_SYSTEM_SERVER_JARS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_JARS)) 267 PRODUCT_SYSTEM_SERVER_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_APPS)) 268 PRODUCT_DEXPREOPT_SPEED_APPS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEXPREOPT_SPEED_APPS)) 269 PRODUCT_LOADED_BY_PRIVILEGED_MODULES := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_LOADED_BY_PRIVILEGED_MODULES)) 270 271 # All of the apps that we force preopt, this overrides WITH_DEXPREOPT. 272 PRODUCT_ALWAYS_PREOPT_EXTRACTED_APK := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ALWAYS_PREOPT_EXTRACTED_APK)) 273 274 # Find the device that this product maps to. 275 TARGET_DEVICE := $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEVICE) 276 277 # Figure out which resoure configuration options to use for this 278 # product. 279 PRODUCT_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. 284 extra_locales := $(filter-out $(PRODUCT_LOCALES),$(CUSTOM_LOCALES)) 285 ifneq (,$(extra_locales)) 286 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 290 PRODUCT_LOCALES += $(extra_locales) 291 extra_locales := 292 endif 293 294 # Add PRODUCT_LOCALES to PRODUCT_AAPT_CONFIG 295 PRODUCT_AAPT_CONFIG := $(strip $(PRODUCT_LOCALES) $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_CONFIG)) 296 PRODUCT_AAPT_PREF_CONFIG := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREF_CONFIG)) 297 PRODUCT_AAPT_PREBUILT_DPI := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_AAPT_PREBUILT_DPI)) 298 299 # Keep a copy of the space-separated config 300 PRODUCT_AAPT_CONFIG_SP := $(PRODUCT_AAPT_CONFIG) 301 302 # Convert spaces to commas. 303 PRODUCT_AAPT_CONFIG := \ 304 $(subst $(space),$(comma),$(strip $(PRODUCT_AAPT_CONFIG))) 305 306 PRODUCT_BRAND := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_BRAND)) 307 308 PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MODEL)) 309 ifndef PRODUCT_MODEL 310 PRODUCT_MODEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_NAME)) 311 endif 312 313 PRODUCT_MANUFACTURER := \ 314 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MANUFACTURER)) 315 ifndef PRODUCT_MANUFACTURER 316 PRODUCT_MANUFACTURER := unknown 317 endif 318 319 ifeq ($(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS),) 320 TARGET_AAPT_CHARACTERISTICS := default 321 else 322 TARGET_AAPT_CHARACTERISTICS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CHARACTERISTICS)) 323 endif 324 325 PRODUCT_DEFAULT_WIFI_CHANNELS := \ 326 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_WIFI_CHANNELS)) 327 328 PRODUCT_DEFAULT_DEV_CERTIFICATE := \ 329 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_DEV_CERTIFICATE)) 330 ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE 331 ifneq (1,$(words $(PRODUCT_DEFAULT_DEV_CERTIFICATE))) 332 $(error PRODUCT_DEFAULT_DEV_CERTIFICATE='$(PRODUCT_DEFAULT_DEV_CERTIFICATE)', \ 333 only 1 certificate is allowed.) 334 endif 335 endif 336 337 # 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". 341 # The rules for these copy steps are defined in build/make/core/Makefile. 342 # The optional :<owner> is used to indicate the owner of a vendor file. 343 PRODUCT_COPY_FILES := \ 344 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_COPY_FILES)) 345 346 # A list of property assignments, like "key = value", with zero or more 347 # whitespace characters on either side of the '='. 348 PRODUCT_PROPERTY_OVERRIDES := \ 349 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PROPERTY_OVERRIDES)) 350 .KATI_READONLY := PRODUCT_PROPERTY_OVERRIDES 351 352 PRODUCT_SHIPPING_API_LEVEL := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SHIPPING_API_LEVEL)) 353 354 # 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 357 PRODUCT_DEFAULT_PROPERTY_OVERRIDES := \ 358 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEFAULT_PROPERTY_OVERRIDES)) 359 .KATI_READONLY := PRODUCT_DEFAULT_PROPERTY_OVERRIDES 360 361 # 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 364 PRODUCT_SYSTEM_DEFAULT_PROPERTIES := \ 365 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_DEFAULT_PROPERTIES)) 366 .KATI_READONLY := PRODUCT_SYSTEM_DEFAULT_PROPERTIES 367 368 # 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 371 PRODUCT_PRODUCT_PROPERTIES := \ 372 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PRODUCT_PROPERTIES)) 373 .KATI_READONLY := PRODUCT_PRODUCT_PROPERTIES 374 375 # Should we use the default resources or add any product specific overlays 376 PRODUCT_PACKAGE_OVERLAYS := \ 377 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGE_OVERLAYS)) 378 DEVICE_PACKAGE_OVERLAYS := \ 379 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).DEVICE_PACKAGE_OVERLAYS)) 380 381 # The list of product-specific kernel header dirs 382 PRODUCT_VENDOR_KERNEL_HEADERS := \ 383 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_VENDOR_KERNEL_HEADERS) 384 385 # 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. 389 PRODUCT_OTA_PUBLIC_KEYS := $(sort \ 390 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTA_PUBLIC_KEYS)) 391 392 PRODUCT_EXTRA_RECOVERY_KEYS := $(sort \ 393 $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_EXTRA_RECOVERY_KEYS)) 394 395 PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER := \ 396 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER)) 397 PRODUCT_DEX_PREOPT_DEFAULT_FLAGS := \ 398 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_DEFAULT_FLAGS)) 399 PRODUCT_DEX_PREOPT_GENERATE_DM_FILES := \ 400 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_GENERATE_DM_FILES)) 401 PRODUCT_DEX_PREOPT_BOOT_FLAGS := \ 402 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_FLAGS)) 403 PRODUCT_DEX_PREOPT_PROFILE_DIR := \ 404 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_PROFILE_DIR)) 405 406 # Boot image options. 407 PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE := \ 408 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE)) 409 PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION := \ 410 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION)) 411 412 PRODUCT_SYSTEM_SERVER_COMPILER_FILTER := \ 413 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_COMPILER_FILTER)) 414 PRODUCT_SYSTEM_SERVER_DEBUG_INFO := \ 415 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_SERVER_DEBUG_INFO)) 416 PRODUCT_OTHER_JAVA_DEBUG_INFO := \ 417 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_OTHER_JAVA_DEBUG_INFO)) 418 419 # Resolve and setup per-module dex-preopt configs. 420 PRODUCT_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 := 432 433 # Resolve and setup per-module sanitizer configs. 434 PRODUCT_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 := 446 447 # Whether the product wants to ship libartd. For rules and meaning, see art/Android.mk. 448 PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD := \ 449 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_TARGET_INCLUDE_DEBUG_BUILD)) 450 451 # Make this art variable visible to soong_config.mk. 452 PRODUCT_ART_USE_READ_BARRIER := \ 453 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ART_USE_READ_BARRIER)) 454 455 # Whether the product is an Android Things variant. 456 PRODUCT_IOT := \ 457 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_IOT)) 458 459 # Resource overlay list which must be excluded from enforcing RRO. 460 PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS := \ 461 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS)) 462 463 # Package list to apply enforcing RRO. 464 PRODUCT_ENFORCE_RRO_TARGETS := \ 465 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ENFORCE_RRO_TARGETS)) 466 467 # Add reserved headroom to a system image. 468 PRODUCT_SYSTEM_HEADROOM := \ 469 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SYSTEM_HEADROOM)) 470 471 # Whether to save disk space by minimizing java debug info 472 PRODUCT_MINIMIZE_JAVA_DEBUG_INFO := \ 473 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_MINIMIZE_JAVA_DEBUG_INFO)) 474 475 # Whether any paths are excluded from sanitization when SANITIZE_TARGET=integer_overflow 476 PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS := \ 477 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_INTEGER_OVERFLOW_EXCLUDE_PATHS)) 478 479 # ADB keys for debuggable builds 480 PRODUCT_ADB_KEYS := 481 ifneq ($(filter eng userdebug,$(TARGET_BUILD_VARIANT)),) 482 PRODUCT_ADB_KEYS := $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ADB_KEYS)) 483 endif 484 ifneq ($(filter-out 0 1,$(words $(PRODUCT_ADB_KEYS))),) 485 $(error Only one file may be in PRODUCT_ADB_KEYS: $(PRODUCT_ADB_KEYS)) 486 endif 487 .KATI_READONLY := PRODUCT_ADB_KEYS 488 489 # Whether any paths are excluded from sanitization when SANITIZE_TARGET=cfi 490 PRODUCT_CFI_EXCLUDE_PATHS := \ 491 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CFI_EXCLUDE_PATHS)) 492 493 # Whether any paths should have CFI enabled for components 494 PRODUCT_CFI_INCLUDE_PATHS := \ 495 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_CFI_INCLUDE_PATHS)) 496 497 # which Soong namespaces to export to Make 498 PRODUCT_SOONG_NAMESPACES := \ 499 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SOONG_NAMESPACES)) 500 501 # A flag to override PRODUCT_COMPATIBLE_PROPERTY 502 PRODUCT_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 506 PRODUCT_ACTIONABLE_COMPATIBLE_PROPERTY_DISABLE := \ 507 $(strip $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_ACTIONABLE_COMPATIBLE_PROPERTY_DISABLE))