Update sanitize property format
am: 21b481b
* commit '21b481b757e5599fec65a6a2ab573313b9def713':
Update sanitize property format
Change-Id: I60ee1cf5fc58f13dacbeb0e277ad5190d542d1ac
This commit is contained in:
20
cc/cc.go
20
cc/cc.go
@@ -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 {
|
||||
|
Reference in New Issue
Block a user