Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 1 | // 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 Wisner | a5ad20a | 2018-08-24 09:59:50 -0500 | [diff] [blame] | 15 | // 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 Badour | d69ad69 | 2021-02-16 19:02:14 -0800 | [diff] [blame] | 17 | package { |
Hridya Valsaraju | 9937379 | 2022-01-18 13:58:46 -0800 | [diff] [blame] | 18 | default_applicable_licenses: [ |
| 19 | "system_core_fastboot_license", |
| 20 | "Android-Apache-2.0", |
| 21 | ], |
Bob Badour | d69ad69 | 2021-02-16 19:02:14 -0800 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | // Added automatically by a large-scale-change that took the approach of |
| 25 | // 'apply every license found to every target'. While this makes sure we respect |
| 26 | // every license restriction, it may not be entirely correct. |
| 27 | // |
| 28 | // e.g. GPL in an MIT project might only apply to the contrib/ directory. |
| 29 | // |
| 30 | // Please consider splitting the single license below into multiple licenses, |
| 31 | // taking care not to lose any license_kind information, and overriding the |
| 32 | // default license using the 'licenses: [...]' property on targets as needed. |
| 33 | // |
| 34 | // For unused files, consider creating a 'fileGroup' with "//visibility:private" |
| 35 | // to attach the license to, and including a comment whether the files may be |
| 36 | // used in the current project. |
| 37 | // See: http://go/android-license-faq |
| 38 | license { |
| 39 | name: "system_core_fastboot_license", |
| 40 | visibility: [":__subpackages__"], |
| 41 | license_kinds: [ |
Bob Badour | d69ad69 | 2021-02-16 19:02:14 -0800 | [diff] [blame] | 42 | "SPDX-license-identifier-BSD", |
| 43 | ], |
Hridya Valsaraju | 9937379 | 2022-01-18 13:58:46 -0800 | [diff] [blame] | 44 | license_text: ["LICENSE"], |
Bob Badour | d69ad69 | 2021-02-16 19:02:14 -0800 | [diff] [blame] | 45 | } |
| 46 | |
Aaron Wisner | db51120 | 2018-06-26 15:38:35 -0500 | [diff] [blame] | 47 | cc_library_host_static { |
| 48 | name: "libfastboot2", |
| 49 | |
| 50 | //host_supported: true, |
| 51 | |
| 52 | compile_multilib: "first", |
| 53 | srcs: [ |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 54 | "bootimg_utils.cpp", |
| 55 | "fs.cpp", |
| 56 | "socket.cpp", |
| 57 | "tcp.cpp", |
| 58 | "udp.cpp", |
| 59 | "util.cpp", |
Yifan Hong | e71fe24 | 2021-02-22 15:00:15 -0800 | [diff] [blame] | 60 | "vendor_boot_img_utils.cpp", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 61 | "fastboot_driver.cpp", |
Aaron Wisner | db51120 | 2018-06-26 15:38:35 -0500 | [diff] [blame] | 62 | ], |
| 63 | |
| 64 | static_libs: [ |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 65 | "libziparchive", |
| 66 | "libsparse", |
| 67 | "libutils", |
| 68 | "liblog", |
| 69 | "libz", |
| 70 | "libdiagnose_usb", |
| 71 | "libbase", |
| 72 | "libcutils", |
| 73 | "libgtest", |
| 74 | "libgtest_main", |
| 75 | "libbase", |
| 76 | "libadb_host", |
David Anderson | 8956964 | 2018-11-16 15:53:35 -0800 | [diff] [blame] | 77 | "liblp", |
Aaron Wisner | db51120 | 2018-06-26 15:38:35 -0500 | [diff] [blame] | 78 | ], |
| 79 | |
| 80 | header_libs: [ |
Yifan Hong | e71fe24 | 2021-02-22 15:00:15 -0800 | [diff] [blame] | 81 | "avb_headers", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 82 | "bootimg_headers", |
Yifan Hong | 17d469b | 2021-02-18 15:15:46 -0800 | [diff] [blame] | 83 | "libstorage_literals_headers", |
Aaron Wisner | db51120 | 2018-06-26 15:38:35 -0500 | [diff] [blame] | 84 | ], |
| 85 | |
| 86 | export_header_lib_headers: [ |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 87 | "bootimg_headers", |
Aaron Wisner | db51120 | 2018-06-26 15:38:35 -0500 | [diff] [blame] | 88 | ], |
| 89 | |
Aaron Wisner | db51120 | 2018-06-26 15:38:35 -0500 | [diff] [blame] | 90 | target: { |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 91 | linux: { |
| 92 | srcs: ["usb_linux.cpp"], |
| 93 | }, |
Aaron Wisner | a5ad20a | 2018-08-24 09:59:50 -0500 | [diff] [blame] | 94 | |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 95 | darwin: { |
| 96 | srcs: ["usb_osx.cpp"], |
Aaron Wisner | a5ad20a | 2018-08-24 09:59:50 -0500 | [diff] [blame] | 97 | |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 98 | host_ldlibs: [ |
| 99 | "-framework CoreFoundation", |
| 100 | "-framework IOKit", |
| 101 | ], |
| 102 | }, |
Aaron Wisner | a5ad20a | 2018-08-24 09:59:50 -0500 | [diff] [blame] | 103 | |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 104 | windows: { |
| 105 | srcs: ["usb_windows.cpp"], |
Aaron Wisner | a5ad20a | 2018-08-24 09:59:50 -0500 | [diff] [blame] | 106 | |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 107 | host_ldlibs: [ |
| 108 | "-lws2_32", |
| 109 | ], |
| 110 | }, |
Aaron Wisner | db51120 | 2018-06-26 15:38:35 -0500 | [diff] [blame] | 111 | }, |
| 112 | |
| 113 | cflags: [ |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 114 | "-Wall", |
| 115 | "-Wextra", |
| 116 | "-Werror", |
| 117 | "-Wunreachable-code", |
Aaron Wisner | db51120 | 2018-06-26 15:38:35 -0500 | [diff] [blame] | 118 | ], |
| 119 | |
| 120 | export_include_dirs: ["."], |
| 121 | |
| 122 | } |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 123 | |
| 124 | cc_defaults { |
| 125 | name: "fastboot_defaults", |
| 126 | |
| 127 | cflags: [ |
| 128 | "-Wall", |
| 129 | "-Wextra", |
| 130 | "-Werror", |
| 131 | "-Wvla", |
Yifan Hong | 07e947f | 2021-03-22 19:21:34 -0700 | [diff] [blame] | 132 | "-DANDROID_BASE_UNIQUE_FD_DISABLE_IMPLICIT_CONVERSION", |
Alix | 9640339 | 2022-04-21 03:03:27 +0000 | [diff] [blame] | 133 | "-Wthread-safety", |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 134 | ], |
| 135 | rtti: true, |
| 136 | |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | cc_binary { |
| 140 | name: "fastbootd", |
| 141 | defaults: ["fastboot_defaults"], |
| 142 | |
| 143 | recovery: true, |
| 144 | |
Yifan Hong | b299cb7 | 2021-02-17 13:44:49 -0800 | [diff] [blame] | 145 | product_variables: { |
| 146 | debuggable: { |
| 147 | cppflags: ["-DFB_ENABLE_FETCH"], |
| 148 | }, |
| 149 | }, |
| 150 | |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 151 | srcs: [ |
| 152 | "device/commands.cpp", |
| 153 | "device/fastboot_device.cpp", |
David Anderson | 12211d1 | 2018-07-24 15:21:20 -0700 | [diff] [blame] | 154 | "device/flashing.cpp", |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 155 | "device/main.cpp", |
Josh Gao | 0871824 | 2020-03-27 18:09:56 -0700 | [diff] [blame] | 156 | "device/usb.cpp", |
Kelvin Zhang | 682e5b5 | 2022-07-12 17:37:54 -0700 | [diff] [blame] | 157 | "device/usb_iouring.cpp", |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 158 | "device/usb_client.cpp", |
Hongguang Chen | 1e23928 | 2020-04-22 14:25:45 -0700 | [diff] [blame] | 159 | "device/tcp_client.cpp", |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 160 | "device/utility.cpp", |
| 161 | "device/variables.cpp", |
Hongguang Chen | 1e23928 | 2020-04-22 14:25:45 -0700 | [diff] [blame] | 162 | "socket.cpp", |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 163 | ], |
| 164 | |
| 165 | shared_libs: [ |
Hridya Valsaraju | 31d2c26 | 2018-07-20 13:35:50 -0700 | [diff] [blame] | 166 | "android.hardware.boot@1.0", |
David Anderson | ab8f466 | 2019-10-21 16:45:59 -0700 | [diff] [blame] | 167 | "android.hardware.boot@1.1", |
Kelvin Zhang | 6befe78 | 2022-06-21 14:20:54 -0700 | [diff] [blame] | 168 | "android.hardware.boot-V1-ndk", |
| 169 | "libboot_control_client", |
josephjang | 2906975 | 2020-09-23 16:28:03 +0800 | [diff] [blame] | 170 | "android.hardware.fastboot@1.1", |
Sandeep Dhavale | 2534d48 | 2022-11-08 22:30:05 +0000 | [diff] [blame] | 171 | "android.hardware.fastboot-V1-ndk", |
Hridya Valsaraju | 47658ca | 2018-09-28 11:41:22 -0700 | [diff] [blame] | 172 | "android.hardware.health@2.0", |
Jack Wu | 0635794 | 2022-11-30 12:46:08 +0800 | [diff] [blame] | 173 | "android.hardware.health-V2-ndk", |
Tao Bao | b71eedf | 2018-08-06 19:13:38 -0700 | [diff] [blame] | 174 | "libasyncio", |
| 175 | "libbase", |
Yifan Hong | 4cb88dc | 2021-12-02 18:58:02 -0800 | [diff] [blame] | 176 | "libbinder_ndk", |
Tao Bao | b71eedf | 2018-08-06 19:13:38 -0700 | [diff] [blame] | 177 | "libbootloader_message", |
| 178 | "libcutils", |
David Anderson | 0d4277d | 2018-07-31 13:27:37 -0700 | [diff] [blame] | 179 | "libext2_uuid", |
Tao Bao | b71eedf | 2018-08-06 19:13:38 -0700 | [diff] [blame] | 180 | "libext4_utils", |
| 181 | "libfs_mgr", |
David Anderson | 1d504e3 | 2019-01-15 14:38:20 -0800 | [diff] [blame] | 182 | "libgsi", |
Tao Bao | b71eedf | 2018-08-06 19:13:38 -0700 | [diff] [blame] | 183 | "libhidlbase", |
Tao Bao | b71eedf | 2018-08-06 19:13:38 -0700 | [diff] [blame] | 184 | "liblog", |
David Anderson | 88ef0b1 | 2018-08-09 10:40:00 -0700 | [diff] [blame] | 185 | "liblp", |
David Anderson | 220ddb1 | 2019-10-31 18:02:41 -0700 | [diff] [blame] | 186 | "libprotobuf-cpp-lite", |
Tao Bao | b71eedf | 2018-08-06 19:13:38 -0700 | [diff] [blame] | 187 | "libsparse", |
| 188 | "libutils", |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 189 | ], |
| 190 | |
Hridya Valsaraju | 47658ca | 2018-09-28 11:41:22 -0700 | [diff] [blame] | 191 | static_libs: [ |
Yifan Hong | 4cb88dc | 2021-12-02 18:58:02 -0800 | [diff] [blame] | 192 | "android.hardware.health-translate-ndk", |
David Anderson | 0b903f9 | 2021-04-07 21:43:03 -0700 | [diff] [blame] | 193 | "libc++fs", |
Hridya Valsaraju | 47658ca | 2018-09-28 11:41:22 -0700 | [diff] [blame] | 194 | "libhealthhalutils", |
Yifan Hong | 4cb88dc | 2021-12-02 18:58:02 -0800 | [diff] [blame] | 195 | "libhealthshim", |
Sandeep Dhavale | 2534d48 | 2022-11-08 22:30:05 +0000 | [diff] [blame] | 196 | "libfastbootshim", |
David Anderson | aca0bea | 2020-09-21 16:34:25 -0700 | [diff] [blame] | 197 | "libsnapshot_cow", |
Kelvin Zhang | 5cb1b02 | 2022-04-11 17:29:27 -0700 | [diff] [blame] | 198 | "liblz4", |
Kelvin Zhang | 32dcac7 | 2023-02-15 16:23:46 -0800 | [diff] [blame] | 199 | "libzstd", |
David Anderson | 220ddb1 | 2019-10-31 18:02:41 -0700 | [diff] [blame] | 200 | "libsnapshot_nobinder", |
Yifan Hong | 66f0115 | 2020-04-16 11:05:16 -0700 | [diff] [blame] | 201 | "update_metadata-protos", |
Kelvin Zhang | 682e5b5 | 2022-07-12 17:37:54 -0700 | [diff] [blame] | 202 | "liburing", |
Hridya Valsaraju | 47658ca | 2018-09-28 11:41:22 -0700 | [diff] [blame] | 203 | ], |
Kelvin Zhang | 682e5b5 | 2022-07-12 17:37:54 -0700 | [diff] [blame] | 204 | include_dirs: ["bionic/libc/kernel"], |
Yifan Hong | 0e13bba | 2019-08-29 16:29:22 -0700 | [diff] [blame] | 205 | |
| 206 | header_libs: [ |
Steve Muckle | a9b3443 | 2020-05-12 16:21:41 -0700 | [diff] [blame] | 207 | "avb_headers", |
Elliott Hughes | 02a8324 | 2021-04-20 15:22:02 -0700 | [diff] [blame] | 208 | "libgtest_prod_headers", |
Yifan Hong | 0e13bba | 2019-08-29 16:29:22 -0700 | [diff] [blame] | 209 | "libsnapshot_headers", |
Yifan Hong | a4eb475 | 2021-02-16 19:37:21 -0800 | [diff] [blame] | 210 | "libstorage_literals_headers", |
| 211 | ], |
Hridya Valsaraju | dea91b4 | 2018-07-17 11:14:01 -0700 | [diff] [blame] | 212 | } |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 213 | |
| 214 | cc_defaults { |
| 215 | name: "fastboot_host_defaults", |
| 216 | |
| 217 | use_version_lib: true, |
| 218 | |
| 219 | cflags: [ |
| 220 | "-Wall", |
| 221 | "-Wextra", |
| 222 | "-Werror", |
| 223 | "-Wunreachable-code", |
Yifan Hong | 58532df | 2021-03-22 16:39:13 -0700 | [diff] [blame] | 224 | "-DANDROID_BASE_UNIQUE_FD_DISABLE_IMPLICIT_CONVERSION", |
Alix | 9640339 | 2022-04-21 03:03:27 +0000 | [diff] [blame] | 225 | "-D_FILE_OFFSET_BITS=64", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 226 | ], |
| 227 | |
| 228 | target: { |
| 229 | darwin: { |
| 230 | cflags: ["-Wno-unused-parameter"], |
| 231 | host_ldlibs: [ |
| 232 | "-lpthread", |
| 233 | "-framework CoreFoundation", |
| 234 | "-framework IOKit", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 235 | ], |
| 236 | }, |
| 237 | windows: { |
| 238 | enabled: true, |
| 239 | |
| 240 | host_ldlibs: ["-lws2_32"], |
| 241 | }, |
David Anderson | 8956964 | 2018-11-16 15:53:35 -0800 | [diff] [blame] | 242 | not_windows: { |
| 243 | static_libs: [ |
| 244 | "libext4_utils", |
| 245 | ], |
| 246 | }, |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 247 | }, |
| 248 | |
| 249 | stl: "libc++_static", |
| 250 | |
| 251 | // Don't add anything here, we don't want additional shared dependencies |
| 252 | // on the host fastboot tool, and shared libraries that link against libc++ |
| 253 | // will violate ODR. |
| 254 | shared_libs: [], |
| 255 | |
Chin-Ting Kuo | df6a780 | 2019-09-16 11:23:55 +0800 | [diff] [blame] | 256 | header_libs: [ |
| 257 | "avb_headers", |
| 258 | "bootimg_headers", |
| 259 | ], |
| 260 | |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 261 | static_libs: [ |
| 262 | "libziparchive", |
| 263 | "libsparse", |
| 264 | "libutils", |
| 265 | "liblog", |
Kelvin Zhang | 5cb1b02 | 2022-04-11 17:29:27 -0700 | [diff] [blame] | 266 | "liblz4", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 267 | "libz", |
| 268 | "libdiagnose_usb", |
| 269 | "libbase", |
| 270 | "libcutils", |
| 271 | "libgtest_host", |
David Anderson | 8956964 | 2018-11-16 15:53:35 -0800 | [diff] [blame] | 272 | "liblp", |
| 273 | "libcrypto", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 274 | ], |
| 275 | } |
| 276 | |
| 277 | // |
| 278 | // Build host libfastboot. |
| 279 | // |
| 280 | |
| 281 | cc_library_host_static { |
| 282 | name: "libfastboot", |
| 283 | defaults: ["fastboot_host_defaults"], |
| 284 | |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 285 | srcs: [ |
| 286 | "bootimg_utils.cpp", |
Dmitrii Merkurev | 9129717 | 2023-02-09 02:08:14 +0000 | [diff] [blame] | 287 | "fastboot_driver.cpp", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 288 | "fastboot.cpp", |
Dmitrii Merkurev | 9129717 | 2023-02-09 02:08:14 +0000 | [diff] [blame] | 289 | "filesystem.cpp", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 290 | "fs.cpp", |
| 291 | "socket.cpp", |
Dmitrii Merkurev | 9129717 | 2023-02-09 02:08:14 +0000 | [diff] [blame] | 292 | "storage.cpp", |
David Anderson | 667b1ef | 2023-01-27 21:11:11 -0800 | [diff] [blame] | 293 | "super_flash_helper.cpp", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 294 | "tcp.cpp", |
| 295 | "udp.cpp", |
| 296 | "util.cpp", |
Yifan Hong | e71fe24 | 2021-02-22 15:00:15 -0800 | [diff] [blame] | 297 | "vendor_boot_img_utils.cpp", |
Daniel Zheng | 0d30718 | 2023-01-31 21:07:53 +0000 | [diff] [blame] | 298 | "task.cpp", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 299 | ], |
| 300 | |
| 301 | // Only version the final binaries |
| 302 | use_version_lib: false, |
| 303 | static_libs: ["libbuildversion"], |
Yifan Hong | 17d469b | 2021-02-18 15:15:46 -0800 | [diff] [blame] | 304 | header_libs: [ |
Yifan Hong | e71fe24 | 2021-02-22 15:00:15 -0800 | [diff] [blame] | 305 | "avb_headers", |
Yifan Hong | 17d469b | 2021-02-18 15:15:46 -0800 | [diff] [blame] | 306 | "libstorage_literals_headers", |
| 307 | ], |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 308 | |
| 309 | generated_headers: ["platform_tools_version"], |
| 310 | |
Chih-Hung Hsieh | 84006f5 | 2021-02-19 18:30:29 -0800 | [diff] [blame] | 311 | tidy_flags: [ |
| 312 | // DO NOT add quotes around header-filter flag regex argument, |
| 313 | // because build/soong will add quotes around the whole flag. |
| 314 | "-header-filter=(system/core/fastboot/|development/host/windows/usb/api/)", |
| 315 | ], |
| 316 | |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 317 | target: { |
| 318 | windows: { |
| 319 | srcs: ["usb_windows.cpp"], |
| 320 | |
| 321 | include_dirs: ["development/host/windows/usb/api"], |
| 322 | }, |
| 323 | darwin: { |
| 324 | srcs: ["usb_osx.cpp"], |
| 325 | }, |
Jiyong Park | fd89028 | 2020-08-20 18:04:01 +0900 | [diff] [blame] | 326 | linux: { |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 327 | srcs: ["usb_linux.cpp"], |
| 328 | }, |
| 329 | }, |
| 330 | } |
| 331 | |
| 332 | // |
| 333 | // Build host fastboot / fastboot.exe |
| 334 | // |
| 335 | |
| 336 | cc_binary_host { |
| 337 | name: "fastboot", |
| 338 | defaults: ["fastboot_host_defaults"], |
| 339 | |
| 340 | srcs: ["main.cpp"], |
| 341 | static_libs: ["libfastboot"], |
| 342 | |
| 343 | required: [ |
| 344 | "mke2fs", |
| 345 | "make_f2fs", |
Jaegeuk Kim | a389610 | 2020-07-17 20:30:41 -0700 | [diff] [blame] | 346 | "make_f2fs_casefold", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 347 | ], |
Dan Willemsen | 3f439a7 | 2018-11-19 19:11:35 -0800 | [diff] [blame] | 348 | dist: { |
| 349 | targets: [ |
| 350 | "dist_files", |
| 351 | "sdk", |
Shaju Mathew | 6c27f23 | 2022-10-06 22:12:10 +0000 | [diff] [blame] | 352 | "sdk-repo-platform-tools", |
| 353 | "sdk_repo", |
Dan Willemsen | 3f439a7 | 2018-11-19 19:11:35 -0800 | [diff] [blame] | 354 | "win_sdk", |
| 355 | ], |
| 356 | }, |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 357 | |
| 358 | target: { |
| 359 | not_windows: { |
| 360 | required: [ |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 361 | "mke2fs.conf", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 362 | ], |
| 363 | }, |
| 364 | windows: { |
| 365 | required: ["AdbWinUsbApi"], |
| 366 | shared_libs: ["AdbWinApi"], |
| 367 | }, |
| 368 | }, |
| 369 | } |
| 370 | |
| 371 | // |
| 372 | // Build host fastboot_test. |
| 373 | // |
| 374 | |
| 375 | cc_test_host { |
| 376 | name: "fastboot_test", |
| 377 | defaults: ["fastboot_host_defaults"], |
| 378 | |
| 379 | srcs: [ |
David Anderson | e6d8dd3 | 2023-02-13 14:09:16 -0800 | [diff] [blame] | 380 | "fastboot_driver_test.cpp", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 381 | "fastboot_test.cpp", |
| 382 | "socket_mock.cpp", |
| 383 | "socket_test.cpp", |
David Anderson | ada8718 | 2023-02-08 22:06:56 -0800 | [diff] [blame] | 384 | "super_flash_helper_test.cpp", |
Daniel Zheng | 76aa257 | 2023-03-30 15:48:23 -0700 | [diff] [blame] | 385 | "task_test.cpp", |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 386 | "tcp_test.cpp", |
| 387 | "udp_test.cpp", |
| 388 | ], |
| 389 | |
David Anderson | e6d8dd3 | 2023-02-13 14:09:16 -0800 | [diff] [blame] | 390 | static_libs: [ |
| 391 | "libfastboot", |
| 392 | "libgmock", |
| 393 | ], |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 394 | |
| 395 | target: { |
| 396 | windows: { |
| 397 | shared_libs: ["AdbWinApi"], |
| 398 | }, |
| 399 | windows_x86_64: { |
| 400 | // Avoid trying to build for win64 |
| 401 | enabled: false, |
| 402 | }, |
| 403 | }, |
David Anderson | 86e869a | 2023-02-08 13:58:40 -0800 | [diff] [blame] | 404 | |
| 405 | test_suites: ["general-tests"], |
David Anderson | ada8718 | 2023-02-08 22:06:56 -0800 | [diff] [blame] | 406 | |
| 407 | data: [ |
| 408 | "testdata/super.img", |
| 409 | "testdata/super_empty.img", |
| 410 | "testdata/system.img", |
| 411 | ], |
Dan Willemsen | ab971b5 | 2018-08-29 14:58:02 -0700 | [diff] [blame] | 412 | } |
Yifan Hong | e71fe24 | 2021-02-22 15:00:15 -0800 | [diff] [blame] | 413 | |
| 414 | cc_test_host { |
| 415 | name: "fastboot_vendor_boot_img_utils_test", |
| 416 | srcs: ["vendor_boot_img_utils_test.cpp"], |
| 417 | static_libs: [ |
| 418 | "libbase", |
| 419 | "libc++fs", |
| 420 | "libfastboot", |
| 421 | "libgmock", |
| 422 | "liblog", |
| 423 | ], |
| 424 | header_libs: [ |
| 425 | "avb_headers", |
| 426 | "bootimg_headers", |
| 427 | ], |
| 428 | cflags: [ |
| 429 | "-Wall", |
| 430 | "-Werror", |
| 431 | ], |
| 432 | data: [ |
| 433 | ":fastboot_test_dtb", |
| 434 | ":fastboot_test_bootconfig", |
| 435 | ":fastboot_test_vendor_ramdisk_none", |
| 436 | ":fastboot_test_vendor_ramdisk_platform", |
| 437 | ":fastboot_test_vendor_ramdisk_replace", |
| 438 | ":fastboot_test_vendor_boot_v3", |
| 439 | ":fastboot_test_vendor_boot_v4_without_frag", |
Alix | 9640339 | 2022-04-21 03:03:27 +0000 | [diff] [blame] | 440 | ":fastboot_test_vendor_boot_v4_with_frag", |
Yifan Hong | e71fe24 | 2021-02-22 15:00:15 -0800 | [diff] [blame] | 441 | ], |
| 442 | } |
Ayushi Khopkar | ce5c033 | 2021-09-20 12:00:21 +0530 | [diff] [blame] | 443 | |
| 444 | cc_library_headers { |
| 445 | name: "fastboot_headers", |
| 446 | host_supported: true, |
| 447 | export_include_dirs: ["."], |
| 448 | } |
William Hester | bdf0b1b | 2023-10-24 16:53:24 -0700 | [diff] [blame^] | 449 | |
| 450 | python_test_host { |
| 451 | name: "fastboot_integration_test", |
| 452 | main: "test_fastboot.py", |
| 453 | srcs: ["test_fastboot.py"], |
| 454 | data: [":fastboot"], |
| 455 | test_config: "fastboot_integration_test.xml", |
| 456 | test_options: { |
| 457 | unit_test: false, |
| 458 | }, |
| 459 | } |