From 8967d7562557001eb10e216ba7a947fb6054c67c Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Wed, 19 Feb 2025 17:27:29 -0800 Subject: Remove --sort_entries from soong_zip We can just always sort the entries and not worry about passing the flag or not. Bug: 395160816 Test: Presubmits Change-Id: Ic1a8b8ef9c74368d1aed77a228c52ccc08b3375f --- filesystem/android_device.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'filesystem/android_device.go') diff --git a/filesystem/android_device.go b/filesystem/android_device.go index 47c4e3d0c..6d40103a3 100644 --- a/filesystem/android_device.go +++ b/filesystem/android_device.go @@ -214,7 +214,7 @@ func (a *androidDevice) GenerateAndroidBuildActions(ctx android.ModuleContext) { allImagesZip := android.PathForModuleOut(ctx, "all_images.zip") allImagesZipBuilder := android.NewRuleBuilder(pctx, ctx) - cmd := allImagesZipBuilder.Command().BuiltTool("soong_zip").Flag("--sort_entries") + cmd := allImagesZipBuilder.Command().BuiltTool("soong_zip") for _, dep := range deps { cmd.FlagWithArg("-e ", dep.Base()) cmd.FlagWithInput("-f ", dep) -- cgit v1.2.3-59-g8ed1b