Merge "[Rust] Remove unused variables and deduplicate."

This commit is contained in:
Ivan Lozano
2020-06-17 12:28:06 +00:00
committed by Gerrit Code Review
6 changed files with 24 additions and 45 deletions

View File

@@ -45,11 +45,10 @@ func init() {
}
type Flags struct {
GlobalRustFlags []string // Flags that apply globally to rust
GlobalLinkFlags []string // Flags that apply globally to linker
RustFlags []string // Flags that apply to rust
LinkFlags []string // Flags that apply to linker
RustFlagsDeps android.Paths // Files depended on by compiler flags
GlobalRustFlags []string // Flags that apply globally to rust
GlobalLinkFlags []string // Flags that apply globally to linker
RustFlags []string // Flags that apply to rust
LinkFlags []string // Flags that apply to linker
Toolchain config.Toolchain
Coverage bool
}