diff options
author | 2024-03-20 02:38:30 +0000 | |
---|---|---|
committer | 2024-03-20 02:38:30 +0000 | |
commit | 1f4ffda2eda2bc2a459e280a26efab24ca54d61d (patch) | |
tree | a93e19b83e7fc544061af4d7f9ff6fb41b7f9977 /genrule | |
parent | 5c0a491e0a1a8ba73987cb461e15f3e08e8c9120 (diff) | |
parent | 750334a0c0676a3100d2f6e9a57ea3e0363c4b16 (diff) |
Merge "Support multilib property for cc_genrule" into main
Diffstat (limited to 'genrule')
-rw-r--r-- | genrule/genrule.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/genrule/genrule.go b/genrule/genrule.go index a2a3f7584..cf2a96673 100644 --- a/genrule/genrule.go +++ b/genrule/genrule.go @@ -808,7 +808,7 @@ func GenRuleFactory() android.Module { type genRuleProperties struct { // names of the output files that will be generated - Out []string + Out []string `android:"arch_variant"` } var Bool = proptools.Bool |