Merge "Add Starlark implementation of add-product-dex-preopt-module-config" am: 339d56308d am: 3f8f28026e am: 9b65259574

Original change: https://android-review.googlesource.com/c/platform/build/+/2002313

Change-Id: I737334827408e55b989ef8626e9dd4ed8e3daef0
This commit is contained in:
Cole Faust 2022-03-02 19:53:07 +00:00 committed by Automerger Merge Worker
commit 19e670ad2a

View file

@ -466,6 +466,13 @@ def _enforce_product_packages_exist(pkg_string_or_list):
#TODO(asmundak)
pass
def _add_product_dex_preopt_module_config(handle, modules, config):
"""Equivalent to add-product-dex-preopt-module-config from build/make/core/product.mk."""
modules = __words(modules)
config = _mkstrip(config).replace(" ", "|@SP@|")
_setdefault(handle, "PRODUCT_DEX_PREOPT_MODULE_CONFIGS")
handle.cfg["PRODUCT_DEX_PREOPT_MODULE_CONFIGS"] += [m + "=" + config for m in modules]
def _file_wildcard_exists(file_pattern):
"""Return True if there are files matching given bash pattern."""
return len(rblf_wildcard(file_pattern)) > 0
@ -718,6 +725,7 @@ rblf = struct(
soong_config_set = _soong_config_set,
soong_config_get = _soong_config_get,
abspath = _abspath,
add_product_dex_preopt_module_config = _add_product_dex_preopt_module_config,
addprefix = _addprefix,
addsuffix = _addsuffix,
board_platform_in = _board_platform_in,