Add Binder32bit product variable
To allow cflag changes when using the "old" binder API that are still used by all 32-bit only configurations. We can't just use android32/android64 here, since some devices use a 64-bit kernel with a 32-bit userspace, which is configured as "android32". Change-Id: I8450484b75d59c1855c7ba36260c08925e7b28ad
This commit is contained in:
parent
627d83db71
commit
1be3538862
1 changed files with 5 additions and 0 deletions
|
@ -58,6 +58,10 @@ type variableProperties struct {
|
|||
Schedboost struct {
|
||||
Cflags []string
|
||||
}
|
||||
|
||||
Binder32bit struct {
|
||||
Cflags []string
|
||||
}
|
||||
} `android:"arch_variant"`
|
||||
}
|
||||
|
||||
|
@ -96,6 +100,7 @@ type productVariables struct {
|
|||
HostStaticBinaries *bool `json:",omitempty"`
|
||||
Cpusets *bool `json:",omitempty"`
|
||||
Schedboost *bool `json:",omitempty"`
|
||||
Binder32bit *bool `json:",omitempty"`
|
||||
|
||||
SanitizeHost *[]string `json:",omitempty"`
|
||||
SanitizeDevice *[]string `json:",omitempty"`
|
||||
|
|
Loading…
Reference in a new issue