ICU: Remove static library versions of ICU.

Currently unused.

Test: make checkbuild

Change-Id: I9dfe890aeeaff4dbb980da32bc8152307012a1bd
diff --git a/icu4c/source/Android.bp b/icu4c/source/Android.bp
index 437f48c..bebf7c5 100644
--- a/icu4c/source/Android.bp
+++ b/icu4c/source/Android.bp
@@ -23,10 +23,3 @@
     srcs: ["stubdata/stubdata.c"],
     local_include_dirs: ["common"],
 }
-
-cc_library_static {
-    name: "libicuuc_stubdata_ndk",
-    sdk_version: "9",
-    srcs: ["stubdata/stubdata.c"],
-    local_include_dirs: ["common"],
-}
diff --git a/icu4c/source/common/Android.bp b/icu4c/source/common/Android.bp
index a5a0824..9555db7 100644
--- a/icu4c/source/common/Android.bp
+++ b/icu4c/source/common/Android.bp
@@ -258,16 +258,3 @@
     defaults: ["libicuuc_defaults"],
     static_libs: ["libicuuc_stubdata"],
 }
-
-//
-// Build as a static library against the NDK
-//
-cc_library_static {
-    name: "libicuuc_static",
-    sdk_version: "9",
-    stl: "stlport_static",
-    defaults: ["libicuuc_defaults"],
-    static_libs: ["libicuuc_stubdata_ndk"],
-
-    cflags: ["-Os"], // Using -Os over -O3 actually cuts down the final executable size by a few dozen kilobytes
-}
diff --git a/icu4c/source/i18n/Android.bp b/icu4c/source/i18n/Android.bp
index c7b0286..f521095 100644
--- a/icu4c/source/i18n/Android.bp
+++ b/icu4c/source/i18n/Android.bp
@@ -250,16 +250,3 @@
         "-lpthread",
     ],
 }
-
-//
-// Build as a static library against the NDK
-//
-cc_library_static {
-    name: "libicui18n_static",
-    defaults: ["libicui18n_defaults"],
-    sdk_version: "9",
-    stl: "stlport_static",
-    static_libs: ["libicuuc_static"],
-
-    cflags: ["-Os"], // Using -Os over -O3 actually cuts down the final executable size by a few dozen kilobytes
-}