blob: 708a677b33124010867900ac10bbffe27f750672 [file] [log] [blame]
Hridya Valsarajudea91b42018-07-17 11:14:01 -07001// Copyright (C) 2018 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
Aaron Wisnera5ad20a2018-08-24 09:59:50 -050015// This is required because no Android.bp can include a library defined in an
16// Android.mk. Eventually should kill libfastboot (defined in Android.mk)
Bob Badourd69ad692021-02-16 19:02:14 -080017package {
18 default_applicable_licenses: ["system_core_fastboot_license"],
19}
20
21// Added automatically by a large-scale-change that took the approach of
22// 'apply every license found to every target'. While this makes sure we respect
23// every license restriction, it may not be entirely correct.
24//
25// e.g. GPL in an MIT project might only apply to the contrib/ directory.
26//
27// Please consider splitting the single license below into multiple licenses,
28// taking care not to lose any license_kind information, and overriding the
29// default license using the 'licenses: [...]' property on targets as needed.
30//
31// For unused files, consider creating a 'fileGroup' with "//visibility:private"
32// to attach the license to, and including a comment whether the files may be
33// used in the current project.
34// See: http://go/android-license-faq
35license {
36 name: "system_core_fastboot_license",
37 visibility: [":__subpackages__"],
38 license_kinds: [
39 "SPDX-license-identifier-Apache-2.0",
40 "SPDX-license-identifier-BSD",
41 ],
42 // large-scale-change unable to identify any license_text files
43}
44
Aaron Wisnerdb511202018-06-26 15:38:35 -050045cc_library_host_static {
46 name: "libfastboot2",
47
48 //host_supported: true,
49
50 compile_multilib: "first",
51 srcs: [
Dan Willemsenab971b52018-08-29 14:58:02 -070052 "bootimg_utils.cpp",
53 "fs.cpp",
54 "socket.cpp",
55 "tcp.cpp",
56 "udp.cpp",
57 "util.cpp",
Yifan Honge71fe242021-02-22 15:00:15 -080058 "vendor_boot_img_utils.cpp",
Dan Willemsenab971b52018-08-29 14:58:02 -070059 "fastboot_driver.cpp",
Aaron Wisnerdb511202018-06-26 15:38:35 -050060 ],
61
62 static_libs: [
Dan Willemsenab971b52018-08-29 14:58:02 -070063 "libziparchive",
64 "libsparse",
65 "libutils",
66 "liblog",
67 "libz",
68 "libdiagnose_usb",
69 "libbase",
70 "libcutils",
71 "libgtest",
72 "libgtest_main",
73 "libbase",
74 "libadb_host",
David Anderson89569642018-11-16 15:53:35 -080075 "liblp",
Aaron Wisnerdb511202018-06-26 15:38:35 -050076 ],
77
78 header_libs: [
Yifan Honge71fe242021-02-22 15:00:15 -080079 "avb_headers",
Dan Willemsenab971b52018-08-29 14:58:02 -070080 "bootimg_headers",
Yifan Hong17d469b2021-02-18 15:15:46 -080081 "libstorage_literals_headers",
Aaron Wisnerdb511202018-06-26 15:38:35 -050082 ],
83
84 export_header_lib_headers: [
Dan Willemsenab971b52018-08-29 14:58:02 -070085 "bootimg_headers",
Aaron Wisnerdb511202018-06-26 15:38:35 -050086 ],
87
Aaron Wisnerdb511202018-06-26 15:38:35 -050088 target: {
Dan Willemsenab971b52018-08-29 14:58:02 -070089 linux: {
90 srcs: ["usb_linux.cpp"],
91 },
Aaron Wisnera5ad20a2018-08-24 09:59:50 -050092
Dan Willemsenab971b52018-08-29 14:58:02 -070093 darwin: {
94 srcs: ["usb_osx.cpp"],
Aaron Wisnera5ad20a2018-08-24 09:59:50 -050095
Dan Willemsenab971b52018-08-29 14:58:02 -070096 host_ldlibs: [
97 "-framework CoreFoundation",
98 "-framework IOKit",
99 ],
100 },
Aaron Wisnera5ad20a2018-08-24 09:59:50 -0500101
Dan Willemsenab971b52018-08-29 14:58:02 -0700102 windows: {
103 srcs: ["usb_windows.cpp"],
Aaron Wisnera5ad20a2018-08-24 09:59:50 -0500104
Dan Willemsenab971b52018-08-29 14:58:02 -0700105 host_ldlibs: [
106 "-lws2_32",
107 ],
108 },
Aaron Wisnerdb511202018-06-26 15:38:35 -0500109 },
110
111 cflags: [
Dan Willemsenab971b52018-08-29 14:58:02 -0700112 "-Wall",
113 "-Wextra",
114 "-Werror",
115 "-Wunreachable-code",
Aaron Wisnerdb511202018-06-26 15:38:35 -0500116 ],
117
118 export_include_dirs: ["."],
119
120}
Hridya Valsarajudea91b42018-07-17 11:14:01 -0700121
122cc_defaults {
123 name: "fastboot_defaults",
124
125 cflags: [
126 "-Wall",
127 "-Wextra",
128 "-Werror",
129 "-Wvla",
Yifan Hong07e947f2021-03-22 19:21:34 -0700130 "-DANDROID_BASE_UNIQUE_FD_DISABLE_IMPLICIT_CONVERSION",
Hridya Valsarajudea91b42018-07-17 11:14:01 -0700131 ],
132 rtti: true,
133
134 clang_cflags: [
135 "-Wthread-safety",
136 ],
137}
138
139cc_binary {
140 name: "fastbootd",
141 defaults: ["fastboot_defaults"],
142
143 recovery: true,
144
Yifan Hongb299cb72021-02-17 13:44:49 -0800145 product_variables: {
146 debuggable: {
147 cppflags: ["-DFB_ENABLE_FETCH"],
148 },
149 },
150
Hridya Valsarajudea91b42018-07-17 11:14:01 -0700151 srcs: [
152 "device/commands.cpp",
153 "device/fastboot_device.cpp",
David Anderson12211d12018-07-24 15:21:20 -0700154 "device/flashing.cpp",
Hridya Valsarajudea91b42018-07-17 11:14:01 -0700155 "device/main.cpp",
Josh Gao08718242020-03-27 18:09:56 -0700156 "device/usb.cpp",
Hridya Valsarajudea91b42018-07-17 11:14:01 -0700157 "device/usb_client.cpp",
Hongguang Chen1e239282020-04-22 14:25:45 -0700158 "device/tcp_client.cpp",
Hridya Valsaraju31d2c262018-07-20 13:35:50 -0700159 "device/utility.cpp",
160 "device/variables.cpp",
Hongguang Chen1e239282020-04-22 14:25:45 -0700161 "socket.cpp",
Hridya Valsarajudea91b42018-07-17 11:14:01 -0700162 ],
163
164 shared_libs: [
Hridya Valsaraju31d2c262018-07-20 13:35:50 -0700165 "android.hardware.boot@1.0",
David Andersonab8f4662019-10-21 16:45:59 -0700166 "android.hardware.boot@1.1",
josephjang29069752020-09-23 16:28:03 +0800167 "android.hardware.fastboot@1.1",
Hridya Valsaraju47658ca2018-09-28 11:41:22 -0700168 "android.hardware.health@2.0",
Yifan Hong4cb88dc2021-12-02 18:58:02 -0800169 "android.hardware.health-V1-ndk",
Tao Baob71eedf2018-08-06 19:13:38 -0700170 "libasyncio",
171 "libbase",
Yifan Hong4cb88dc2021-12-02 18:58:02 -0800172 "libbinder_ndk",
Tao Baob71eedf2018-08-06 19:13:38 -0700173 "libbootloader_message",
174 "libcutils",
David Anderson0d4277d2018-07-31 13:27:37 -0700175 "libext2_uuid",
Tao Baob71eedf2018-08-06 19:13:38 -0700176 "libext4_utils",
177 "libfs_mgr",
David Anderson1d504e32019-01-15 14:38:20 -0800178 "libgsi",
Tao Baob71eedf2018-08-06 19:13:38 -0700179 "libhidlbase",
Tao Baob71eedf2018-08-06 19:13:38 -0700180 "liblog",
David Anderson88ef0b12018-08-09 10:40:00 -0700181 "liblp",
David Anderson220ddb12019-10-31 18:02:41 -0700182 "libprotobuf-cpp-lite",
Tao Baob71eedf2018-08-06 19:13:38 -0700183 "libsparse",
184 "libutils",
Hridya Valsarajudea91b42018-07-17 11:14:01 -0700185 ],
186
Hridya Valsaraju47658ca2018-09-28 11:41:22 -0700187 static_libs: [
Yifan Hong4cb88dc2021-12-02 18:58:02 -0800188 "android.hardware.health-translate-ndk",
David Anderson0b903f92021-04-07 21:43:03 -0700189 "libc++fs",
Hridya Valsaraju47658ca2018-09-28 11:41:22 -0700190 "libhealthhalutils",
Yifan Hong4cb88dc2021-12-02 18:58:02 -0800191 "libhealthshim",
David Andersonaca0bea2020-09-21 16:34:25 -0700192 "libsnapshot_cow",
David Anderson220ddb12019-10-31 18:02:41 -0700193 "libsnapshot_nobinder",
Yifan Hong66f01152020-04-16 11:05:16 -0700194 "update_metadata-protos",
Hridya Valsaraju47658ca2018-09-28 11:41:22 -0700195 ],
Yifan Hong0e13bba2019-08-29 16:29:22 -0700196
197 header_libs: [
Steve Mucklea9b34432020-05-12 16:21:41 -0700198 "avb_headers",
Elliott Hughes02a83242021-04-20 15:22:02 -0700199 "libgtest_prod_headers",
Yifan Hong0e13bba2019-08-29 16:29:22 -0700200 "libsnapshot_headers",
Yifan Honga4eb4752021-02-16 19:37:21 -0800201 "libstorage_literals_headers",
202 ],
Hridya Valsarajudea91b42018-07-17 11:14:01 -0700203}
Dan Willemsenab971b52018-08-29 14:58:02 -0700204
205cc_defaults {
206 name: "fastboot_host_defaults",
207
208 use_version_lib: true,
209
210 cflags: [
211 "-Wall",
212 "-Wextra",
213 "-Werror",
214 "-Wunreachable-code",
Yifan Hong58532df2021-03-22 16:39:13 -0700215 "-DANDROID_BASE_UNIQUE_FD_DISABLE_IMPLICIT_CONVERSION",
Yifan Hongc8715002021-03-23 10:27:01 -0700216 "-D_FILE_OFFSET_BITS=64"
Dan Willemsenab971b52018-08-29 14:58:02 -0700217 ],
218
219 target: {
220 darwin: {
221 cflags: ["-Wno-unused-parameter"],
222 host_ldlibs: [
223 "-lpthread",
224 "-framework CoreFoundation",
225 "-framework IOKit",
Dan Willemsenab971b52018-08-29 14:58:02 -0700226 ],
227 },
228 windows: {
229 enabled: true,
230
231 host_ldlibs: ["-lws2_32"],
232 },
David Anderson89569642018-11-16 15:53:35 -0800233 not_windows: {
234 static_libs: [
235 "libext4_utils",
236 ],
237 },
Dan Willemsenab971b52018-08-29 14:58:02 -0700238 },
239
240 stl: "libc++_static",
241
242 // Don't add anything here, we don't want additional shared dependencies
243 // on the host fastboot tool, and shared libraries that link against libc++
244 // will violate ODR.
245 shared_libs: [],
246
Chin-Ting Kuodf6a7802019-09-16 11:23:55 +0800247 header_libs: [
248 "avb_headers",
249 "bootimg_headers",
250 ],
251
Dan Willemsenab971b52018-08-29 14:58:02 -0700252 static_libs: [
253 "libziparchive",
254 "libsparse",
255 "libutils",
256 "liblog",
257 "libz",
258 "libdiagnose_usb",
259 "libbase",
260 "libcutils",
261 "libgtest_host",
David Anderson89569642018-11-16 15:53:35 -0800262 "liblp",
263 "libcrypto",
Dan Willemsenab971b52018-08-29 14:58:02 -0700264 ],
265}
266
267//
268// Build host libfastboot.
269//
270
271cc_library_host_static {
272 name: "libfastboot",
273 defaults: ["fastboot_host_defaults"],
274
Dan Willemsenab971b52018-08-29 14:58:02 -0700275 srcs: [
276 "bootimg_utils.cpp",
Dan Willemsenab971b52018-08-29 14:58:02 -0700277 "fastboot.cpp",
278 "fs.cpp",
279 "socket.cpp",
280 "tcp.cpp",
281 "udp.cpp",
282 "util.cpp",
Yifan Honge71fe242021-02-22 15:00:15 -0800283 "vendor_boot_img_utils.cpp",
Dan Willemsenab971b52018-08-29 14:58:02 -0700284 "fastboot_driver.cpp",
285 ],
286
287 // Only version the final binaries
288 use_version_lib: false,
289 static_libs: ["libbuildversion"],
Yifan Hong17d469b2021-02-18 15:15:46 -0800290 header_libs: [
Yifan Honge71fe242021-02-22 15:00:15 -0800291 "avb_headers",
Yifan Hong17d469b2021-02-18 15:15:46 -0800292 "libstorage_literals_headers",
293 ],
Dan Willemsenab971b52018-08-29 14:58:02 -0700294
295 generated_headers: ["platform_tools_version"],
296
Chih-Hung Hsieh84006f52021-02-19 18:30:29 -0800297 tidy_flags: [
298 // DO NOT add quotes around header-filter flag regex argument,
299 // because build/soong will add quotes around the whole flag.
300 "-header-filter=(system/core/fastboot/|development/host/windows/usb/api/)",
301 ],
302
Dan Willemsenab971b52018-08-29 14:58:02 -0700303 target: {
304 windows: {
305 srcs: ["usb_windows.cpp"],
306
307 include_dirs: ["development/host/windows/usb/api"],
308 },
309 darwin: {
310 srcs: ["usb_osx.cpp"],
311 },
Jiyong Parkfd890282020-08-20 18:04:01 +0900312 linux: {
Dan Willemsenab971b52018-08-29 14:58:02 -0700313 srcs: ["usb_linux.cpp"],
314 },
315 },
316}
317
318//
319// Build host fastboot / fastboot.exe
320//
321
322cc_binary_host {
323 name: "fastboot",
324 defaults: ["fastboot_host_defaults"],
325
326 srcs: ["main.cpp"],
327 static_libs: ["libfastboot"],
328
329 required: [
330 "mke2fs",
331 "make_f2fs",
Jaegeuk Kima3896102020-07-17 20:30:41 -0700332 "make_f2fs_casefold",
Dan Willemsenab971b52018-08-29 14:58:02 -0700333 ],
Dan Willemsen3f439a72018-11-19 19:11:35 -0800334 dist: {
335 targets: [
336 "dist_files",
337 "sdk",
338 "win_sdk",
339 ],
340 },
Dan Willemsenab971b52018-08-29 14:58:02 -0700341
342 target: {
343 not_windows: {
344 required: [
345 "e2fsdroid",
346 "mke2fs.conf",
347 "sload_f2fs",
348 ],
349 },
350 windows: {
351 required: ["AdbWinUsbApi"],
352 shared_libs: ["AdbWinApi"],
353 },
354 },
355}
356
357//
358// Build host fastboot_test.
359//
360
361cc_test_host {
362 name: "fastboot_test",
363 defaults: ["fastboot_host_defaults"],
364
365 srcs: [
366 "fastboot_test.cpp",
367 "socket_mock.cpp",
368 "socket_test.cpp",
369 "tcp_test.cpp",
370 "udp_test.cpp",
371 ],
372
373 static_libs: ["libfastboot"],
374
375 target: {
376 windows: {
377 shared_libs: ["AdbWinApi"],
378 },
379 windows_x86_64: {
380 // Avoid trying to build for win64
381 enabled: false,
382 },
383 },
384}
Yifan Honge71fe242021-02-22 15:00:15 -0800385
386cc_test_host {
387 name: "fastboot_vendor_boot_img_utils_test",
388 srcs: ["vendor_boot_img_utils_test.cpp"],
389 static_libs: [
390 "libbase",
391 "libc++fs",
392 "libfastboot",
393 "libgmock",
394 "liblog",
395 ],
396 header_libs: [
397 "avb_headers",
398 "bootimg_headers",
399 ],
400 cflags: [
401 "-Wall",
402 "-Werror",
403 ],
404 data: [
405 ":fastboot_test_dtb",
406 ":fastboot_test_bootconfig",
407 ":fastboot_test_vendor_ramdisk_none",
408 ":fastboot_test_vendor_ramdisk_platform",
409 ":fastboot_test_vendor_ramdisk_replace",
410 ":fastboot_test_vendor_boot_v3",
411 ":fastboot_test_vendor_boot_v4_without_frag",
412 ":fastboot_test_vendor_boot_v4_with_frag"
413 ],
414}
Ayushi Khopkarce5c0332021-09-20 12:00:21 +0530415
416cc_library_headers {
417 name: "fastboot_headers",
418 host_supported: true,
419 export_include_dirs: ["."],
420}