diff options
author | 2025-03-06 16:22:05 -0800 | |
---|---|---|
committer | 2025-03-06 16:22:05 -0800 | |
commit | 13342315b6256a1f2e7a1fe634244940567849ca (patch) | |
tree | 1eaf49fda0eb92f6a838a1409badec9d5814fbdc /cc | |
parent | 87f1f1ee088097fa1ed16304d6ffeee32b58bdd5 (diff) | |
parent | d0015db164bcc4f684b6bab44f6cafb5f28cbf81 (diff) |
Merge "Skip install deps that is in "data" partition" into main
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) } } |