[Android.bp] Add ARC++ product variable

Test: Compile
Bug: 64500663

Change-Id: I92739eb46029f7c808e1f1a928947b3ec596a0b2
This commit is contained in:
Risan
2017-11-27 18:14:46 +09:00
parent da86065675
commit ea004dd75f

View File

@@ -98,6 +98,11 @@ type variableProperties struct {
Uml struct { Uml struct {
Cppflags []string Cppflags []string
} }
Arc struct {
Exclude_srcs []string
Static_libs []string
}
} `android:"arch_variant"` } `android:"arch_variant"`
} }
@@ -157,6 +162,7 @@ type productVariables struct {
Treble *bool `json:",omitempty"` Treble *bool `json:",omitempty"`
Pdk *bool `json:",omitempty"` Pdk *bool `json:",omitempty"`
Uml *bool `json:",omitempty"` Uml *bool `json:",omitempty"`
Arc *bool `json:",omitempty"`
MinimizeJavaDebugInfo *bool `json:",omitempty"` MinimizeJavaDebugInfo *bool `json:",omitempty"`
IntegerOverflowExcludePaths *[]string `json:",omitempty"` IntegerOverflowExcludePaths *[]string `json:",omitempty"`