summaryrefslogtreecommitdiff
path: root/test/Android.run-test.bp.py
diff options
context:
space:
mode:
author Martin Stjernholm <mast@google.com> 2024-05-07 20:55:22 +0100
committer Martin Stjernholm <mast@google.com> 2024-05-13 13:19:04 +0000
commitdf673f5bbf81bc154d696e10de3119027659bc10 (patch)
tree14f7b0fee75c5b6b3ea954b38cee7758f0e18a1b /test/Android.run-test.bp.py
parent8ad286a19ba206224072fb84b0bd599c5d25cdbe (diff)
Clean up source_build Soong config variables.
They no longer have any effect after the removal of the ART_MODULE_BUILD_FROM_SOURCE build variable (b/308188056). Test: m nothing Bug: 335854415 Change-Id: Ibe30b24defe8c63d2c0baab1ecebbf72cd970f74
Diffstat (limited to 'test/Android.run-test.bp.py')
-rwxr-xr-xtest/Android.run-test.bp.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/Android.run-test.bp.py b/test/Android.run-test.bp.py
index 74745b04ac..2f1dfb8e2a 100755
--- a/test/Android.run-test.bp.py
+++ b/test/Android.run-test.bp.py
@@ -61,7 +61,6 @@ def main():
// Install in the output directory to make it accessible for tests.
prebuilt_etc_host {{
name: "{name}",
- defaults: ["art_module_source_build_prebuilt_defaults"],
src: ":{name}-tmp",
sub_dir: "art",
filename: "{name}.zip",
@@ -89,7 +88,6 @@ def main():
// Install in the output directory to make it accessible for tests.
prebuilt_etc_host {{
name: "{name}",
- defaults: ["art_module_source_build_prebuilt_defaults"],
src: ":{name}-tmp",
sub_dir: "art",
filename: "{name}.zip",
@@ -99,11 +97,6 @@ def main():
f.write(textwrap.dedent(f"""
genrule_defaults {{
name: "art-run-test-{mode}-data-defaults",
- defaults: [
- // Enable only in source builds, where com.android.art.testing is
- // available.
- "art_module_source_build_genrule_defaults",
- ],
tool_files: [
"run_test_build.py",
":art-run-test-bootclasspath",
@@ -142,7 +135,6 @@ def main():
f.write(textwrap.dedent(f"""
java_genrule {{
name: "{name}-tmp",
- defaults: ["art_module_source_build_genrule_defaults"],
out: ["{name}.zip"],
srcs: [
{srcs}
@@ -154,7 +146,6 @@ def main():
// Install in the output directory to make it accessible for tests.
prebuilt_etc_host {{
name: "{name}",
- defaults: ["art_module_source_build_prebuilt_defaults"],
src: ":{name}-tmp",
required: [
{deps}
@@ -171,11 +162,6 @@ def main():
// Phony target used to build all shards
java_genrule {{
name: "{name}-tmp",
- defaults: [
- // Enable only in source builds, where com.android.art.testing is
- // available.
- "art_module_source_build_genrule_defaults",
- ],
out: ["{name}.txt"],
srcs: [
{srcs}
@@ -186,7 +172,6 @@ def main():
// Phony target used to install all shards
prebuilt_etc_host {{
name: "{name}",
- defaults: ["art_module_source_build_prebuilt_defaults"],
src: ":{name}-tmp",
required: [
{deps}