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