commit | bb0d5866c56a7d9393fd48f99ef2edf063f0c218 | [log] [tgz] |
---|---|---|
author | Spandan Das <spandandas@google.com> | Mon Feb 05 21:16:54 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Feb 05 21:16:54 2024 +0000 |
tree | 2fa04c8a9acad5edb0010ed0336d02f5043cfb38 | |
parent | 6b2b493bf33afe99f6611ac74bb6f4f132f621cf [diff] | |
parent | 4d4edfb8d801d127cc7a116935f982d3ecdc489f [diff] |
Merge "Sort the inputs to mergedAconfigFilesRule" into main
diff --git a/android/aconfig_providers.go b/android/aconfig_providers.go index be9beb1..1444e7d 100644 --- a/android/aconfig_providers.go +++ b/android/aconfig_providers.go
@@ -171,7 +171,7 @@ } func mergeAconfigFiles(ctx ModuleContext, container string, inputs Paths, generateRule bool) Paths { - inputs = LastUniquePaths(inputs) + inputs = SortedUniquePaths(inputs) if len(inputs) == 1 { return Paths{inputs[0]} }