X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/283c2c492c1b7eadaeeed6f38158752b0a77aff7..483bf9fcbadc82d390fe91ebf23cd9bf898940a5:/Android.mk diff --git a/Android.mk b/Android.mk index 499a7ac..e507fb9 100644 --- a/Android.mk +++ b/Android.mk @@ -4,12 +4,17 @@ # 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 \ @@ -38,7 +43,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 +58,4 @@ LOCAL_MODULE := aapt include $(BUILD_HOST_EXECUTABLE) +endif # TARGET_BUILD_APPS