diff options
Diffstat (limited to 'android/variable.go')
| -rw-r--r-- | android/variable.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go index 40fa45e4c..3831a29c7 100644 --- a/android/variable.go +++ b/android/variable.go @@ -101,6 +101,15 @@ type variableProperties struct { Uml struct { Cppflags []string } + + Arc struct { + Cflags []string + Exclude_srcs []string + Include_dirs []string + Shared_libs []string + Static_libs []string + Srcs []string + } } `android:"arch_variant"` } @@ -166,6 +175,7 @@ type productVariables struct { Enforce_vintf_manifest *bool `json:",omitempty"` Pdk *bool `json:",omitempty"` Uml *bool `json:",omitempty"` + Arc *bool `json:",omitempty"` MinimizeJavaDebugInfo *bool `json:",omitempty"` IntegerOverflowExcludePaths *[]string `json:",omitempty"` |