diff options
Diffstat (limited to 'rust/compiler.go')
| -rw-r--r-- | rust/compiler.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/rust/compiler.go b/rust/compiler.go index bcea6cccc..c92182420 100644 --- a/rust/compiler.go +++ b/rust/compiler.go @@ -136,8 +136,7 @@ type BaseCompilerProperties struct { } type baseCompiler struct { - Properties BaseCompilerProperties - coverageFile android.Path //rustc generates a single gcno file + Properties BaseCompilerProperties // Install related dir string @@ -146,9 +145,9 @@ type baseCompiler struct { relative string path android.InstallPath location installLocation + sanitize *sanitize - coverageOutputZipFile android.OptionalPath - distFile android.OptionalPath + distFile android.OptionalPath // Stripped output file. If Valid(), this file will be installed instead of outputFile. strippedOutputFile android.OptionalPath } |