diff options
author | 2025-02-28 16:34:06 -0800 | |
---|---|---|
committer | 2025-02-28 16:34:06 -0800 | |
commit | 89ecfdda8def418168212c935d6522558cfd3edc (patch) | |
tree | 20d84d124683c143b1c42e711e9e2d72c196782b | |
parent | 21e8ae7d77e09bed069ca58b5da06f53617b9ff5 (diff) |
Cleanup python version properties
Now that python 2 is fully removed, there's no need for
version-specific properties. Remove them.
Also remove usages of embedded_launcher: true, as that
is the new default value.
Bug: 399954452
Test: Presubmits
Change-Id: I2ceacd6e62f611df72956373bc014717bb6d003e
-rw-r--r-- | android/pandora/test/Android.bp | 12 | ||||
-rw-r--r-- | framework/tests/bumble/Android.bp | 6 | ||||
-rw-r--r-- | tools/rootcanal/Android.bp | 5 |
3 files changed, 3 insertions, 20 deletions
diff --git a/android/pandora/test/Android.bp b/android/pandora/test/Android.bp index a271fb7345..794b75ff61 100644 --- a/android/pandora/test/Android.bp +++ b/android/pandora/test/Android.bp @@ -22,11 +22,7 @@ python_test_host { srcs: [ "**/*.py", ], - version: { - py3: { - embedded_launcher: false, - }, - }, + embedded_launcher: false, libs: [ "bumble_services_experimental-python", "libavatar", @@ -56,11 +52,7 @@ python_test_host { "**/*.py", ], test_config: "AndroidPhyTest.xml", - version: { - py3: { - embedded_launcher: false, - }, - }, + embedded_launcher: false, libs: [ "bumble_services_experimental-python", "libavatar", diff --git a/framework/tests/bumble/Android.bp b/framework/tests/bumble/Android.bp index 8728910405..af28a67db2 100644 --- a/framework/tests/bumble/Android.bp +++ b/framework/tests/bumble/Android.bp @@ -105,11 +105,7 @@ python_binary_host { srcs: [ "src/bumble_server.py", ], - version: { - py3: { - embedded_launcher: false, - }, - }, + embedded_launcher: false, libs: [ "bumble-pandora", "bumble_services_experimental-python", diff --git a/tools/rootcanal/Android.bp b/tools/rootcanal/Android.bp index e7ccec6657..501a3efeb2 100644 --- a/tools/rootcanal/Android.bp +++ b/tools/rootcanal/Android.bp @@ -314,11 +314,6 @@ python_test_host { test_options: { unit_test: true, }, - version: { - py3: { - embedded_launcher: true, - }, - }, } // test-vendor unit tests for host |