Switch py2-launcher to use libsqlite_static_noicu

The 'libsqlite' library for host recently switched on the
SQLITE_ENABLE_ICU flag, which now requires ICU libraries to be included
in binaries that link libsqlite statically. Because py2-launcher does
not need the ICU extensions, switch to using the
'libsqlite_static_noicu' target.

Test: m py2-launcher

Bug: 308173442
Change-Id: I8ede90d7bd7eb016b05e181a6955ff2d3b770e8f
diff --git a/Android.bp b/Android.bp
index eed47c7..6d59c06 100644
--- a/Android.bp
+++ b/Android.bp
@@ -311,7 +311,7 @@
             ],
         },
         host: {
-            static_libs: ["libsqlite"],
+            static_libs: ["libsqlite_static_noicu"],
         },
         // Use shared libsqlite for device side, otherwise
         // the executable size will be really huge.