summaryrefslogtreecommitdiff
path: root/rust/compiler.go
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2021-04-21 15:53:44 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-04-21 15:53:44 +0000
commitf9b3e22293144e60e4199f56bd2c4bbdf9377f9e (patch)
tree0b73ee5a8013e1b506de1dce7496a778a43d8a45 /rust/compiler.go
parent4949557d507ee5cf5f56a5c92bbda5f8e5da4254 (diff)
parenteda9398bbf19a2cccae7e47389c06ab64359749b (diff)
Merge "Remove unnecessary `android:"path"` tags in rust"
Diffstat (limited to 'rust/compiler.go')
-rw-r--r--rust/compiler.go4
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"`