summaryrefslogtreecommitdiff
path: root/android/variable.go
diff options
context:
space:
mode:
author Risan <risan@google.com> 2017-11-27 18:14:46 +0900
committer Risan <risan@google.com> 2017-11-30 04:20:04 +0000
commitea004dd75f53a2b0378ffb242b3956c08f3ea568 (patch)
tree73eec02ba78a836d4291c2e993cb66862c840b27 /android/variable.go
parentda8606567550ffe3349d06077d03dcdda03f509d (diff)
[Android.bp] Add ARC++ product variable
Test: Compile Bug: 64500663 Change-Id: I92739eb46029f7c808e1f1a928947b3ec596a0b2
Diffstat (limited to 'android/variable.go')
-rw-r--r--android/variable.go6
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"`