The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | # Copyright 2005 The Android Open Source Project |
| 2 | # |
| 3 | # Android.mk for adb |
| 4 | # |
| 5 | |
| 6 | LOCAL_PATH:= $(call my-dir) |
| 7 | |
| 8 | # adb host tool |
| 9 | # ========================================================= |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 10 | include $(CLEAR_VARS) |
| 11 | |
| 12 | # Default to a virtual (sockets) usb interface |
| 13 | USB_SRCS := |
| 14 | EXTRA_SRCS := |
| 15 | |
| 16 | ifeq ($(HOST_OS),linux) |
| 17 | USB_SRCS := usb_linux.c |
| 18 | EXTRA_SRCS := get_my_path_linux.c |
Chih-Wei Huang | 9c60755 | 2013-01-01 15:24:33 +0800 | [diff] [blame] | 19 | LOCAL_LDLIBS += -lrt -ldl -lpthread |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 20 | endif |
| 21 | |
| 22 | ifeq ($(HOST_OS),darwin) |
| 23 | USB_SRCS := usb_osx.c |
| 24 | EXTRA_SRCS := get_my_path_darwin.c |
Benoit Goby | 345ca13 | 2012-08-31 17:44:27 -0700 | [diff] [blame] | 25 | LOCAL_LDLIBS += -lpthread -framework CoreFoundation -framework IOKit -framework Carbon |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 26 | endif |
| 27 | |
Alexey Tarasov | 3b226f9 | 2009-10-25 01:37:37 +1100 | [diff] [blame] | 28 | ifeq ($(HOST_OS),freebsd) |
| 29 | USB_SRCS := usb_libusb.c |
| 30 | EXTRA_SRCS := get_my_path_freebsd.c |
| 31 | LOCAL_LDLIBS += -lpthread -lusb |
| 32 | endif |
| 33 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 34 | ifeq ($(HOST_OS),windows) |
| 35 | USB_SRCS := usb_windows.c |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 36 | EXTRA_SRCS := get_my_path_windows.c ../libcutils/list.c |
Benoit Goby | 345ca13 | 2012-08-31 17:44:27 -0700 | [diff] [blame] | 37 | EXTRA_STATIC_LIBS := AdbWinApi |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 38 | ifneq ($(strip $(USE_CYGWIN)),) |
Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 39 | # Pure cygwin case |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 40 | LOCAL_LDLIBS += -lpthread -lgdi32 |
Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 41 | LOCAL_C_INCLUDES += /usr/include/w32api/ddk |
| 42 | endif |
| 43 | ifneq ($(strip $(USE_MINGW)),) |
| 44 | # MinGW under Linux case |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 45 | LOCAL_LDLIBS += -lws2_32 -lgdi32 |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 46 | USE_SYSDEPS_WIN32 := 1 |
Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 47 | LOCAL_C_INCLUDES += /usr/i586-mingw32msvc/include/ddk |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 48 | endif |
Raphael | fab1678 | 2010-04-13 15:25:50 -0700 | [diff] [blame] | 49 | LOCAL_C_INCLUDES += development/host/windows/usb/api/ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 50 | endif |
| 51 | |
| 52 | LOCAL_SRC_FILES := \ |
| 53 | adb.c \ |
| 54 | console.c \ |
| 55 | transport.c \ |
| 56 | transport_local.c \ |
| 57 | transport_usb.c \ |
| 58 | commandline.c \ |
| 59 | adb_client.c \ |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 60 | adb_auth_host.c \ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 61 | sockets.c \ |
| 62 | services.c \ |
| 63 | file_sync_client.c \ |
| 64 | $(EXTRA_SRCS) \ |
| 65 | $(USB_SRCS) \ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 66 | utils.c \ |
Raphael | 26f3de6 | 2009-08-11 11:08:45 -0700 | [diff] [blame] | 67 | usb_vendors.c |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 68 | |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 69 | LOCAL_C_INCLUDES += external/openssl/include |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 70 | |
| 71 | ifneq ($(USE_SYSDEPS_WIN32),) |
| 72 | LOCAL_SRC_FILES += sysdeps_win32.c |
David 'Digit' Turner | 414ff7d | 2009-05-18 17:07:46 +0200 | [diff] [blame] | 73 | else |
| 74 | LOCAL_SRC_FILES += fdevent.c |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 75 | endif |
| 76 | |
| 77 | LOCAL_CFLAGS += -O2 -g -DADB_HOST=1 -Wall -Wno-unused-parameter |
Jack Palevich | 7fe202f | 2010-05-25 14:49:57 +0800 | [diff] [blame] | 78 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 79 | LOCAL_MODULE := adb |
Kenny Root | 928116c | 2012-09-26 09:58:07 -0700 | [diff] [blame] | 80 | LOCAL_MODULE_TAGS := debug |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 81 | |
Benoit Goby | 345ca13 | 2012-08-31 17:44:27 -0700 | [diff] [blame] | 82 | LOCAL_STATIC_LIBRARIES := libzipfile libunz libcrypto_static $(EXTRA_STATIC_LIBS) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 83 | ifeq ($(USE_SYSDEPS_WIN32),) |
| 84 | LOCAL_STATIC_LIBRARIES += libcutils |
| 85 | endif |
| 86 | |
| 87 | include $(BUILD_HOST_EXECUTABLE) |
| 88 | |
Ying Wang | 96535ba | 2012-09-05 10:26:43 -0700 | [diff] [blame] | 89 | $(call dist-for-goals,dist_files sdk,$(LOCAL_BUILT_MODULE)) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 90 | |
| 91 | ifeq ($(HOST_OS),windows) |
Raphael | 26f3de6 | 2009-08-11 11:08:45 -0700 | [diff] [blame] | 92 | $(LOCAL_INSTALLED_MODULE): \ |
| 93 | $(HOST_OUT_EXECUTABLES)/AdbWinApi.dll \ |
| 94 | $(HOST_OUT_EXECUTABLES)/AdbWinUsbApi.dll |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 95 | endif |
| 96 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 97 | |
| 98 | # adbd device daemon |
| 99 | # ========================================================= |
| 100 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 101 | include $(CLEAR_VARS) |
| 102 | |
| 103 | LOCAL_SRC_FILES := \ |
| 104 | adb.c \ |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 105 | backup_service.c \ |
David 'Digit' Turner | 414ff7d | 2009-05-18 17:07:46 +0200 | [diff] [blame] | 106 | fdevent.c \ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 107 | transport.c \ |
| 108 | transport_local.c \ |
| 109 | transport_usb.c \ |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 110 | adb_auth_client.c \ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 111 | sockets.c \ |
| 112 | services.c \ |
| 113 | file_sync_service.c \ |
| 114 | jdwp_service.c \ |
| 115 | framebuffer_service.c \ |
| 116 | remount_service.c \ |
| 117 | usb_linux_client.c \ |
| 118 | log_service.c \ |
Raphael | 26f3de6 | 2009-08-11 11:08:45 -0700 | [diff] [blame] | 119 | utils.c |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 120 | |
| 121 | LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter |
| 122 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
| 123 | |
Nick Kralevich | 5890fe3 | 2012-01-19 13:11:35 -0800 | [diff] [blame] | 124 | ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT))) |
| 125 | LOCAL_CFLAGS += -DALLOW_ADBD_ROOT=1 |
| 126 | endif |
| 127 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 128 | LOCAL_MODULE := adbd |
| 129 | |
| 130 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 131 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN) |
| 132 | LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_SBIN_UNSTRIPPED) |
| 133 | |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 134 | LOCAL_STATIC_LIBRARIES := libcutils libc libmincrypt |
Jeff Brown | 29e1e73 | 2011-07-11 22:12:32 -0700 | [diff] [blame] | 135 | include $(BUILD_EXECUTABLE) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 136 | |
John Michelau | c318833 | 2010-09-23 17:08:34 -0500 | [diff] [blame] | 137 | |
| 138 | # adb host tool for device-as-host |
| 139 | # ========================================================= |
Benoit Goby | dff0237 | 2010-10-06 18:30:55 -0700 | [diff] [blame] | 140 | ifneq ($(SDK_ONLY),true) |
John Michelau | c318833 | 2010-09-23 17:08:34 -0500 | [diff] [blame] | 141 | include $(CLEAR_VARS) |
| 142 | |
Chih-Wei Huang | 9c60755 | 2013-01-01 15:24:33 +0800 | [diff] [blame] | 143 | LOCAL_LDLIBS := -lrt -ldl -lpthread |
John Michelau | c318833 | 2010-09-23 17:08:34 -0500 | [diff] [blame] | 144 | |
| 145 | LOCAL_SRC_FILES := \ |
| 146 | adb.c \ |
| 147 | console.c \ |
| 148 | transport.c \ |
| 149 | transport_local.c \ |
| 150 | transport_usb.c \ |
| 151 | commandline.c \ |
| 152 | adb_client.c \ |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 153 | adb_auth_host.c \ |
John Michelau | c318833 | 2010-09-23 17:08:34 -0500 | [diff] [blame] | 154 | sockets.c \ |
| 155 | services.c \ |
| 156 | file_sync_client.c \ |
| 157 | get_my_path_linux.c \ |
| 158 | usb_linux.c \ |
| 159 | utils.c \ |
| 160 | usb_vendors.c \ |
| 161 | fdevent.c |
| 162 | |
| 163 | LOCAL_CFLAGS := \ |
| 164 | -O2 \ |
| 165 | -g \ |
| 166 | -DADB_HOST=1 \ |
| 167 | -DADB_HOST_ON_TARGET=1 \ |
| 168 | -Wall \ |
| 169 | -Wno-unused-parameter \ |
| 170 | -D_XOPEN_SOURCE \ |
| 171 | -D_GNU_SOURCE |
| 172 | |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 173 | LOCAL_C_INCLUDES += external/openssl/include |
| 174 | |
John Michelau | c318833 | 2010-09-23 17:08:34 -0500 | [diff] [blame] | 175 | LOCAL_MODULE := adb |
| 176 | |
| 177 | LOCAL_STATIC_LIBRARIES := libzipfile libunz libcutils |
| 178 | |
Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 179 | LOCAL_SHARED_LIBRARIES := libcrypto |
| 180 | |
John Michelau | c318833 | 2010-09-23 17:08:34 -0500 | [diff] [blame] | 181 | include $(BUILD_EXECUTABLE) |
Benoit Goby | cb56b71 | 2010-10-06 17:11:59 -0700 | [diff] [blame] | 182 | endif |