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
Ignore-AOSP-First: resolving conflict
Change-Id: I1ebef60a943bdbe907744cc43aa985371ac56d32
diff --git a/java/ravenwood.go b/java/ravenwood.go
index a03d8fb..85f64a8 100644
--- a/java/ravenwood.go
+++ b/java/ravenwood.go
@@ -16,6 +16,7 @@
import (
"android/soong/android"
"android/soong/tradefed"
+
"github.com/google/blueprint/proptools"
)
@@ -100,7 +101,7 @@
r.Library.GenerateAndroidBuildActions(ctx)
// Start by depending on all files installed by dependancies
- var installDeps android.Paths
+ var installDeps android.InstallPaths
for _, dep := range ctx.GetDirectDepsWithTag(ravenwoodTag) {
for _, installFile := range dep.FilesToInstall() {
installDeps = append(installDeps, installFile)