Use OutputFilesProvider on python_binary_host

In the context of incremental soong, the output files
inter-module-communication will be through OutputFilesProvider.
The OutputFileProducer interface will be deprecated.

Test: CI
Bug: 339477385
Change-Id: I20f619d088503ca482ea55e81639933c88f1286b
This commit is contained in:
mrziwang
2024-06-18 15:32:09 -07:00
parent ecdb25e674
commit ca3ea1b1ee

View File

@@ -103,6 +103,7 @@ func (p *PythonBinaryModule) GenerateAndroidBuildActions(ctx android.ModuleConte
p.buildBinary(ctx) p.buildBinary(ctx)
p.installedDest = ctx.InstallFile(installDir(ctx, "bin", "", ""), p.installedDest = ctx.InstallFile(installDir(ctx, "bin", "", ""),
p.installSource.Base(), p.installSource) p.installSource.Base(), p.installSource)
ctx.SetOutputFiles(android.Paths{p.installSource}, "")
} }
func (p *PythonBinaryModule) buildBinary(ctx android.ModuleContext) { func (p *PythonBinaryModule) buildBinary(ctx android.ModuleContext) {
@@ -187,16 +188,6 @@ func (p *PythonBinaryModule) HostToolPath() android.OptionalPath {
return android.OptionalPathForPath(p.installedDest) return android.OptionalPathForPath(p.installedDest)
} }
// OutputFiles returns output files based on given tag, returns an error if tag is unsupported.
func (p *PythonBinaryModule) OutputFiles(tag string) (android.Paths, error) {
switch tag {
case "":
return android.Paths{p.installSource}, nil
default:
return nil, fmt.Errorf("unsupported module reference tag %q", tag)
}
}
func (p *PythonBinaryModule) isEmbeddedLauncherEnabled() bool { func (p *PythonBinaryModule) isEmbeddedLauncherEnabled() bool {
return BoolDefault(p.properties.Embedded_launcher, true) return BoolDefault(p.properties.Embedded_launcher, true)
} }