Don't build adb for simulator target

Change-Id: Ibe4ef6bb111dc7123e53262553deb8f5e25e9391
Signed-off-by: Benoit Goby <benoit@android.com>
This commit is contained in:
Benoit Goby 2010-10-06 17:11:59 -07:00
parent c318833b35
commit cb56b712b5
1 changed files with 2 additions and 0 deletions

View File

@ -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