Make generated library SDK snapshots determinstic am: 2c033610e2 am: c16e34e85e am: f4e815c868 am: 9ebd1454ba

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1425997

Change-Id: Id9a9ecc065816356b05b1e53d0ff12eae3f1f396
This commit is contained in:
Colin Cross
2020-09-12 19:37:24 +00:00
committed by Automerger Merge Worker

View File

@@ -291,8 +291,8 @@ func addPossiblyArchSpecificProperties(sdkModuleContext android.ModuleContext, b
} }
// Add the collated include dir properties to the output. // Add the collated include dir properties to the output.
for property, dirs := range includeDirs { for _, property := range android.SortedStringKeys(includeDirs) {
outputProperties.AddProperty(property, dirs) outputProperties.AddProperty(property, includeDirs[property])
} }
if len(libInfo.StubsVersion) > 0 { if len(libInfo.StubsVersion) > 0 {