Merge "16k: soong: Add flag Device_page_size_agnostic" into main am: f7bd2592a1

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2657042

Change-Id: I8c0c725ff39ba681f61071d9b43a52403047a6d4
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Juan Yescas
2023-07-25 14:57:05 +00:00
committed by Automerger Merge Worker

View File

@@ -95,6 +95,10 @@ type variableProperties struct {
Cflags []string
}
Device_page_size_agnostic struct {
Cflags []string `android:"arch_variant"`
} `android:"arch_variant"`
Override_rs_driver struct {
Cflags []string
}
@@ -275,6 +279,7 @@ type ProductVariables struct {
Safestack *bool `json:",omitempty"`
HostStaticBinaries *bool `json:",omitempty"`
Binder32bit *bool `json:",omitempty"`
Device_page_size_agnostic *bool `json:",omitempty"`
UseGoma *bool `json:",omitempty"`
UseRBE *bool `json:",omitempty"`
UseRBEJAVAC *bool `json:",omitempty"`
@@ -529,6 +534,7 @@ func (v *ProductVariables) SetDefaultConfig() {
Safestack: boolPtr(false),
TrimmedApex: boolPtr(false),
Build_from_text_stub: boolPtr(false),
Device_page_size_agnostic: boolPtr(false),
BootJars: ConfiguredJarList{apexes: []string{}, jars: []string{}},
ApexBootJars: ConfiguredJarList{apexes: []string{}, jars: []string{}},