diff options
-rw-r--r-- | build_flags.bzl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build_flags.bzl b/build_flags.bzl index 324822c6..b436c8bd 100644 --- a/build_flags.bzl +++ b/build_flags.bzl @@ -34,8 +34,10 @@ flags = [ # The default permission for all flags flag("RELEASE_ACONFIG_FLAG_DEFAULT_PERMISSION", ALL, "READ_WRITE"), - # The aconfig_value_set soong module to use to set aconfig values. - flag("RELEASE_ACONFIG_VALUE_SETS", ALL, None), + # The aconfig_value_set soong module(s) to use to set aconfig values. + # If multiple values are provided, then they will be used in the order they + # were added: the last value for a flag is the final value. + flag("RELEASE_ACONFIG_VALUE_SETS", ALL, None, appends = True), # Enables the use of the unfrozen versions of AIDL interfaces. # When this is `False` the libraries of the latest unfrozen version of a |