summaryrefslogtreecommitdiff
path: root/java/robolectric.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2023-11-15 12:29:33 -0800
committer Colin Cross <ccross@android.com> 2023-11-17 19:06:43 -0800
commit09ad3a6505b6345cc793acc68280069b37f816c0 (patch)
tree6eb2d137e7f84ec2cf867ae5f32bed33b5e810a2 /java/robolectric.go
parent4b9d9350bd336dca00b3e1497146ed1c0999a4f7 (diff)
Change deps of ctx.Install* from Paths to InstallPaths
Installed files should only depend on other installed files, change the deps arguments of the ctx.Install* methods from Paths to InstallPaths. Bug: 311428265 Test: builds Change-Id: I1ebef60a943bdbe907744cc43aa985371ac56d32 Merged-In: I1ebef60a943bdbe907744cc43aa985371ac56d32
Diffstat (limited to 'java/robolectric.go')
-rw-r--r--java/robolectric.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/robolectric.go b/java/robolectric.go
index a8e6bfaff..a66b31007 100644
--- a/java/robolectric.go
+++ b/java/robolectric.go
@@ -226,7 +226,7 @@ func (r *robolectricTest) GenerateAndroidBuildActions(ctx android.ModuleContext)
}
installPath := android.PathForModuleInstall(ctx, r.BaseModuleName())
- var installDeps android.Paths
+ var installDeps android.InstallPaths
if r.manifest != nil {
r.data = append(r.data, r.manifest)