diff options
Diffstat (limited to 'android/variable.go')
| -rw-r--r-- | android/variable.go | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/android/variable.go b/android/variable.go index f4960086d..85937e3b1 100644 --- a/android/variable.go +++ b/android/variable.go @@ -196,9 +196,10 @@ type productVariables struct {  	UncompressPrivAppDex             *bool    `json:",omitempty"`  	ModulesLoadedByPrivilegedModules []string `json:",omitempty"` -	DefaultStripDex                  *bool    `json:",omitempty"` -	DisableDexPreopt                 *bool    `json:",omitempty"` -	DisableDexPreoptModules          []string `json:",omitempty"` + +	DisableDexPreopt        *bool    `json:",omitempty"` +	DisableDexPreoptModules []string `json:",omitempty"` +	DexPreoptProfileDir     *string  `json:",omitempty"`  	IntegerOverflowExcludePaths *[]string `json:",omitempty"` @@ -257,6 +258,8 @@ type productVariables struct {  	Exclude_draft_ndk_apis *bool `json:",omitempty"`  	FlattenApex *bool `json:",omitempty"` + +	DexpreoptGlobalConfig *string `json:",omitempty"`  }  func boolPtr(v bool) *bool {  |