From 3ccda6e583221d1e36eee5e7a86d4a71ff795e63 Mon Sep 17 00:00:00 2001 From: Spandan Das Date: Thu, 30 Jan 2025 00:22:05 +0000 Subject: Disable target_files.zip generation in soong-only builds The current implementation chains the non-hermetic and hermetic file creation in a single cmd. This causes `m droid` in --soong-only to do some redundant work. Since the hermetic file is used in target_files.zip, and this file is currently not fully migrated to soong builds, comment this out for now. Test: Set PRODUCT_SOONG_ONLY locally Test: m droid Bug: 393203512 Change-Id: Iff3a6a553922533c58b3d0206898bd627281c3fb --- 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 eb2e0367a..7e31f0ec9 100644 --- a/filesystem/android_device.go +++ b/filesystem/android_device.go @@ -150,7 +150,7 @@ func (a *androidDevice) GenerateAndroidBuildActions(ctx android.ModuleContext) { } } - a.buildTargetFilesZip(ctx) + //a.buildTargetFilesZip(ctx) TODO(b/393203512): re-enable target_files.zip var deps []android.Path if proptools.String(a.partitionProps.Super_partition_name) != "" { superImage := ctx.GetDirectDepProxyWithTag(*a.partitionProps.Super_partition_name, superPartitionDepTag) -- cgit v1.2.3-59-g8ed1b