diff options
Diffstat (limited to 'android/variable.go')
| -rw-r--r-- | android/variable.go | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go index c8a672e31..05e283ff0 100644 --- a/android/variable.go +++ b/android/variable.go @@ -98,6 +98,11 @@ type variableProperties struct {  		Uml struct {  			Cppflags []string  		} + +		Arc struct { +			Exclude_srcs []string +			Static_libs  []string +		}  	} `android:"arch_variant"`  } @@ -157,6 +162,7 @@ type productVariables struct {  	Treble                     *bool `json:",omitempty"`  	Pdk                        *bool `json:",omitempty"`  	Uml                        *bool `json:",omitempty"` +	Arc                        *bool `json:",omitempty"`  	MinimizeJavaDebugInfo      *bool `json:",omitempty"`  	IntegerOverflowExcludePaths *[]string `json:",omitempty"`  |