]> git.saurik.com Git - android/aapt.git/blobdiff - Android.mk
New aapt feature to do smarter filtering of configurations.
[android/aapt.git] / Android.mk
index 499a7aca59323ff47a72c2724f28d12a20dea09c..a3e5d9a503b456d39e89275e3f35dcdbd6af376d 100644 (file)
@@ -4,16 +4,22 @@
 # Android Asset Packaging Tool
 #
 
+# This tool is prebuilt if we're doing an app-only build.
+ifeq ($(TARGET_BUILD_APPS),)
+
 LOCAL_PATH:= $(call my-dir)
 include $(CLEAR_VARS)
 
 LOCAL_SRC_FILES := \
        AaptAssets.cpp \
        Command.cpp \
+       CrunchCache.cpp \
+       FileFinder.cpp \
        Main.cpp \
        Package.cpp \
        StringPool.cpp \
        XMLNode.cpp \
+       ResourceFilter.cpp \
        ResourceTable.cpp \
        Images.cpp \
        Resource.cpp \
@@ -38,7 +44,7 @@ LOCAL_STATIC_LIBRARIES := \
        libpng
 
 ifeq ($(HOST_OS),linux)
-LOCAL_LDLIBS += -lrt
+LOCAL_LDLIBS += -lrt -lpthread
 endif
 
 # Statically link libz for MinGW (Win SDK under Linux),
@@ -53,3 +59,4 @@ LOCAL_MODULE := aapt
 
 include $(BUILD_HOST_EXECUTABLE)
 
+endif # TARGET_BUILD_APPS