ART: Remove libziparchive dependency

Remove the dependency from libart. It is no longer needed.

Test: mmma art
Change-Id: Ia944048ba3e5705899e9d6f30cd68b56d27b1a2c
diff --git a/runtime/Android.bp b/runtime/Android.bp
index b347019..0345c2f 100644
--- a/runtime/Android.bp
+++ b/runtime/Android.bp
@@ -338,14 +338,10 @@
                 "thread_android.cc",
             ],
             shared_libs: [
-                // For android::FileMap used by libziparchive.
-                "libutils",
                 "libtombstoned_client",
             ],
             static_libs: [
-                // ZipArchive support, the order matters here to get all symbols.
-                "libziparchive",
-                "libz",
+                "libz",  // For adler32.
             ],
         },
         android_arm: {
@@ -367,8 +363,7 @@
                 "thread_linux.cc",
             ],
             shared_libs: [
-                "libziparchive",
-                "libz",
+                "libz",  // For adler32.
             ],
         },
     },
@@ -600,7 +595,6 @@
     ],
     shared_libs: [
         "libbacktrace",
-        "libziparchive",
     ],
     header_libs: [
         "art_cmdlineparser_headers", // For parsed_options_test.
diff --git a/runtime/jit/profiling_info_test.cc b/runtime/jit/profiling_info_test.cc
index 106a80a..8424610 100644
--- a/runtime/jit/profiling_info_test.cc
+++ b/runtime/jit/profiling_info_test.cc
@@ -31,7 +31,6 @@
 #include "mirror/class_loader.h"
 #include "profile/profile_compilation_info.h"
 #include "scoped_thread_state_change-inl.h"
-#include "ziparchive/zip_writer.h"
 
 namespace art {