Use OutputFilesProvider on filesystem module types

Test: CI
Bug: 339477385
Change-Id: I0902726cfef13c716d73c1abc5c9836bdcf3e10f
This commit is contained in:
mrziwang
2024-06-07 11:15:33 -07:00
parent 02f1e342cd
commit 555d133433
6 changed files with 12 additions and 62 deletions

View File

@@ -15,8 +15,6 @@
package filesystem
import (
"fmt"
"github.com/google/blueprint"
"github.com/google/blueprint/proptools"
@@ -88,6 +86,8 @@ func (r *rawBinary) GenerateAndroidBuildActions(ctx android.ModuleContext) {
r.output = outputFile
r.installDir = android.PathForModuleInstall(ctx, "etc")
ctx.InstallFile(r.installDir, r.installFileName(), r.output)
ctx.SetOutputFiles([]android.Path{r.output}, "")
}
var _ android.AndroidMkEntriesProvider = (*rawBinary)(nil)
@@ -109,13 +109,3 @@ func (r *rawBinary) OutputPath() android.Path {
func (r *rawBinary) SignedOutputPath() android.Path {
return nil
}
var _ android.OutputFileProducer = (*rawBinary)(nil)
// Implements android.OutputFileProducer
func (r *rawBinary) OutputFiles(tag string) (android.Paths, error) {
if tag == "" {
return []android.Path{r.output}, nil
}
return nil, fmt.Errorf("unsupported module reference tag %q", tag)
}