From: Joe Onorato Date: Fri, 11 Jun 2010 01:34:55 +0000 (-0700) Subject: The aapt and aidl tools are prebuilt when we're doing an apps-only build, so don... X-Git-Url: https://git.saurik.com/android/aapt.git/commitdiff_plain/24b511770b42024dd321fe6b4b0aa259b1aa673f The aapt and aidl tools are prebuilt when we're doing an apps-only build, so don't try to build them. Change-Id: I9896b11a9b90cbbbe2170243c8bdbc40231dfbff --- diff --git a/Android.mk b/Android.mk index 499a7ac..b339a2c 100644 --- a/Android.mk +++ b/Android.mk @@ -4,6 +4,9 @@ # 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) @@ -53,3 +56,4 @@ LOCAL_MODULE := aapt include $(BUILD_HOST_EXECUTABLE) +endif # TARGET_BUILD_APPS