diff options
author | 2025-01-30 00:22:05 +0000 | |
---|---|---|
committer | 2025-01-30 00:26:53 +0000 | |
commit | 3ccda6e583221d1e36eee5e7a86d4a71ff795e63 (patch) | |
tree | fa9ce547691860317243a649afce7b2af8591e92 /filesystem/android_device.go | |
parent | dc81dfea7aa01fb1995d4de70a67852db82f07ad (diff) |
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
Diffstat (limited to 'filesystem/android_device.go')
-rw-r--r-- | filesystem/android_device.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |