diff options
author | 2021-04-07 15:08:04 +0900 | |
---|---|---|
committer | 2021-04-07 22:23:31 +0900 | |
commit | e54f07e38a40dffcdec52f21a745efcf1b055902 (patch) | |
tree | 0c5ea6373ed9cc3b55798904be2c0b13ded5c13c /rust/rust.go | |
parent | 0774773a65c2b4164c725ca00b5fad88048f6259 (diff) |
Stripped rust bin/libs are included in APEX
Previously, when a rust bin or library is selected for an APEX,
OutputFile() was used to get the file to be used. However, OutputFile()
always returns the unstripped output file even when the stripped output
file is available. As a result, APEX having a rust module was very big
due to the debugging information that exists in the unstripped file.
When a rust module is directly installed to the built-in partitions, we
use the stripped one whenever it's available. To make the same happen
when the rust module is placed in an APEX, OutputFile() is modified to
return the unstripped output if it's available.
Bug: 181751814
Test: TARGET_BUILD_APPS=com.android.virt m
The size is reduced from 180MB to 43MB
Change-Id: I6f8479e6a4794aac8bf94a84afdf65d417c75db0
Diffstat (limited to 'rust/rust.go')
-rw-r--r-- | rust/rust.go | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/rust/rust.go b/rust/rust.go index f0d0e361c..566ad3787 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -114,7 +114,10 @@ type Module struct { sourceProvider SourceProvider subAndroidMkOnce map[SubAndroidMkProvider]bool - outputFile android.OptionalPath + // Unstripped output. This is usually used when this module is linked to another module + // as a library. The stripped output which is used for installation can be found via + // compiler.strippedOutputFile if it exists. + unstrippedOutputFile android.OptionalPath hideApexVariantFromMake bool } @@ -163,8 +166,8 @@ func (mod *Module) OutputFiles(tag string) (android.Paths, error) { if mod.sourceProvider != nil && (mod.compiler == nil || mod.compiler.Disabled()) { return mod.sourceProvider.Srcs(), nil } else { - if mod.outputFile.Valid() { - return android.Paths{mod.outputFile.Path()}, nil + if mod.OutputFile().Valid() { + return android.Paths{mod.OutputFile().Path()}, nil } return android.Paths{}, nil } @@ -346,6 +349,8 @@ type compiler interface { stdLinkage(ctx *depsContext) RustLinkage isDependencyRoot() bool + + strippedOutputFilePath() android.OptionalPath } type exportedFlagsProducer interface { @@ -523,7 +528,10 @@ func (mod *Module) Module() android.Module { } func (mod *Module) OutputFile() android.OptionalPath { - return mod.outputFile + if mod.compiler != nil && mod.compiler.strippedOutputFilePath().Valid() { + return mod.compiler.strippedOutputFilePath() + } + return mod.unstrippedOutputFile } func (mod *Module) CoverageFiles() android.Paths { @@ -540,7 +548,7 @@ func (mod *Module) installable(apexInfo android.ApexInfo) bool { return false } - return mod.outputFile.Valid() && !mod.Properties.PreventInstall + return mod.OutputFile().Valid() && !mod.Properties.PreventInstall } var _ cc.LinkableInterface = (*Module)(nil) @@ -721,9 +729,9 @@ func (mod *Module) GenerateAndroidBuildActions(actx android.ModuleContext) { if mod.compiler != nil && !mod.compiler.Disabled() { mod.compiler.initialize(ctx) - outputFile := mod.compiler.compile(ctx, flags, deps) + unstrippedOutputFile := mod.compiler.compile(ctx, flags, deps) - mod.outputFile = android.OptionalPathForPath(outputFile) + mod.unstrippedOutputFile = android.OptionalPathForPath(unstrippedOutputFile) apexInfo := actx.Provider(android.ApexInfoProvider).(android.ApexInfo) if mod.installable(apexInfo) { @@ -882,7 +890,7 @@ func (mod *Module) depsToPaths(ctx android.ModuleContext) PathDeps { } if depTag == dylibDepTag || depTag == rlibDepTag || depTag == procMacroDepTag { - linkFile := rustDep.outputFile + linkFile := rustDep.unstrippedOutputFile if !linkFile.Valid() { ctx.ModuleErrorf("Invalid output file when adding dep %q to %q", depName, ctx.ModuleName()) @@ -978,15 +986,15 @@ func (mod *Module) depsToPaths(ctx android.ModuleContext) PathDeps { var rlibDepFiles RustLibraries for _, dep := range directRlibDeps { - rlibDepFiles = append(rlibDepFiles, RustLibrary{Path: dep.outputFile.Path(), CrateName: dep.CrateName()}) + rlibDepFiles = append(rlibDepFiles, RustLibrary{Path: dep.unstrippedOutputFile.Path(), CrateName: dep.CrateName()}) } var dylibDepFiles RustLibraries for _, dep := range directDylibDeps { - dylibDepFiles = append(dylibDepFiles, RustLibrary{Path: dep.outputFile.Path(), CrateName: dep.CrateName()}) + dylibDepFiles = append(dylibDepFiles, RustLibrary{Path: dep.unstrippedOutputFile.Path(), CrateName: dep.CrateName()}) } var procMacroDepFiles RustLibraries for _, dep := range directProcMacroDeps { - procMacroDepFiles = append(procMacroDepFiles, RustLibrary{Path: dep.outputFile.Path(), CrateName: dep.CrateName()}) + procMacroDepFiles = append(procMacroDepFiles, RustLibrary{Path: dep.unstrippedOutputFile.Path(), CrateName: dep.CrateName()}) } var staticLibDepFiles android.Paths |