blob: 8f56d744e8181f660ee399eae84eb963b3c12675 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001# Copyright 2005 The Android Open Source Project
2#
3# Android.mk for adb
4#
5
6LOCAL_PATH:= $(call my-dir)
7
Dan Albert9113b472015-07-30 10:25:32 -07008adb_host_sanitize :=
9adb_target_sanitize :=
10
Dan Albert1ba1d7c2015-05-05 17:46:50 -070011adb_version := $(shell git -C $(LOCAL_PATH) rev-parse --short=12 HEAD 2>/dev/null)-android
12
13ADB_COMMON_CFLAGS := \
Dan Albert23fee8f2015-05-20 18:56:10 -070014 -Wall -Wextra -Werror \
Dan Albert459df8f2015-07-08 13:50:42 -070015 -Wno-unused-parameter \
Dan Albert286bb6d2015-07-09 20:35:09 +000016 -Wno-missing-field-initializers \
Elliott Hughes6d929972015-10-27 13:40:35 -070017 -Wvla \
Dan Albert1ba1d7c2015-05-05 17:46:50 -070018 -DADB_REVISION='"$(adb_version)"' \
19
Josh Gaob7b1edf2015-11-11 17:56:12 -080020ADB_COMMON_linux_CFLAGS := \
21 -std=c++14 \
22 -Wexit-time-destructors \
23
24ADB_COMMON_darwin_CFLAGS := \
25 -std=c++14 \
26 -Wexit-time-destructors \
27
Spencer Lowe347c1d2015-08-02 18:13:54 -070028# Define windows.h and tchar.h Unicode preprocessor symbols so that
29# CreateFile(), _tfopen(), etc. map to versions that take wchar_t*, breaking the
30# build if you accidentally pass char*. Fix by calling like:
Spencer Lowd21dc822015-11-12 15:20:15 -080031# std::wstring path_wide;
32# if (!android::base::UTF8ToWide(path_utf8, &path_wide)) { /* error handling */ }
33# CreateFileW(path_wide.c_str());
Spencer Lowe347c1d2015-08-02 18:13:54 -070034ADB_COMMON_windows_CFLAGS := \
35 -DUNICODE=1 -D_UNICODE=1 \
36
Dan Albert630b9af2014-11-24 23:34:35 -080037# libadb
38# =========================================================
39
40# Much of adb is duplicated in bootable/recovery/minadb and fastboot. Changes
41# made to adb rarely get ported to the other two, so the trees have diverged a
42# bit. We'd like to stop this because it is a maintenance nightmare, but the
43# divergence makes this difficult to do all at once. For now, we will start
44# small by moving common files into a static library. Hopefully some day we can
45# get enough of adb in here that we no longer need minadb. https://b/17626262
Dan Albertba3a2512015-02-18 17:47:33 -080046LIBADB_SRC_FILES := \
Dan Albertbac34742015-02-25 17:51:28 -080047 adb.cpp \
48 adb_auth.cpp \
Dan Albertcc731cc2015-02-24 21:26:58 -080049 adb_io.cpp \
Dan Albertbac34742015-02-25 17:51:28 -080050 adb_listeners.cpp \
Yabin Cuiaed3c612015-09-22 15:52:57 -070051 adb_trace.cpp \
Elliott Hughes58305772015-04-17 13:57:15 -070052 adb_utils.cpp \
Josh Gaoaddab3d2016-02-16 17:34:53 -080053 fdevent.cpp \
Dan Albertbac34742015-02-25 17:51:28 -080054 sockets.cpp \
55 transport.cpp \
56 transport_local.cpp \
57 transport_usb.cpp \
Dan Albertba3a2512015-02-18 17:47:33 -080058
Elliott Hughes53daee62015-04-19 13:17:01 -070059LIBADB_TEST_SRCS := \
60 adb_io_test.cpp \
61 adb_utils_test.cpp \
Josh Gaob582fa32016-02-10 14:49:00 -080062 fdevent_test.cpp \
63 socket_test.cpp \
Josh Gaod302a152016-02-09 14:59:09 -080064 sysdeps_test.cpp \
Josh Gao29e7e3e2016-07-28 18:09:48 -070065 sysdeps/stat_test.cpp \
Elliott Hughes53daee62015-04-19 13:17:01 -070066 transport_test.cpp \
67
Dan Albertbf106472015-02-20 17:20:09 -080068LIBADB_CFLAGS := \
Dan Albert1ba1d7c2015-05-05 17:46:50 -070069 $(ADB_COMMON_CFLAGS) \
Dan Albertba3a2512015-02-18 17:47:33 -080070 -fvisibility=hidden \
Elliott Hughes4f1d7b52015-07-24 14:32:46 -070071
72LIBADB_linux_CFLAGS := \
Josh Gaob7b1edf2015-11-11 17:56:12 -080073 $(ADB_COMMON_linux_CFLAGS) \
74
75LIBADB_darwin_CFLAGS := \
76 $(ADB_COMMON_darwin_CFLAGS) \
Dan Albert630b9af2014-11-24 23:34:35 -080077
Dan Willemsen87a419c2015-08-13 14:43:34 -070078LIBADB_windows_CFLAGS := \
79 $(ADB_COMMON_windows_CFLAGS) \
Elliott Hughes4f1d7b52015-07-24 14:32:46 -070080
Dan Albertbac34742015-02-25 17:51:28 -080081LIBADB_darwin_SRC_FILES := \
Elliott Hughes1a4d85a2015-04-16 13:24:58 -070082 get_my_path_darwin.cpp \
David Pursella76e5f02016-02-22 14:27:23 -080083 sysdeps_unix.cpp \
Dan Albert7447dd02015-04-16 19:20:40 -070084 usb_osx.cpp \
Dan Albertbac34742015-02-25 17:51:28 -080085
86LIBADB_linux_SRC_FILES := \
Dan Albertbac34742015-02-25 17:51:28 -080087 get_my_path_linux.cpp \
David Pursella76e5f02016-02-22 14:27:23 -080088 sysdeps_unix.cpp \
Dan Albertbac34742015-02-25 17:51:28 -080089 usb_linux.cpp \
90
91LIBADB_windows_SRC_FILES := \
Elliott Hughesa2f2e562015-04-16 16:47:02 -070092 sysdeps_win32.cpp \
Josh Gao29e7e3e2016-07-28 18:09:48 -070093 sysdeps/win32/stat.cpp \
Dan Albertbac34742015-02-25 17:51:28 -080094 usb_windows.cpp \
Dan Albert94493762014-11-25 11:00:56 -080095
Spencer Lowe6ae5732015-09-08 17:13:04 -070096LIBADB_TEST_windows_SRCS := \
97 sysdeps_win32_test.cpp \
98
Dan Albert94493762014-11-25 11:00:56 -080099include $(CLEAR_VARS)
Elliott Hughes2acec912015-04-16 14:12:50 -0700100LOCAL_CLANG := true
Dan Albert94493762014-11-25 11:00:56 -0800101LOCAL_MODULE := libadbd
102LOCAL_CFLAGS := $(LIBADB_CFLAGS) -DADB_HOST=0
Dan Albert21c3eaf2015-02-18 17:20:44 -0800103LOCAL_SRC_FILES := \
104 $(LIBADB_SRC_FILES) \
Dan Albertbac34742015-02-25 17:51:28 -0800105 adb_auth_client.cpp \
Dan Albertbac34742015-02-25 17:51:28 -0800106 jdwp_service.cpp \
Elliott Hughes2acec912015-04-16 14:12:50 -0700107 usb_linux_client.cpp \
Dan Albert21c3eaf2015-02-18 17:20:44 -0800108
Dan Albert9113b472015-07-30 10:25:32 -0700109LOCAL_SANITIZE := $(adb_target_sanitize)
Elliott Hughes7b506092015-04-20 08:09:20 -0700110
Dan Alberte2462192015-03-19 13:25:27 -0700111# Even though we're building a static library (and thus there's no link step for
112# this to take effect), this adds the includes to our path.
113LOCAL_STATIC_LIBRARIES := libbase
114
Dan Albert94493762014-11-25 11:00:56 -0800115include $(BUILD_STATIC_LIBRARY)
116
Dan Albert630b9af2014-11-24 23:34:35 -0800117include $(CLEAR_VARS)
118LOCAL_MODULE := libadb
Dan Willemsen87a419c2015-08-13 14:43:34 -0700119LOCAL_MODULE_HOST_OS := darwin linux windows
Dan Albert94493762014-11-25 11:00:56 -0800120LOCAL_CFLAGS := $(LIBADB_CFLAGS) -DADB_HOST=1
Dan Willemsen87a419c2015-08-13 14:43:34 -0700121LOCAL_CFLAGS_windows := $(LIBADB_windows_CFLAGS)
122LOCAL_CFLAGS_linux := $(LIBADB_linux_CFLAGS)
Josh Gaob7b1edf2015-11-11 17:56:12 -0800123LOCAL_CFLAGS_darwin := $(LIBADB_darwin_CFLAGS)
Dan Alberte1ca6232015-02-19 13:19:42 -0800124LOCAL_SRC_FILES := \
125 $(LIBADB_SRC_FILES) \
Dan Albertbac34742015-02-25 17:51:28 -0800126 adb_auth_host.cpp \
Dan Albert630b9af2014-11-24 23:34:35 -0800127
Dan Willemsen87a419c2015-08-13 14:43:34 -0700128LOCAL_SRC_FILES_darwin := $(LIBADB_darwin_SRC_FILES)
129LOCAL_SRC_FILES_linux := $(LIBADB_linux_SRC_FILES)
130LOCAL_SRC_FILES_windows := $(LIBADB_windows_SRC_FILES)
131
Dan Albert9113b472015-07-30 10:25:32 -0700132LOCAL_SANITIZE := $(adb_host_sanitize)
Elliott Hughes7b506092015-04-20 08:09:20 -0700133
Dan Alberte1ca6232015-02-19 13:19:42 -0800134# Even though we're building a static library (and thus there's no link step for
Dan Alberte2462192015-03-19 13:25:27 -0700135# this to take effect), this adds the includes to our path.
136LOCAL_STATIC_LIBRARIES := libcrypto_static libbase
Dan Alberte1ca6232015-02-19 13:19:42 -0800137
Dan Willemsen87a419c2015-08-13 14:43:34 -0700138LOCAL_C_INCLUDES_windows := development/host/windows/usb/api/
Dan Willemsen66680c52015-09-03 20:29:56 -0700139LOCAL_MULTILIB := first
Dan Albert88cf1c82015-02-24 14:08:03 -0800140
Dan Albert630b9af2014-11-24 23:34:35 -0800141include $(BUILD_HOST_STATIC_LIBRARY)
142
Dan Albert055f1aa2015-02-20 17:24:58 -0800143include $(CLEAR_VARS)
Elliott Hughes53daee62015-04-19 13:17:01 -0700144LOCAL_CLANG := true
Dan Albert055f1aa2015-02-20 17:24:58 -0800145LOCAL_MODULE := adbd_test
146LOCAL_CFLAGS := -DADB_HOST=0 $(LIBADB_CFLAGS)
Yabin Cuibec02fc2015-08-28 15:44:27 -0700147LOCAL_SRC_FILES := \
148 $(LIBADB_TEST_SRCS) \
149 $(LIBADB_TEST_linux_SRCS) \
David Pursell0955c662015-08-31 10:42:13 -0700150 shell_service.cpp \
David Pursellb9e2e842015-08-31 15:36:18 -0700151 shell_service_protocol.cpp \
152 shell_service_protocol_test.cpp \
David Pursell0955c662015-08-31 10:42:13 -0700153 shell_service_test.cpp \
Yabin Cuibec02fc2015-08-28 15:44:27 -0700154
Dan Albert9113b472015-07-30 10:25:32 -0700155LOCAL_SANITIZE := $(adb_target_sanitize)
Dan Albert055f1aa2015-02-20 17:24:58 -0800156LOCAL_STATIC_LIBRARIES := libadbd
Dimitry Ivanov8b642e42016-02-12 18:40:29 -0800157LOCAL_SHARED_LIBRARIES := liblog libbase libcutils
Dan Albert055f1aa2015-02-20 17:24:58 -0800158include $(BUILD_NATIVE_TEST)
159
Elliott Hughes1b708d32015-12-11 19:07:01 -0800160# libdiagnose_usb
161# =========================================================
162
163include $(CLEAR_VARS)
164LOCAL_MODULE := libdiagnose_usb
165LOCAL_MODULE_HOST_OS := darwin linux windows
166LOCAL_CFLAGS := $(LIBADB_CFLAGS)
167LOCAL_SRC_FILES := diagnose_usb.cpp
168# Even though we're building a static library (and thus there's no link step for
169# this to take effect), this adds the includes to our path.
170LOCAL_STATIC_LIBRARIES := libbase
171include $(BUILD_HOST_STATIC_LIBRARY)
172
Spencer Lowcf168a82015-05-24 15:36:28 -0700173# adb_test
174# =========================================================
175
Dan Albert055f1aa2015-02-20 17:24:58 -0800176include $(CLEAR_VARS)
Dan Albert055f1aa2015-02-20 17:24:58 -0800177LOCAL_MODULE := adb_test
Spencer Lowebf770f2015-09-07 23:39:02 -0700178LOCAL_MODULE_HOST_OS := darwin linux windows
Dan Albert055f1aa2015-02-20 17:24:58 -0800179LOCAL_CFLAGS := -DADB_HOST=1 $(LIBADB_CFLAGS)
Dan Willemsen87a419c2015-08-13 14:43:34 -0700180LOCAL_CFLAGS_windows := $(LIBADB_windows_CFLAGS)
181LOCAL_CFLAGS_linux := $(LIBADB_linux_CFLAGS)
Josh Gaob7b1edf2015-11-11 17:56:12 -0800182LOCAL_CFLAGS_darwin := $(LIBADB_darwin_CFLAGS)
David Pursellb9e2e842015-08-31 15:36:18 -0700183LOCAL_SRC_FILES := \
184 $(LIBADB_TEST_SRCS) \
Felipe Leme78e09632016-07-19 17:07:22 -0700185 adb_client.cpp \
186 bugreport.cpp \
187 bugreport_test.cpp \
Felipe Lemecd42d652016-07-26 12:23:40 -0700188 line_printer.cpp \
David Pursellb9e2e842015-08-31 15:36:18 -0700189 services.cpp \
190 shell_service_protocol.cpp \
191 shell_service_protocol_test.cpp \
192
David Pursellb404dec2015-09-11 16:06:59 -0700193LOCAL_SRC_FILES_linux := $(LIBADB_TEST_linux_SRCS)
Dan Willemsen87a419c2015-08-13 14:43:34 -0700194LOCAL_SRC_FILES_darwin := $(LIBADB_TEST_darwin_SRCS)
Spencer Lowe6ae5732015-09-08 17:13:04 -0700195LOCAL_SRC_FILES_windows := $(LIBADB_TEST_windows_SRCS)
Dan Albert9113b472015-07-30 10:25:32 -0700196LOCAL_SANITIZE := $(adb_host_sanitize)
Yabin Cuicb992d92015-09-08 18:27:10 -0700197LOCAL_SHARED_LIBRARIES := libbase
Dan Albert055f1aa2015-02-20 17:24:58 -0800198LOCAL_STATIC_LIBRARIES := \
199 libadb \
200 libcrypto_static \
201 libcutils \
Elliott Hughes1b708d32015-12-11 19:07:01 -0800202 libdiagnose_usb \
Felipe Leme78e09632016-07-19 17:07:22 -0700203 libgmock_host \
Dan Albert055f1aa2015-02-20 17:24:58 -0800204
Spencer Lowe6ae5732015-09-08 17:13:04 -0700205# Set entrypoint to wmain from sysdeps_win32.cpp instead of main
206LOCAL_LDFLAGS_windows := -municode
Dan Willemsen87a419c2015-08-13 14:43:34 -0700207LOCAL_LDLIBS_linux := -lrt -ldl -lpthread
208LOCAL_LDLIBS_darwin := -framework CoreFoundation -framework IOKit
209LOCAL_LDLIBS_windows := -lws2_32 -luserenv
210LOCAL_STATIC_LIBRARIES_windows := AdbWinApi
Dan Albert055f1aa2015-02-20 17:24:58 -0800211
Dan Willemsen1e20e0a2015-12-21 16:14:31 -0800212LOCAL_MULTILIB := first
213
Spencer Lowcf168a82015-05-24 15:36:28 -0700214include $(BUILD_HOST_NATIVE_TEST)
215
Elliott Hughese67f1f82015-04-30 17:32:03 -0700216# adb device tracker (used by ddms) test tool
217# =========================================================
218
219ifeq ($(HOST_OS),linux)
220include $(CLEAR_VARS)
Elliott Hughese67f1f82015-04-30 17:32:03 -0700221LOCAL_MODULE := adb_device_tracker_test
222LOCAL_CFLAGS := -DADB_HOST=1 $(LIBADB_CFLAGS)
Dan Willemsen87a419c2015-08-13 14:43:34 -0700223LOCAL_CFLAGS_windows := $(LIBADB_windows_CFLAGS)
224LOCAL_CFLAGS_linux := $(LIBADB_linux_CFLAGS)
Josh Gaob7b1edf2015-11-11 17:56:12 -0800225LOCAL_CFLAGS_darwin := $(LIBADB_darwin_CFLAGS)
Elliott Hughese67f1f82015-04-30 17:32:03 -0700226LOCAL_SRC_FILES := test_track_devices.cpp
Dan Albert9113b472015-07-30 10:25:32 -0700227LOCAL_SANITIZE := $(adb_host_sanitize)
Yabin Cuicb992d92015-09-08 18:27:10 -0700228LOCAL_SHARED_LIBRARIES := libbase
Elliott Hughese67f1f82015-04-30 17:32:03 -0700229LOCAL_STATIC_LIBRARIES := libadb libcrypto_static libcutils
230LOCAL_LDLIBS += -lrt -ldl -lpthread
231include $(BUILD_HOST_EXECUTABLE)
232endif
233
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800234# adb host tool
235# =========================================================
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800236include $(CLEAR_VARS)
237
Dan Willemsen87a419c2015-08-13 14:43:34 -0700238LOCAL_LDLIBS_linux := -lrt -ldl -lpthread
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800239
Dan Willemsen87a419c2015-08-13 14:43:34 -0700240LOCAL_LDLIBS_darwin := -lpthread -framework CoreFoundation -framework IOKit -framework Carbon
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800241
Dan Willemsen87a419c2015-08-13 14:43:34 -0700242# Use wmain instead of main
243LOCAL_LDFLAGS_windows := -municode
244LOCAL_LDLIBS_windows := -lws2_32 -lgdi32
245LOCAL_STATIC_LIBRARIES_windows := AdbWinApi
246LOCAL_REQUIRED_MODULES_windows := AdbWinApi AdbWinUsbApi
Dan Albert9697ce52015-02-20 17:28:44 -0800247
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800248LOCAL_SRC_FILES := \
Elliott Hughesb708d162015-10-27 16:03:15 -0700249 adb_client.cpp \
Felipe Leme78e09632016-07-19 17:07:22 -0700250 bugreport.cpp \
Dan Albertc89e0cc2015-05-08 16:13:53 -0700251 client/main.cpp \
Dan Albertbac34742015-02-25 17:51:28 -0800252 console.cpp \
253 commandline.cpp \
Dan Albertbac34742015-02-25 17:51:28 -0800254 file_sync_client.cpp \
Elliott Hughesb708d162015-10-27 16:03:15 -0700255 line_printer.cpp \
256 services.cpp \
David Pursellb9e2e842015-08-31 15:36:18 -0700257 shell_service_protocol.cpp \
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800258
Dan Albert7fd821e2015-02-24 22:38:21 -0800259LOCAL_CFLAGS += \
Dan Albert1ba1d7c2015-05-05 17:46:50 -0700260 $(ADB_COMMON_CFLAGS) \
Dan Albert7fd821e2015-02-24 22:38:21 -0800261 -D_GNU_SOURCE \
262 -DADB_HOST=1 \
263
Dan Willemsen87a419c2015-08-13 14:43:34 -0700264LOCAL_CFLAGS_windows := \
265 $(ADB_COMMON_windows_CFLAGS)
266
Josh Gaob7b1edf2015-11-11 17:56:12 -0800267LOCAL_CFLAGS_linux := \
268 $(ADB_COMMON_linux_CFLAGS) \
269
270LOCAL_CFLAGS_darwin := \
271 $(ADB_COMMON_darwin_CFLAGS) \
272 -Wno-sizeof-pointer-memaccess -Wno-unused-parameter \
273
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800274LOCAL_MODULE := adb
Kenny Rootd5d6d972012-09-26 09:58:07 -0700275LOCAL_MODULE_TAGS := debug
Dan Willemsen87a419c2015-08-13 14:43:34 -0700276LOCAL_MODULE_HOST_OS := darwin linux windows
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800277
Dan Albert9113b472015-07-30 10:25:32 -0700278LOCAL_SANITIZE := $(adb_host_sanitize)
Dan Albert630b9af2014-11-24 23:34:35 -0800279LOCAL_STATIC_LIBRARIES := \
280 libadb \
Elliott Hughes2baae3a2015-04-17 10:59:34 -0700281 libbase \
Dan Albert630b9af2014-11-24 23:34:35 -0800282 libcrypto_static \
Elliott Hughes1b708d32015-12-11 19:07:01 -0800283 libdiagnose_usb \
Elliott Hughes9309ecb2015-04-27 14:20:17 -0700284 liblog \
Dan Albert630b9af2014-11-24 23:34:35 -0800285
Josh Gaoa629e2e2015-11-13 17:55:45 -0800286# Don't use libcutils on Windows.
287LOCAL_STATIC_LIBRARIES_darwin := libcutils
288LOCAL_STATIC_LIBRARIES_linux := libcutils
289
Dan Willemsen87a419c2015-08-13 14:43:34 -0700290LOCAL_CXX_STL := libc++_static
Colin Cross55bf5f02015-04-16 16:21:44 -0700291
292# Don't add anything here, we don't want additional shared dependencies
293# on the host adb tool, and shared libraries that link against libc++
294# will violate ODR
295LOCAL_SHARED_LIBRARIES :=
296
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800297include $(BUILD_HOST_EXECUTABLE)
298
Ying Wangf48503b2016-02-29 19:27:06 -0800299$(call dist-for-goals,dist_files sdk win_sdk,$(LOCAL_BUILT_MODULE))
300ifdef HOST_CROSS_OS
301# Archive adb.exe for win_sdk build.
302$(call dist-for-goals,win_sdk,$(ALL_MODULES.host_cross_adb.BUILT))
303endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800304
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800305
306# adbd device daemon
307# =========================================================
308
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800309include $(CLEAR_VARS)
310
Elliott Hughes53daee62015-04-19 13:17:01 -0700311LOCAL_CLANG := true
Dan Albert9697ce52015-02-20 17:28:44 -0800312
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800313LOCAL_SRC_FILES := \
Dan Albertc89e0cc2015-05-08 16:13:53 -0700314 daemon/main.cpp \
Dan Albertbac34742015-02-25 17:51:28 -0800315 services.cpp \
316 file_sync_service.cpp \
317 framebuffer_service.cpp \
318 remount_service.cpp \
319 set_verity_enable_state_service.cpp \
David Pursell80f67022015-08-28 15:08:49 -0700320 shell_service.cpp \
David Pursellb9e2e842015-08-31 15:36:18 -0700321 shell_service_protocol.cpp \
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800322
Christopher Ferris51448eb2014-09-03 19:48:48 -0700323LOCAL_CFLAGS := \
Dan Albert1ba1d7c2015-05-05 17:46:50 -0700324 $(ADB_COMMON_CFLAGS) \
Josh Gaob7b1edf2015-11-11 17:56:12 -0800325 $(ADB_COMMON_linux_CFLAGS) \
Dan Albertbac34742015-02-25 17:51:28 -0800326 -DADB_HOST=0 \
327 -D_GNU_SOURCE \
Dan Albertbac34742015-02-25 17:51:28 -0800328 -Wno-deprecated-declarations \
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800329
Elliott Hughes5cba5042015-06-17 15:23:42 -0700330LOCAL_CFLAGS += -DALLOW_ADBD_NO_AUTH=$(if $(filter userdebug eng,$(TARGET_BUILD_VARIANT)),1,0)
Nick Kralevich5890fe32012-01-19 13:11:35 -0800331
Elliott Hughesec7a6672015-03-16 21:58:32 +0000332ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000333LOCAL_CFLAGS += -DALLOW_ADBD_DISABLE_VERITY=1
Elliott Hughes5cba5042015-06-17 15:23:42 -0700334LOCAL_CFLAGS += -DALLOW_ADBD_ROOT=1
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000335endif
336
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800337LOCAL_MODULE := adbd
338
339LOCAL_FORCE_STATIC_EXECUTABLE := true
340LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN)
341LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_SBIN_UNSTRIPPED)
Tao Bao175b7bb2015-03-29 11:22:34 -0700342LOCAL_C_INCLUDES += system/extras/ext4_utils
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800343
Dan Albert9113b472015-07-30 10:25:32 -0700344LOCAL_SANITIZE := $(adb_target_sanitize)
Dan Albert630b9af2014-11-24 23:34:35 -0800345LOCAL_STATIC_LIBRARIES := \
Dan Albert94493762014-11-25 11:00:56 -0800346 libadbd \
Tao Bao175b7bb2015-03-29 11:22:34 -0700347 libbase \
Dan Albert030b76f2015-01-26 17:13:54 -0800348 libfs_mgr \
Sami Tolvanen8ad80762015-10-20 13:24:24 +0100349 libfec \
350 libfec_rs \
William Robertsbd2d9612015-08-04 14:23:04 -0700351 libselinux \
Dan Albert630b9af2014-11-24 23:34:35 -0800352 liblog \
Dan Albert630b9af2014-11-24 23:34:35 -0800353 libmincrypt \
Dan Albert030b76f2015-01-26 17:13:54 -0800354 libext4_utils_static \
Sami Tolvanen8ad80762015-10-20 13:24:24 +0100355 libsquashfs_utils \
Dan Alberte2462192015-03-19 13:25:27 -0700356 libcutils \
357 libbase \
Jorge Lucangeli Obes683dc482015-12-14 13:18:57 -0800358 libcrypto_static \
Jorge Lucangeli Obes218eb7c2016-01-08 13:24:13 -0800359 libminijail
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000360
Jeff Brown29e1e732011-07-11 22:12:32 -0700361include $(BUILD_EXECUTABLE)