Merge "Order apex files by destination path not source path" am: 37ef223972
am: 9945b3a989
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1708563 Change-Id: I7eaf6d4568e348256a02b559ebd7f16aa1fa6225
This commit is contained in:
@@ -1927,7 +1927,9 @@ func (a *apexBundle) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|||||||
|
|
||||||
// Sort to have consistent build rules
|
// Sort to have consistent build rules
|
||||||
sort.Slice(filesInfo, func(i, j int) bool {
|
sort.Slice(filesInfo, func(i, j int) bool {
|
||||||
return filesInfo[i].builtFile.String() < filesInfo[j].builtFile.String()
|
// Sort by destination path so as to ensure consistent ordering even if the source of the files
|
||||||
|
// changes.
|
||||||
|
return filesInfo[i].path() < filesInfo[j].path()
|
||||||
})
|
})
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
Reference in New Issue
Block a user