diff options
author | 2025-03-06 16:49:59 -0800 | |
---|---|---|
committer | 2025-03-06 16:49:59 -0800 | |
commit | 56e8906ecddc27ad3748f43619c5d83c738ae9a3 (patch) | |
tree | 8dc5a8cfacf246a1dcd596b4381884f17bfb0030 /cc | |
parent | 236e276404e1111a672a315e5463ed88cf13f691 (diff) | |
parent | 13342315b6256a1f2e7a1fe634244940567849ca (diff) |
Merge "Skip install deps that is in "data" partition" into main am: 13342315b6
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/3529475
Change-Id: I5eb73338707ee185c4c500f5d355331f1dcfc96f
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'cc')
-rw-r--r-- | cc/test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cc/test.go b/cc/test.go index d2c4b28e8..8b68c5563 100644 --- a/cc/test.go +++ b/cc/test.go @@ -455,6 +455,9 @@ func (test *testBinary) install(ctx ModuleContext, file android.Path) { if standaloneTestDep.SkipInstall() { continue } + if standaloneTestDep.Partition() == "data" { + continue + } test.binaryDecorator.baseInstaller.installStandaloneTestDep(ctx, standaloneTestDep) } } |