diff options
Diffstat (limited to 'android/variable.go')
| -rw-r--r-- | android/variable.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go index 3eee9887e..ad63eee3a 100644 --- a/android/variable.go +++ b/android/variable.go @@ -96,6 +96,19 @@ type variableProperties struct { Uml struct { Cppflags []string } + + Use_lmkd_stats_log struct { + Cflags []string + } + + Arc struct { + Cflags []string + Exclude_srcs []string + Include_dirs []string + Shared_libs []string + Static_libs []string + Srcs []string + } } `android:"arch_variant"` } @@ -164,6 +177,8 @@ type productVariables struct { Enforce_vintf_manifest *bool `json:",omitempty"` Pdk *bool `json:",omitempty"` Uml *bool `json:",omitempty"` + Use_lmkd_stats_log *bool `json:",omitempty"` + Arc *bool `json:",omitempty"` MinimizeJavaDebugInfo *bool `json:",omitempty"` IntegerOverflowExcludePaths *[]string `json:",omitempty"` |