summaryrefslogtreecommitdiffstats
path: root/adb/Android.mk
diff options
context:
space:
mode:
authorBenoit Goby <benoit@android.com>2010-10-06 17:11:59 -0700
committerBenoit Goby <benoit@android.com>2010-10-06 17:23:16 -0700
commitcb56b712b559dc66d10a3993b60ee4886cebac73 (patch)
treea45ef64ae26b463e38f4d8410c44bd0c10294e18 /adb/Android.mk
parentc318833b359164f25d7a93f6395c0cad787bacd7 (diff)
downloadsystem_core-cb56b712b559dc66d10a3993b60ee4886cebac73.zip
system_core-cb56b712b559dc66d10a3993b60ee4886cebac73.tar.gz
system_core-cb56b712b559dc66d10a3993b60ee4886cebac73.tar.bz2
Don't build adb for simulator target
Change-Id: Ibe4ef6bb111dc7123e53262553deb8f5e25e9391 Signed-off-by: Benoit Goby <benoit@android.com>
Diffstat (limited to 'adb/Android.mk')
-rw-r--r--adb/Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/adb/Android.mk b/adb/Android.mk
index a61dcde..fe6fbed 100644
--- a/adb/Android.mk
+++ b/adb/Android.mk
@@ -156,6 +156,7 @@ endif
# adb host tool for device-as-host
# =========================================================
+ifneq ($(TARGET_SIMULATOR),true)
include $(CLEAR_VARS)
LOCAL_LDLIBS := -lrt -lncurses -lpthread
@@ -192,3 +193,4 @@ LOCAL_MODULE := adb
LOCAL_STATIC_LIBRARIES := libzipfile libunz libcutils
include $(BUILD_EXECUTABLE)
+endif