Update sanitize property format

Change-Id: Ibca493a70a19cd3dfb58b5404b1c9ed42e068748
This commit is contained in:
Colin Cross
2016-04-15 16:27:17 -07:00
parent c99deeb961
commit 21b481b757

View File

@@ -406,12 +406,20 @@ type InstallerProperties struct {
} }
type UnusedProperties struct { type UnusedProperties struct {
Native_coverage *bool Native_coverage *bool
Required []string Required []string
Sanitize []string `android:"arch_variant"` Strip string
Sanitize_recover []string Tags []string
Strip string Sanitize struct {
Tags []string Never bool `android:"arch_variant"`
Address bool `android:"arch_variant"`
Thread bool `android:"arch_variant"`
Undefined bool `android:"arch_variant"`
All_undefined bool `android:"arch_variant"`
Misc_undefined []string `android:"arch_variant"`
Coverage bool `android:"arch_variant"`
Recover []string
} `android:"arch_variant"`
} }
type ModuleContextIntf interface { type ModuleContextIntf interface {