diff options
author | 2023-11-06 22:19:10 +0000 | |
---|---|---|
committer | 2023-11-06 22:20:08 +0000 | |
commit | 18733abe7ff635f8f5240eb8fb019dcbedcd0ff6 (patch) | |
tree | 0f6c53fa3f2d4ceb80235354e8dddaaf1134159e | |
parent | 6f5f6867010dfa30d1a9fe933bc417327d9e065a (diff) |
Reapply "RELEASE_ACONFIG_VALUE_SETS is a list"
Bug: b/302593603, b/309477343
Test: manual, treehugger
Change-Id: I36ba957b1fbab8c0eab582589e5d1a60d28b7716
-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 |