Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 62f5a471 authored by Bill Peckham's avatar Bill Peckham
Browse files

Extend add_soong_config_var to support variable list

Bug: b/149049342
Test: Supply list, inspect $(OUT)/soong/soong.variables
Change-Id: I905229441e392f6190bea6ae2169b0ecd1743d45
parent 24e2f7c0
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -238,15 +238,14 @@ $(eval SOONG_CONFIG_NAMESPACES += $1) \
$(eval SOONG_CONFIG_$1 :=)
endef

# The add_soong_config_var function adds a soong config variable to
# SOONG_CONFIG_*. The variable and its value are then be available to a
# The add_soong_config_var function adds a a list of soong config variables to
# SOONG_CONFIG_*. The variables and their values are then available to a
# soong_config_module_type in an Android.bp file.
# $1 is the namespace. $2 is the variable name.
# Ex: $(call add_soong_config_var,acme,COOL_FEATURE)

# $1 is the namespace. $2 is the list of variables.
# Ex: $(call add_soong_config_var,acme,COOL_FEATURE_A COOL_FEATURE_B)
define add_soong_config_var
$(eval SOONG_CONFIG_$1 += $2) \
$(eval SOONG_CONFIG_$1_$2 := $($2))
$(foreach v,$2,$(eval SOONG_CONFIG_$1_$v := $($v)))
endef

# The add_soong_config_var_value function defines a make variable and also adds