Merge "Revert "Tweak linux_glibc properties for musl builds in external/python/cpython3""
diff --git a/Android.bp b/Android.bp
index db5d4c2..13e7096 100644
--- a/Android.bp
+++ b/Android.bp
@@ -446,6 +446,33 @@
     cflags: ["-DANDROID_AUTORUN"],
 }
 
+cc_binary_host {
+    name: "py3-launcher-static",
+    defaults: ["py3-launcher-defaults"],
+    srcs: ["android/launcher_main.cpp"],
+    static_libs: ["py3-launcher-lib"],
+    static_executable: true,
+    target: {
+        glibc: {
+            enabled: false,
+        },
+    },
+}
+
+cc_binary_host {
+    name: "py3-launcher-autorun-static",
+    defaults: ["py3-launcher-defaults"],
+    srcs: ["android/launcher_main.cpp"],
+    static_libs: ["py3-launcher-lib"],
+    static_executable: true,
+    cflags: ["-DANDROID_AUTORUN"],
+    target: {
+        glibc: {
+            enabled: false,
+        },
+    },
+}
+
 python_binary_host {
     name: "py3-cmd",
     autorun: false,