aboutsummaryrefslogtreecommitdiff
path: root/tests/products/BUILD
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-05-02 23:00:38 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-05-02 23:00:38 +0000
commitdf0a1f9a9607235e792284cc43cde907cdf63dfb (patch)
tree2f30886d437b414ce000ae9c4c37e0c03246526b /tests/products/BUILD
parent5511978238fe5a01d9e87eefb8a4b6564105b5a4 (diff)
parentd58c9f9c08ce62940a2c84a9a2ec0a3ce1a507b4 (diff)
downloadbazel-df0a1f9a9607235e792284cc43cde907cdf63dfb.tar.gz
Snap for 10053356 from d58c9f9c08ce62940a2c84a9a2ec0a3ce1a507b4 to udc-d1-release
Change-Id: I5b78e19ecc7b67395a06cfe27a592916a2f6b23d
Diffstat (limited to 'tests/products/BUILD')
-rw-r--r--tests/products/BUILD34
1 files changed, 25 insertions, 9 deletions
diff --git a/tests/products/BUILD b/tests/products/BUILD
index 0e78ebaa..22dd0163 100644
--- a/tests/products/BUILD
+++ b/tests/products/BUILD
@@ -24,18 +24,16 @@ android_product(
)
android_product(
- name = "aosp_arm64_for_testing",
- soong_variables = _soong_variables_arm64,
-)
-
-android_product(
- name = "aosp_x86_for_testing",
- soong_variables = _soong_variables_x86,
+ name = "aosp_arm_for_testing_custom_linker_alignment",
+ soong_variables = dicts.add(
+ _soong_variables_arm,
+ {"DeviceMaxPageSizeSupported": "65536"},
+ ),
)
android_product(
- name = "aosp_x86_64_for_testing",
- soong_variables = _soong_variables_x86_64,
+ name = "aosp_arm64_for_testing",
+ soong_variables = _soong_variables_arm64,
)
android_product(
@@ -70,3 +68,21 @@ android_product(
},
),
)
+
+android_product(
+ name = "aosp_arm64_for_testing_custom_linker_alignment",
+ soong_variables = dicts.add(
+ _soong_variables_arm64,
+ {"DeviceMaxPageSizeSupported": "16384"},
+ ),
+)
+
+android_product(
+ name = "aosp_x86_for_testing",
+ soong_variables = _soong_variables_x86,
+)
+
+android_product(
+ name = "aosp_x86_64_for_testing",
+ soong_variables = _soong_variables_x86_64,
+)