Update sanitize property format am: 21b481b

am: ebe0d559d1

* commit 'ebe0d559d13a12da1c3245e570971d58b4398321':
  Update sanitize property format

Change-Id: I7a96a51fa825ff39eec174b9ab616ea95f218d80
This commit is contained in:
Colin Cross
2016-04-19 23:04:52 +00:00
committed by android-build-merger

View File

@@ -406,12 +406,20 @@ type InstallerProperties struct {
}
type UnusedProperties struct {
Native_coverage *bool
Required []string
Sanitize []string `android:"arch_variant"`
Sanitize_recover []string
Strip string
Tags []string
Native_coverage *bool
Required []string
Strip string
Tags []string
Sanitize struct {
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 {