summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorBenoit Goby <benoit@android.com>2010-10-06 18:30:55 -0700
committerBenoit Goby <benoit@android.com>2010-10-06 18:30:55 -0700
commitdff02374301f93860568c7805e20b55e2e04a179 (patch)
tree36da33fb509b23f245d32ce6b40830474c28a9c4 /adb
parentcb56b712b559dc66d10a3993b60ee4886cebac73 (diff)
downloadsystem_core-dff02374301f93860568c7805e20b55e2e04a179.zip
system_core-dff02374301f93860568c7805e20b55e2e04a179.tar.gz
system_core-dff02374301f93860568c7805e20b55e2e04a179.tar.bz2
Don't build adb for sdk only builds
Change-Id: I0c56213e81a889fd3a7c5e72c4a6e63544a2a3bd Signed-off-by: Benoit Goby <benoit@android.com>
Diffstat (limited to 'adb')
-rw-r--r--adb/Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/adb/Android.mk b/adb/Android.mk
index fe6fbed..df96d58 100644
--- a/adb/Android.mk
+++ b/adb/Android.mk
@@ -157,6 +157,7 @@ endif
# adb host tool for device-as-host
# =========================================================
ifneq ($(TARGET_SIMULATOR),true)
+ifneq ($(SDK_ONLY),true)
include $(CLEAR_VARS)
LOCAL_LDLIBS := -lrt -lncurses -lpthread
@@ -194,3 +195,4 @@ LOCAL_STATIC_LIBRARIES := libzipfile libunz libcutils
include $(BUILD_EXECUTABLE)
endif
+endif