diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2021-04-21 15:53:44 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-04-21 15:53:44 +0000 |
commit | f9b3e22293144e60e4199f56bd2c4bbdf9377f9e (patch) | |
tree | 0b73ee5a8013e1b506de1dce7496a778a43d8a45 /rust/compiler.go | |
parent | 4949557d507ee5cf5f56a5c92bbda5f8e5da4254 (diff) | |
parent | eda9398bbf19a2cccae7e47389c06ab64359749b (diff) |
Merge "Remove unnecessary `android:"path"` tags in rust"
Diffstat (limited to 'rust/compiler.go')
-rw-r--r-- | rust/compiler.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/compiler.go b/rust/compiler.go index bfc23b209..a3f02c0d4 100644 --- a/rust/compiler.go +++ b/rust/compiler.go @@ -77,10 +77,10 @@ type BaseCompilerProperties struct { Lints *string // flags to pass to rustc. To enable configuration options or features, use the "cfgs" or "features" properties. - Flags []string `android:"path,arch_variant"` + Flags []string `android:"arch_variant"` // flags to pass to the linker - Ld_flags []string `android:"path,arch_variant"` + Ld_flags []string `android:"arch_variant"` // list of rust rlib crate dependencies Rlibs []string `android:"arch_variant"` |