summaryrefslogtreecommitdiff
path: root/android/variable.go
diff options
context:
space:
mode:
author Kalesh Singh <kaleshsingh@google.com> 2023-05-02 16:48:01 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2023-05-02 16:48:01 +0000
commit120b63b6f80136fd23bdd53dfaa8014bf792f6da (patch)
treecbc147d72988f35eab9a3e75f527f20921b7fa44 /android/variable.go
parenta841e74d3fa63b90a832e31abd0e4f915b93a4e9 (diff)
parente03c3bb67c9e6556bf87203475e41d5c965c3697 (diff)
Merge "16k: Align shared libraries and executables to 4k by default" into udc-dev am: e03c3bb67c
Original change: https://googleplex-android-review.googlesource.com/c/platform/build/soong/+/22934316 Change-Id: Ifa34e58066b0adc96f831a4baa75342d53a62c60 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'android/variable.go')
-rw-r--r--android/variable.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go
index 249d53b07..d7152b367 100644
--- a/android/variable.go
+++ b/android/variable.go
@@ -218,6 +218,7 @@ type productVariables struct {
DeviceVndkVersion *string `json:",omitempty"`
DeviceCurrentApiLevelForVendorModules *string `json:",omitempty"`
DeviceSystemSdkVersions []string `json:",omitempty"`
+ DeviceMaxPageSizeSupported *string `json:",omitempty"`
RecoverySnapshotVersion *string `json:",omitempty"`
@@ -505,6 +506,7 @@ func (v *productVariables) SetDefaultConfig() {
DeviceSecondaryArchVariant: stringPtr("armv8-a"),
DeviceSecondaryCpuVariant: stringPtr("generic"),
DeviceSecondaryAbi: []string{"armeabi-v7a", "armeabi"},
+ DeviceMaxPageSizeSupported: stringPtr("4096"),
AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
AAPTPreferredConfig: stringPtr("xhdpi"),