diff options
Diffstat (limited to 'android/variable.go')
-rw-r--r-- | android/variable.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go index 91de956bb..612d138c3 100644 --- a/android/variable.go +++ b/android/variable.go @@ -95,6 +95,9 @@ type variableProperties struct { Sanitize struct { Address *bool } + Optimize struct { + Enabled *bool + } } Pdk struct { @@ -252,6 +255,8 @@ type productVariables struct { ClangTidy *bool `json:",omitempty"` TidyChecks *string `json:",omitempty"` + SamplingPGO *bool `json:",omitempty"` + NativeLineCoverage *bool `json:",omitempty"` Native_coverage *bool `json:",omitempty"` ClangCoverage *bool `json:",omitempty"` |