Update sanitize property format

Change-Id: Ibca493a70a19cd3dfb58b5404b1c9ed42e068748
diff --git a/cc/cc.go b/cc/cc.go
index 5adaf49..1c1ef10 100644
--- a/cc/cc.go
+++ b/cc/cc.go
@@ -406,12 +406,20 @@
 }
 
 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 {