OSDN Git Service

build: move Zip* from libandroidfw to libutils
authorColin Cross <ccross@android.com>
Fri, 23 Mar 2012 01:47:23 +0000 (18:47 -0700)
committerColin Cross <ccross@android.com>
Fri, 23 Mar 2012 01:47:23 +0000 (18:47 -0700)
ZipUtils is needed by build/tools, move it from libandroidfw
(frameworks/base) to libutils (frameworks/native).

Change-Id: I188247d058f1baa0ebd14282208d496c4ba061be

tools/zipalign/Android.mk
tools/zipalign/ZipFile.cpp

index 8ed60df..9763bd2 100644 (file)
@@ -15,7 +15,6 @@ LOCAL_SRC_FILES := \
 LOCAL_C_INCLUDES += external/zlib
 
 LOCAL_STATIC_LIBRARIES := \
-       libandroidfw \
        libutils \
        libcutils
 
index 8057068..3994c31 100644 (file)
@@ -20,8 +20,8 @@
 
 #define LOG_TAG "zip"
 
-#include <androidfw/ZipUtils.h>
 #include <utils/Log.h>
+#include <utils/ZipUtils.h>
 
 #include "ZipFile.h"