X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/9822a24b454cfa02553c2e23ad8c92c6f04659e4..901384222cb775bceec4723c285866bd4617b4bb:/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