blob: 2a88de5e12855d139d6c711bb7969c701a542483 [file] [log] [blame]
GuangHui Liu41bda342017-05-10 14:37:17 -07001// Copyright (C) 2017 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Josh Gao27768452018-01-02 12:01:43 -080015cc_defaults {
16 name: "adb_defaults",
17
18 cflags: [
19 "-Wall",
20 "-Wextra",
21 "-Werror",
Pirama Arumuga Nainar79821782018-06-01 11:31:38 -070022 "-Wexit-time-destructors",
Josh Gao27768452018-01-02 12:01:43 -080023 "-Wno-unused-parameter",
24 "-Wno-missing-field-initializers",
25 "-Wvla",
26 ],
27 rtti: true,
28
Josh Gaoc7567fa2018-02-27 15:49:23 -080029 use_version_lib: true,
30
Josh Gao27768452018-01-02 12:01:43 -080031 compile_multilib: "first",
32 product_variables: {
33 debuggable: {
34 cflags: [
35 "-DALLOW_ADBD_ROOT",
36 "-DALLOW_ADBD_DISABLE_VERITY",
37 "-DALLOW_ADBD_NO_AUTH",
38 ],
39 },
40 },
41
42 target: {
43 android: {
44 cflags: ["-DADB_HOST=0"],
45 },
46
47 host: {
48 cflags: ["-DADB_HOST=1"],
49 },
50
51 darwin: {
52 host_ldlibs: [
53 "-lpthread",
54 "-framework CoreFoundation",
55 "-framework IOKit",
56 "-lobjc",
57 ],
58 },
59
60 windows: {
61 cflags: [
62 // Define windows.h and tchar.h Unicode preprocessor symbols so that
63 // CreateFile(), _tfopen(), etc. map to versions that take wchar_t*, breaking the
64 // build if you accidentally pass char*. Fix by calling like:
65 // std::wstring path_wide;
66 // if (!android::base::UTF8ToWide(path_utf8, &path_wide)) { /* error handling */ }
67 // CreateFileW(path_wide.c_str());
68 "-DUNICODE=1",
69 "-D_UNICODE=1",
70
Josh Gao2e1e7892018-03-23 13:03:28 -070071 // -std=gnu++11 doesn't set _GNU_SOURCE on Windows.
Josh Gao27768452018-01-02 12:01:43 -080072 "-D_GNU_SOURCE",
Josh Gao2e1e7892018-03-23 13:03:28 -070073
74 // MinGW hides some things behind _POSIX_SOURCE.
75 "-D_POSIX_SOURCE",
Josh Gao27768452018-01-02 12:01:43 -080076 ],
Josh Gaof8a97c12018-03-23 15:37:20 -070077
78 host_ldlibs: [
79 "-lws2_32",
80 "-lgdi32",
81 "-luserenv",
82 ],
Josh Gao27768452018-01-02 12:01:43 -080083 },
Pirama Arumuga Nainar79821782018-06-01 11:31:38 -070084
85 not_windows: {
86 cflags: [
87 "-Wthread-safety",
88 ],
89 },
Josh Gao27768452018-01-02 12:01:43 -080090 },
91}
92
93// libadb
94// =========================================================
95// These files are compiled for both the host and the device.
96libadb_srcs = [
97 "adb.cpp",
98 "adb_io.cpp",
99 "adb_listeners.cpp",
100 "adb_trace.cpp",
Josh Gao6e1246c2018-05-24 22:54:50 -0700101 "adb_unique_fd.cpp",
Josh Gao27768452018-01-02 12:01:43 -0800102 "adb_utils.cpp",
103 "fdevent.cpp",
104 "services.cpp",
105 "sockets.cpp",
106 "socket_spec.cpp",
107 "sysdeps/errno.cpp",
108 "transport.cpp",
Josh Gao6082e7d2018-04-05 16:16:04 -0700109 "transport_fd.cpp",
Josh Gao27768452018-01-02 12:01:43 -0800110 "transport_local.cpp",
111 "transport_usb.cpp",
112]
113
114libadb_posix_srcs = [
115 "sysdeps_unix.cpp",
116 "sysdeps/posix/network.cpp",
117]
118
119libadb_test_srcs = [
120 "adb_io_test.cpp",
121 "adb_listeners_test.cpp",
122 "adb_utils_test.cpp",
123 "fdevent_test.cpp",
124 "socket_spec_test.cpp",
125 "socket_test.cpp",
126 "sysdeps_test.cpp",
127 "sysdeps/stat_test.cpp",
128 "transport_test.cpp",
Josh Gao7c738cd2018-04-03 14:37:11 -0700129 "types_test.cpp",
Josh Gao27768452018-01-02 12:01:43 -0800130]
131
132cc_library_host_static {
133 name: "libadb_host",
134 defaults: ["adb_defaults"],
135
136 srcs: libadb_srcs + [
137 "client/auth.cpp",
138 "client/usb_libusb.cpp",
139 "client/usb_dispatch.cpp",
140 "client/transport_mdns.cpp",
Idries Hamadied409ea2018-01-29 16:30:36 +0000141 "client/fastdeploy.cpp",
142 "client/fastdeploycallbacks.cpp",
Josh Gao27768452018-01-02 12:01:43 -0800143 ],
144
Dan Willemsenab971b52018-08-29 14:58:02 -0700145 generated_headers: ["platform_tools_version"],
146
Josh Gao27768452018-01-02 12:01:43 -0800147 target: {
148 linux: {
149 srcs: ["client/usb_linux.cpp"],
150 },
151 darwin: {
152 srcs: ["client/usb_osx.cpp"],
153 },
154
155 not_windows: {
156 srcs: libadb_posix_srcs,
157 },
158 windows: {
159 enabled: true,
160 srcs: [
161 "client/usb_windows.cpp",
162 "sysdeps_win32.cpp",
163 "sysdeps/win32/errno.cpp",
164 "sysdeps/win32/stat.cpp",
165 ],
166 shared_libs: ["AdbWinApi"],
167 },
168 },
169
170 static_libs: [
171 "libbase",
172 "libcrypto_utils",
173 "libcrypto",
174 "libdiagnose_usb",
175 "libmdnssd",
176 "libusb",
Idries Hamadi269a4b42018-09-13 18:00:25 +0100177 "libandroidfw",
178 "libziparchive",
179 "libz",
180 "libutils",
181 "liblog",
182 "libcutils",
Josh Gao27768452018-01-02 12:01:43 -0800183 ],
184}
185
186cc_test_host {
187 name: "adb_test",
188 defaults: ["adb_defaults"],
189 srcs: libadb_test_srcs,
190 static_libs: [
191 "libadb_host",
192 "libbase",
193 "libcutils",
194 "libcrypto_utils",
195 "libcrypto",
196 "libmdnssd",
197 "libdiagnose_usb",
198 "libusb",
199 ],
Josh Gaof8a97c12018-03-23 15:37:20 -0700200
201 target: {
202 windows: {
203 enabled: true,
204 shared_libs: ["AdbWinApi"],
205 },
206 },
Josh Gao27768452018-01-02 12:01:43 -0800207}
208
Josh Gao9c596492018-04-04 11:27:24 -0700209cc_benchmark {
210 name: "adb_benchmark",
211 defaults: ["adb_defaults"],
212
213 srcs: ["transport_benchmark.cpp"],
214 target: {
215 android: {
216 static_libs: [
217 "libadbd",
218 ],
219 },
220 host: {
221 static_libs: [
222 "libadb_host",
223 ],
224 },
225 },
226
227 static_libs: [
228 "libbase",
229 "libcutils",
230 "libcrypto_utils",
231 "libcrypto",
232 "libdiagnose_usb",
233 "liblog",
234 "libusb",
235 ],
236}
237
Josh Gao27768452018-01-02 12:01:43 -0800238cc_binary_host {
239 name: "adb",
Josh Gao27768452018-01-02 12:01:43 -0800240
241 defaults: ["adb_defaults"],
242
243 srcs: [
244 "client/adb_client.cpp",
245 "client/bugreport.cpp",
246 "client/commandline.cpp",
247 "client/file_sync_client.cpp",
248 "client/main.cpp",
249 "client/console.cpp",
Idries Hamadied409ea2018-01-29 16:30:36 +0000250 "client/adb_install.cpp",
Josh Gao27768452018-01-02 12:01:43 -0800251 "client/line_printer.cpp",
252 "shell_service_protocol.cpp",
253 ],
254
255 static_libs: [
256 "libadb_host",
257 "libbase",
258 "libcutils",
259 "libcrypto_utils",
260 "libcrypto",
261 "libdiagnose_usb",
262 "liblog",
263 "libmdnssd",
264 "libusb",
Idries Hamadi269a4b42018-09-13 18:00:25 +0100265 "libandroidfw",
266 "libziparchive",
267 "libz",
268 "libutils",
269 "liblog",
270 "libcutils",
Josh Gao27768452018-01-02 12:01:43 -0800271 ],
272
273 stl: "libc++_static",
274
275 // Don't add anything here, we don't want additional shared dependencies
276 // on the host adb tool, and shared libraries that link against libc++
277 // will violate ODR
278 shared_libs: [],
279
Idries Hamadi7575cd92018-08-24 11:46:45 +0100280 required: [
281 "deploypatchgenerator",
282 ],
283
Josh Gao27768452018-01-02 12:01:43 -0800284 target: {
285 darwin: {
286 cflags: [
287 "-Wno-sizeof-pointer-memaccess",
288 ],
289 },
290 windows: {
291 enabled: true,
292 ldflags: ["-municode"],
Josh Gao27768452018-01-02 12:01:43 -0800293 shared_libs: ["AdbWinApi"],
294 required: [
295 "AdbWinUsbApi",
296 ],
297 },
298 },
299}
300
Tao Baoeca59ae2018-07-30 20:45:27 -0700301// libadbd_core contains the common sources to build libadbd and libadbd_services.
Josh Gao27768452018-01-02 12:01:43 -0800302cc_library_static {
Tao Baoeca59ae2018-07-30 20:45:27 -0700303 name: "libadbd_core",
304 defaults: ["adb_defaults"],
305 recovery_available: true,
306
307 // libminadbd wants both, as it's used to build native tests.
308 compile_multilib: "both",
309
310 srcs: libadb_srcs + libadb_posix_srcs + [
311 "daemon/auth.cpp",
312 "daemon/jdwp_service.cpp",
313 "daemon/usb.cpp",
314 ],
315
316 local_include_dirs: [
317 "daemon/include",
318 ],
319
Dan Willemsenab971b52018-08-29 14:58:02 -0700320 generated_headers: ["platform_tools_version"],
321
Tao Baoeca59ae2018-07-30 20:45:27 -0700322 static_libs: [
323 "libdiagnose_usb",
324 "libqemu_pipe",
325 ],
326
327 shared_libs: [
328 "libasyncio",
329 "libbase",
330 "libcrypto",
331 "libcrypto_utils",
332 "libcutils",
333 "liblog",
334 ],
335}
336
337cc_library {
338 name: "libadbd_services",
339 defaults: ["adb_defaults"],
340 recovery_available: true,
341 compile_multilib: "both",
342
343 srcs: [
344 "daemon/file_sync_service.cpp",
345 "daemon/framebuffer_service.cpp",
346 "daemon/mdns.cpp",
347 "daemon/remount_service.cpp",
348 "daemon/services.cpp",
349 "daemon/set_verity_enable_state_service.cpp",
350 "daemon/shell_service.cpp",
351 "shell_service_protocol.cpp",
352 ],
353
354 cflags: [
355 "-D_GNU_SOURCE",
356 "-Wno-deprecated-declarations",
357 ],
358
359 static_libs: [
360 "libadbd_core",
361 "libavb_user",
362 "libdiagnose_usb",
363 "libqemu_pipe",
Tao Baoeca59ae2018-07-30 20:45:27 -0700364 ],
365
366 shared_libs: [
367 "libasyncio",
368 "libbase",
369 "libbootloader_message",
370 "libcrypto",
371 "libcrypto_utils",
372 "libcutils",
373 "libext4_utils",
374 "libfec",
Tao Baoeca59ae2018-07-30 20:45:27 -0700375 "libfs_mgr",
376 "liblog",
377 "libmdnssd",
Peter Collingbournefc037372018-09-13 14:20:28 -0700378 "libselinux",
Tao Baoeca59ae2018-07-30 20:45:27 -0700379 ],
380}
381
382cc_library {
Josh Gao27768452018-01-02 12:01:43 -0800383 name: "libadbd",
384 defaults: ["adb_defaults"],
Jiyong Parka0e75042018-05-24 14:11:00 +0900385 recovery_available: true,
Josh Gao27768452018-01-02 12:01:43 -0800386
Tao Baoeca59ae2018-07-30 20:45:27 -0700387 // Avoid getting duplicate symbol of android::build::GetBuildNumber().
388 use_version_lib: false,
389
390 // libminadbd wants both, as it's used to build native tests.
Josh Gao27768452018-01-02 12:01:43 -0800391 compile_multilib: "both",
Tao Baoeca59ae2018-07-30 20:45:27 -0700392
393 // libadbd doesn't build any additional source, but to expose libadbd_core as a shared library.
394 whole_static_libs: [
395 "libadbd_core",
Josh Gao27768452018-01-02 12:01:43 -0800396 ],
397
Tao Baoeca59ae2018-07-30 20:45:27 -0700398 shared_libs: [
399 "libadbd_services",
Josh Gao27768452018-01-02 12:01:43 -0800400 "libasyncio",
Josh Gao27768452018-01-02 12:01:43 -0800401 "libbase",
Tao Baoeca59ae2018-07-30 20:45:27 -0700402 "libcrypto",
403 "libcrypto_utils",
404 "libcutils",
405 "liblog",
Josh Gao27768452018-01-02 12:01:43 -0800406 ],
Jerry Zhangb156c602018-05-07 15:14:47 -0700407
408 export_include_dirs: [
409 "daemon/include",
410 ],
Josh Gao27768452018-01-02 12:01:43 -0800411}
412
413cc_binary {
414 name: "adbd",
415 defaults: ["adb_defaults"],
Jiyong Parka0e75042018-05-24 14:11:00 +0900416 recovery_available: true,
Josh Gao8db99f82018-03-06 12:57:27 -0800417
Josh Gao27768452018-01-02 12:01:43 -0800418 srcs: [
419 "daemon/main.cpp",
Josh Gao27768452018-01-02 12:01:43 -0800420 ],
421
422 cflags: [
423 "-D_GNU_SOURCE",
424 "-Wno-deprecated-declarations",
425 ],
426
427 strip: {
428 keep_symbols: true,
429 },
430
Tao Baoeca59ae2018-07-30 20:45:27 -0700431 shared_libs: [
Josh Gao27768452018-01-02 12:01:43 -0800432 "libadbd",
Tao Baoeca59ae2018-07-30 20:45:27 -0700433 "libadbd_services",
434 "libbase",
435 "libcap",
Josh Gao27768452018-01-02 12:01:43 -0800436 "libcrypto",
Tao Baoeca59ae2018-07-30 20:45:27 -0700437 "libcutils",
Josh Gao27768452018-01-02 12:01:43 -0800438 "liblog",
Josh Gao27768452018-01-02 12:01:43 -0800439 "libminijail",
440 "libselinux",
Josh Gao27768452018-01-02 12:01:43 -0800441 ],
442}
443
444cc_test {
445 name: "adbd_test",
446 defaults: ["adb_defaults"],
447 srcs: libadb_test_srcs + [
Josh Gao997cfac2018-07-25 18:15:52 -0700448 "daemon/services.cpp",
Josh Gao27768452018-01-02 12:01:43 -0800449 "daemon/shell_service.cpp",
450 "daemon/shell_service_test.cpp",
451 "shell_service_protocol.cpp",
452 "shell_service_protocol_test.cpp",
453 ],
454
455 static_libs: [
456 "libadbd",
457 "libbase",
Josh Gao997cfac2018-07-25 18:15:52 -0700458 "libbootloader_message",
Josh Gao27768452018-01-02 12:01:43 -0800459 "libcutils",
460 "libcrypto_utils",
461 "libcrypto",
462 "libdiagnose_usb",
463 "liblog",
464 "libusb",
465 "libmdnssd",
Jiyong Park011ee122018-05-29 16:41:30 +0900466 "libselinux",
Josh Gao27768452018-01-02 12:01:43 -0800467 ],
Elliott Hughes40fdf3f2018-04-27 16:12:06 -0700468 test_suites: ["device-tests"],
Josh Gao27768452018-01-02 12:01:43 -0800469}
470
Julien Desprez75fea7e2018-08-08 12:08:50 -0700471python_test_host {
Elliott Hughesdc699a22018-02-16 17:58:14 -0800472 name: "adb_integration_test_adb",
473 main: "test_adb.py",
474 srcs: [
475 "test_adb.py",
476 ],
Julien Desprez75fea7e2018-08-08 12:08:50 -0700477 test_config: "adb_integration_test_adb.xml",
478 test_suites: ["general-tests"],
Elliott Hughesdc699a22018-02-16 17:58:14 -0800479 version: {
480 py2: {
Josh Gao9b6522b2018-08-07 14:31:17 -0700481 enabled: false,
Elliott Hughesdc699a22018-02-16 17:58:14 -0800482 },
483 py3: {
Josh Gao9b6522b2018-08-07 14:31:17 -0700484 enabled: true,
Elliott Hughesdc699a22018-02-16 17:58:14 -0800485 },
GuangHui Liu41bda342017-05-10 14:37:17 -0700486 },
GuangHui Liu41bda342017-05-10 14:37:17 -0700487}
488
Julien Desprez618f0e12018-10-12 13:48:14 -0700489python_test_host {
Elliott Hughesdc699a22018-02-16 17:58:14 -0800490 name: "adb_integration_test_device",
491 main: "test_device.py",
492 srcs: [
493 "test_device.py",
494 ],
495 libs: [
496 "adb_py",
497 ],
Julien Desprez618f0e12018-10-12 13:48:14 -0700498 test_config: "adb_integration_test_device.xml",
499 test_suites: ["general-tests"],
Elliott Hughesdc699a22018-02-16 17:58:14 -0800500 version: {
501 py2: {
502 enabled: true,
503 },
504 py3: {
505 enabled: false,
506 },
GuangHui Liu41bda342017-05-10 14:37:17 -0700507 },
GuangHui Liu41bda342017-05-10 14:37:17 -0700508}