wjia@webrtc.org | 03cfde2 | 2014-01-14 17:48:34 | [diff] [blame] | 1 | # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license |
| 4 | # that can be found in the LICENSE file in the root of the source |
| 5 | # tree. An additional intellectual property rights grant can be found |
| 6 | # in the file PATENTS. All contributing project authors may |
| 7 | # be found in the AUTHORS file in the root of the source tree. |
| 8 | |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 9 | # This is the root build file for GN. GN will start processing by loading this |
| 10 | # file, and recursively load all dependencies until all dependencies are either |
| 11 | # resolved or known not to exist (which will cause the build to fail). So if |
| 12 | # you add a new build file, there must be some path of dependencies from this |
| 13 | # file to your new one or GN won't know about it. |
| 14 | |
Harald Alvestrand | e47493b | 2022-02-15 12:45:02 | [diff] [blame] | 15 | # Use of visibility = clauses: |
| 16 | # The default visibility for all rtc_ targets is equivalent to "//*", or |
| 17 | # "all targets in webrtc can depend on this, nothing outside can". |
| 18 | # |
| 19 | # When overriding, the choices are: |
| 20 | # - visibility = [ "*" ] - public. Stuff outside webrtc can use this. |
| 21 | # - visibility = [ ":*" ] - directory private. |
| 22 | # As a general guideline, only targets in api/ should have public visibility. |
| 23 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 24 | import("//build/config/linux/pkg_config.gni") |
| 25 | import("//build/config/sanitizers/sanitizers.gni") |
| 26 | import("webrtc.gni") |
Kimmo Kinnunen | 08f6a6c | 2019-02-26 09:46:17 | [diff] [blame] | 27 | if (rtc_enable_protobuf) { |
Dan Minor | 9c68613 | 2018-01-15 15:20:00 | [diff] [blame] | 28 | import("//third_party/protobuf/proto_library.gni") |
| 29 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 30 | if (is_android) { |
| 31 | import("//build/config/android/config.gni") |
| 32 | import("//build/config/android/rules.gni") |
Jeremy Leconte | 2e7ed0d | 2023-09-19 08:09:06 | [diff] [blame] | 33 | import("//third_party/jni_zero/jni_zero.gni") |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 34 | } |
ehmaldonado | 37d7a22 | 2016-11-08 14:34:20 | [diff] [blame] | 35 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 36 | if (!build_with_chromium) { |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 37 | # This target should (transitively) cause everything to be built; if you run |
| 38 | # 'ninja default' and then 'ninja all', the second build should do no work. |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 39 | group("default") { |
| 40 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 11:10:10 | [diff] [blame] | 41 | deps = [ ":webrtc" ] |
Joachim Bauch | 93e9134 | 2017-12-07 00:25:53 | [diff] [blame] | 42 | if (rtc_build_examples) { |
| 43 | deps += [ "examples" ] |
| 44 | } |
| 45 | if (rtc_build_tools) { |
| 46 | deps += [ "rtc_tools" ] |
| 47 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 48 | if (rtc_include_tests) { |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 49 | deps += [ |
| 50 | ":rtc_unittests", |
| 51 | ":video_engine_tests", |
Tim Na | 8ab3c77 | 2020-03-27 00:16:51 | [diff] [blame] | 52 | ":voip_unittests", |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 53 | ":webrtc_nonparallel_tests", |
| 54 | ":webrtc_perf_tests", |
| 55 | "common_audio:common_audio_unittests", |
| 56 | "common_video:common_video_unittests", |
Niels Möller | 9862c2e | 2018-10-30 11:20:03 | [diff] [blame] | 57 | "examples:examples_unittests", |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 58 | "media:rtc_media_unittests", |
| 59 | "modules:modules_tests", |
| 60 | "modules:modules_unittests", |
| 61 | "modules/audio_coding:audio_coding_tests", |
| 62 | "modules/audio_processing:audio_processing_tests", |
Mirko Bonadei | 79e4c92 | 2019-07-08 09:52:24 | [diff] [blame] | 63 | "modules/remote_bitrate_estimator:rtp_to_text", |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 64 | "modules/rtp_rtcp:test_packet_masks_metrics", |
| 65 | "modules/video_capture:video_capture_internal_impl", |
Sergey Silkin | 0328190 | 2023-05-19 09:10:15 | [diff] [blame] | 66 | "modules/video_coding:video_codec_perf_tests", |
Victor Boivie | 7d3c49a | 2021-03-25 12:11:03 | [diff] [blame] | 67 | "net/dcsctp:dcsctp_unittests", |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 68 | "pc:peerconnection_unittests", |
| 69 | "pc:rtc_pc_unittests", |
Harald Alvestrand | f8f7b70 | 2022-05-05 13:21:19 | [diff] [blame] | 70 | "pc:slow_peer_connection_unittests", |
Florent Castelli | 90b7438 | 2022-04-25 15:28:00 | [diff] [blame] | 71 | "pc:svc_tests", |
Ilya Nikolaevskiy | b41d5f1 | 2019-07-18 07:59:25 | [diff] [blame] | 72 | "rtc_tools:rtp_generator", |
Philipp Hancke | e4e33b8 | 2023-06-14 14:55:54 | [diff] [blame] | 73 | "rtc_tools:video_encoder", |
Mirko Bonadei | d4c3c3a | 2020-02-07 09:02:31 | [diff] [blame] | 74 | "rtc_tools:video_replay", |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 75 | "stats:rtc_stats_unittests", |
| 76 | "system_wrappers:system_wrappers_unittests", |
| 77 | "test", |
| 78 | "video:screenshare_loopback", |
Ilya Nikolaevskiy | 255d1cd | 2017-12-21 17:02:59 | [diff] [blame] | 79 | "video:sv_loopback", |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 80 | "video:video_loopback", |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 81 | ] |
Danil Chapovalov | f2d3136 | 2024-08-19 14:47:18 | [diff] [blame] | 82 | if (use_libfuzzer) { |
| 83 | deps += [ "test/fuzzers" ] |
| 84 | } |
Mirko Bonadei | 6adb0a2 | 2019-10-23 14:55:04 | [diff] [blame] | 85 | if (!is_asan) { |
| 86 | # Do not build :webrtc_lib_link_test because lld complains on some OS |
| 87 | # (e.g. when target_os = "mac") when is_asan=true. For more details, |
| 88 | # see bugs.webrtc.org/11027#c5. |
| 89 | deps += [ ":webrtc_lib_link_test" ] |
| 90 | } |
Jeremy Leconte | 251eca2 | 2022-03-04 04:39:04 | [diff] [blame] | 91 | if (is_ios) { |
| 92 | deps += [ |
| 93 | "examples:apprtcmobile_tests", |
| 94 | "sdk:sdk_framework_unittests", |
| 95 | "sdk:sdk_unittests", |
| 96 | ] |
| 97 | } |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 98 | if (is_android) { |
| 99 | deps += [ |
Mirko Bonadei | 73aa2de | 2020-01-20 14:28:57 | [diff] [blame] | 100 | "examples:android_examples_junit_tests", |
Sami Kalliomäki | d54f5f5 | 2018-08-03 11:23:05 | [diff] [blame] | 101 | "sdk/android:android_instrumentation_test_apk", |
Mirko Bonadei | ccbe95f | 2020-01-21 11:10:10 | [diff] [blame] | 102 | "sdk/android:android_sdk_junit_tests", |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 103 | ] |
| 104 | } else { |
| 105 | deps += [ "modules/video_capture:video_capture_tests" ] |
| 106 | } |
| 107 | if (rtc_enable_protobuf) { |
| 108 | deps += [ |
Mirko Bonadei | ab0b9d4 | 2019-07-08 10:31:59 | [diff] [blame] | 109 | "logging:rtc_event_log_rtp_dump", |
Patrik Höglund | 83245bd | 2020-01-30 08:33:57 | [diff] [blame] | 110 | "tools_webrtc/perf:webrtc_dashboard_upload", |
Patrik Höglund | 29dd6d7 | 2017-12-01 10:35:26 | [diff] [blame] | 111 | ] |
| 112 | } |
Jan Grulich | 1264dc1 | 2022-10-18 12:27:17 | [diff] [blame] | 113 | if ((is_linux || is_chromeos) && rtc_use_pipewire) { |
| 114 | deps += [ "modules/desktop_capture:shared_screencast_stream_test" ] |
| 115 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 116 | } |
Mirko Bonadei | b985748 | 2020-12-14 14:28:43 | [diff] [blame] | 117 | if (target_os == "android") { |
| 118 | deps += [ "tools_webrtc:binary_version_check" ] |
| 119 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 120 | } |
| 121 | } |
| 122 | |
Mirko Bonadei | 2ab97f6 | 2019-07-18 11:44:12 | [diff] [blame] | 123 | # Abseil Flags by default doesn't register command line flags on mobile |
| 124 | # platforms, WebRTC tests requires them (e.g. on simualtors) so this |
| 125 | # config will be applied to testonly targets globally (see webrtc.gni). |
| 126 | config("absl_flags_configs") { |
| 127 | defines = [ "ABSL_FLAGS_STRIP_NAMES=0" ] |
| 128 | } |
| 129 | |
Mirko Bonadei | 32ce18c | 2018-09-18 11:15:54 | [diff] [blame] | 130 | config("library_impl_config") { |
| 131 | # Build targets that contain WebRTC implementation need this macro to |
| 132 | # be defined in order to correctly export symbols when is_component_build |
| 133 | # is true. |
| 134 | # For more info see: rtc_base/build/rtc_export.h. |
| 135 | defines = [ "WEBRTC_LIBRARY_IMPL" ] |
| 136 | } |
| 137 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 138 | # Contains the defines and includes in common.gypi that are duplicated both as |
| 139 | # target_defaults and direct_dependent_settings. |
| 140 | config("common_inherited_config") { |
| 141 | defines = [] |
| 142 | cflags = [] |
| 143 | ldflags = [] |
Mirko Bonadei | 32ce18c | 2018-09-18 11:15:54 | [diff] [blame] | 144 | |
Mirko Bonadei | 9130431 | 2023-07-26 11:01:43 | [diff] [blame] | 145 | if (rtc_objc_prefix != "") { |
| 146 | defines += [ "RTC_OBJC_TYPE_PREFIX=${rtc_objc_prefix}" ] |
| 147 | } |
| 148 | |
Mirko Bonadei | 56ed468 | 2021-10-12 06:55:42 | [diff] [blame] | 149 | if (rtc_dlog_always_on) { |
| 150 | defines += [ "DLOG_ALWAYS_ON" ] |
| 151 | } |
| 152 | |
Mirko Bonadei | 02fac7d | 2019-10-15 19:25:07 | [diff] [blame] | 153 | if (rtc_enable_symbol_export || is_component_build) { |
Takaaki Suzuki | 52d97fd | 2021-10-09 13:16:01 | [diff] [blame] | 154 | defines += [ "WEBRTC_ENABLE_SYMBOL_EXPORT" ] |
Mirko Bonadei | 028248c | 2018-10-10 10:19:02 | [diff] [blame] | 155 | } |
Mirko Bonadei | 5f07845 | 2021-07-30 20:32:55 | [diff] [blame] | 156 | if (rtc_enable_objc_symbol_export) { |
Takaaki Suzuki | 52d97fd | 2021-10-09 13:16:01 | [diff] [blame] | 157 | defines += [ "WEBRTC_ENABLE_OBJC_SYMBOL_EXPORT" ] |
Mirko Bonadei | 5f07845 | 2021-07-30 20:32:55 | [diff] [blame] | 158 | } |
Mirko Bonadei | 028248c | 2018-10-10 10:19:02 | [diff] [blame] | 159 | |
Mirko Bonadei | b889a20 | 2018-08-15 09:41:27 | [diff] [blame] | 160 | if (!rtc_builtin_ssl_root_certificates) { |
| 161 | defines += [ "WEBRTC_EXCLUDE_BUILT_IN_SSL_ROOT_CERTS" ] |
| 162 | } |
| 163 | |
Artem Titov | 9dc209a | 2019-11-28 16:09:30 | [diff] [blame] | 164 | if (rtc_disable_check_msg) { |
| 165 | defines += [ "RTC_DISABLE_CHECK_MSG" ] |
| 166 | } |
| 167 | |
Zhaoliang Ma | 72e4321 | 2020-08-17 09:13:41 | [diff] [blame] | 168 | if (rtc_enable_avx2) { |
| 169 | defines += [ "WEBRTC_ENABLE_AVX2" ] |
| 170 | } |
| 171 | |
Austin Orion | edc946e | 2021-04-05 23:30:20 | [diff] [blame] | 172 | if (rtc_enable_win_wgc) { |
| 173 | defines += [ "RTC_ENABLE_WIN_WGC" ] |
| 174 | } |
| 175 | |
Evan Shrubsole | db50b03 | 2024-04-24 13:27:00 | [diff] [blame] | 176 | if (!rtc_use_perfetto) { |
| 177 | # Some tests need to declare their own trace event handlers. If this define is |
| 178 | # not set, the first time TRACE_EVENT_* is called it will store the return |
| 179 | # value for the current handler in an static variable, so that subsequent |
| 180 | # changes to the handler for that TRACE_EVENT_* will be ignored. |
| 181 | # So when tests are included, we set this define, making it possible to use |
| 182 | # different event handlers in different tests. |
| 183 | if (rtc_include_tests) { |
| 184 | defines += [ "WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1" ] |
| 185 | } else { |
| 186 | defines += [ "WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=0" ] |
| 187 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 188 | } |
| 189 | if (build_with_chromium) { |
Mirko Bonadei | 8e5014a | 2018-08-02 11:36:10 | [diff] [blame] | 190 | defines += [ "WEBRTC_CHROMIUM_BUILD" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 191 | include_dirs = [ |
| 192 | # The overrides must be included first as that is the mechanism for |
| 193 | # selecting the override headers in Chromium. |
| 194 | "../webrtc_overrides", |
| 195 | |
| 196 | # Allow includes to be prefixed with webrtc/ in case it is not an |
| 197 | # immediate subdirectory of the top-level. |
| 198 | ".", |
Tomas Popela | 762543f | 2018-12-12 13:37:51 | [diff] [blame] | 199 | |
| 200 | # Just like the root WebRTC directory is added to include path, the |
| 201 | # corresponding directory tree with generated files needs to be added too. |
| 202 | # Note: this path does not change depending on the current target, e.g. |
| 203 | # it is always "//gen/third_party/webrtc" when building with Chromium. |
| 204 | # See also: http://cs.chromium.org/?q=%5C"default_include_dirs |
| 205 | # https://gn.googlesource.com/gn/+/master/docs/reference.md#target_gen_dir |
| 206 | target_gen_dir, |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 207 | ] |
| 208 | } |
Fabrice de Gans-Riberi | 09a6cd5 | 2018-03-30 17:38:06 | [diff] [blame] | 209 | if (is_posix || is_fuchsia) { |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 210 | defines += [ "WEBRTC_POSIX" ] |
| 211 | } |
| 212 | if (is_ios) { |
| 213 | defines += [ |
| 214 | "WEBRTC_MAC", |
| 215 | "WEBRTC_IOS", |
| 216 | ] |
| 217 | } |
Hidehiko Abe | f264e70 | 2020-09-10 09:10:11 | [diff] [blame] | 218 | if (is_linux || is_chromeos) { |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 219 | defines += [ "WEBRTC_LINUX" ] |
| 220 | } |
| 221 | if (is_mac) { |
| 222 | defines += [ "WEBRTC_MAC" ] |
| 223 | } |
Sergey Ulanov | 6acefdb | 2017-12-12 01:38:13 | [diff] [blame] | 224 | if (is_fuchsia) { |
| 225 | defines += [ "WEBRTC_FUCHSIA" ] |
| 226 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 227 | if (is_win) { |
Mirko Bonadei | 89a8774 | 2018-04-24 07:12:13 | [diff] [blame] | 228 | defines += [ "WEBRTC_WIN" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 229 | } |
| 230 | if (is_android) { |
| 231 | defines += [ |
| 232 | "WEBRTC_LINUX", |
| 233 | "WEBRTC_ANDROID", |
| 234 | ] |
Dan Minor | 9c68613 | 2018-01-15 15:20:00 | [diff] [blame] | 235 | |
| 236 | if (build_with_mozilla) { |
| 237 | defines += [ "WEBRTC_ANDROID_OPENSLES" ] |
| 238 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 239 | } |
| 240 | if (is_chromeos) { |
| 241 | defines += [ "CHROMEOS" ] |
| 242 | } |
| 243 | |
| 244 | if (rtc_sanitize_coverage != "") { |
| 245 | assert(is_clang, "sanitizer coverage requires clang") |
| 246 | cflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ] |
| 247 | ldflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ] |
| 248 | } |
| 249 | |
| 250 | if (is_ubsan) { |
| 251 | cflags += [ "-fsanitize=float-cast-overflow" ] |
| 252 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 253 | } |
| 254 | |
Mirko Bonadei | 96ede16a | 2018-09-06 11:45:44 | [diff] [blame] | 255 | # TODO(bugs.webrtc.org/9693): Remove the possibility to suppress this warning |
| 256 | # as soon as WebRTC compiles without it. |
Mirko Bonadei | 96ede16a | 2018-09-06 11:45:44 | [diff] [blame] | 257 | config("no_global_constructors") { |
| 258 | if (is_clang) { |
| 259 | cflags = [ "-Wno-global-constructors" ] |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | config("rtc_prod_config") { |
| 264 | # Ideally, WebRTC production code (but not test code) should have these flags. |
| 265 | if (is_clang) { |
| 266 | cflags = [ |
| 267 | "-Wexit-time-destructors", |
| 268 | "-Wglobal-constructors", |
| 269 | ] |
| 270 | } |
| 271 | } |
| 272 | |
Evan Shrubsole | db50b03 | 2024-04-24 13:27:00 | [diff] [blame] | 273 | group("tracing") { |
Evan Shrubsole | cd09858 | 2024-04-30 07:57:49 | [diff] [blame] | 274 | all_dependent_configs = [ "//third_party/perfetto/gn:public_config" ] |
Evan Shrubsole | db50b03 | 2024-04-24 13:27:00 | [diff] [blame] | 275 | if (rtc_use_perfetto) { |
| 276 | if (build_with_chromium) { |
| 277 | public_deps = # no-presubmit-check TODO(webrtc:8603) |
| 278 | [ "//third_party/perfetto:libperfetto" ] |
| 279 | } else { |
Evan Shrubsole | cd09858 | 2024-04-30 07:57:49 | [diff] [blame] | 280 | public_deps = [ # no-presubmit-check TODO(webrtc:8603) |
| 281 | ":webrtc_libperfetto", |
| 282 | "//third_party/perfetto/include/perfetto/tracing", |
| 283 | ] |
Evan Shrubsole | db50b03 | 2024-04-24 13:27:00 | [diff] [blame] | 284 | } |
Evan Shrubsole | cd09858 | 2024-04-30 07:57:49 | [diff] [blame] | 285 | } else { |
| 286 | public_deps = # no-presubmit-check TODO(webrtc:8603) |
| 287 | [ "//third_party/perfetto/include/perfetto/tracing" ] |
Evan Shrubsole | db50b03 | 2024-04-24 13:27:00 | [diff] [blame] | 288 | } |
| 289 | } |
| 290 | |
| 291 | if (rtc_use_perfetto) { |
| 292 | rtc_library("webrtc_libperfetto") { |
Evan Shrubsole | db50b03 | 2024-04-24 13:27:00 | [diff] [blame] | 293 | deps = [ |
| 294 | "//third_party/perfetto/src/tracing:client_api_without_backends", |
| 295 | "//third_party/perfetto/src/tracing:platform_impl", |
| 296 | ] |
Evan Shrubsole | db50b03 | 2024-04-24 13:27:00 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 300 | config("common_config") { |
| 301 | cflags = [] |
Mirko Bonadei | d757356 | 2018-03-19 15:23:48 | [diff] [blame] | 302 | cflags_c = [] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 303 | cflags_cc = [] |
Mirko Bonadei | d757356 | 2018-03-19 15:23:48 | [diff] [blame] | 304 | cflags_objc = [] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 305 | defines = [] |
| 306 | |
| 307 | if (rtc_enable_protobuf) { |
| 308 | defines += [ "WEBRTC_ENABLE_PROTOBUF=1" ] |
| 309 | } else { |
| 310 | defines += [ "WEBRTC_ENABLE_PROTOBUF=0" ] |
| 311 | } |
| 312 | |
Emil Lundmark | 9109e85 | 2023-02-28 12:57:01 | [diff] [blame] | 313 | if (rtc_strict_field_trials == "") { |
Emil Lundmark | 6bf20cc | 2022-09-21 13:20:22 | [diff] [blame] | 314 | defines += [ "WEBRTC_STRICT_FIELD_TRIALS=0" ] |
Emil Lundmark | 9109e85 | 2023-02-28 12:57:01 | [diff] [blame] | 315 | } else if (rtc_strict_field_trials == "dcheck") { |
| 316 | defines += [ "WEBRTC_STRICT_FIELD_TRIALS=1" ] |
| 317 | } else if (rtc_strict_field_trials == "warn") { |
| 318 | defines += [ "WEBRTC_STRICT_FIELD_TRIALS=2" ] |
| 319 | } else { |
| 320 | assert(false, |
| 321 | "Unsupported value for rtc_strict_field_trials: " + |
| 322 | "$rtc_strict_field_trials") |
Emil Lundmark | 6bf20cc | 2022-09-21 13:20:22 | [diff] [blame] | 323 | } |
| 324 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 325 | if (rtc_include_internal_audio_device) { |
| 326 | defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ] |
| 327 | } |
| 328 | |
Mirko Bonadei | 8ef5793 | 2018-11-16 13:38:03 | [diff] [blame] | 329 | if (rtc_libvpx_build_vp9) { |
| 330 | defines += [ "RTC_ENABLE_VP9" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 331 | } |
| 332 | |
qwu16 | ae82df7 | 2023-09-20 05:10:31 | [diff] [blame] | 333 | if (rtc_use_h265) { |
| 334 | defines += [ "RTC_ENABLE_H265" ] |
| 335 | } |
| 336 | |
philipel | b09d872 | 2021-11-23 10:00:24 | [diff] [blame] | 337 | if (rtc_include_dav1d_in_internal_decoder_factory) { |
| 338 | defines += [ "RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY" ] |
| 339 | } |
| 340 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 341 | if (rtc_enable_sctp) { |
Mirko Bonadei | 5eb43b4 | 2021-01-18 12:24:40 | [diff] [blame] | 342 | defines += [ "WEBRTC_HAVE_SCTP" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | if (rtc_enable_external_auth) { |
| 346 | defines += [ "ENABLE_EXTERNAL_AUTH" ] |
| 347 | } |
| 348 | |
Johannes Kron | b76b9ba | 2019-02-08 09:13:25 | [diff] [blame] | 349 | if (rtc_use_h264) { |
| 350 | defines += [ "WEBRTC_USE_H264" ] |
| 351 | } |
| 352 | |
Markus Handell | 8e75bd4 | 2020-06-05 09:47:40 | [diff] [blame] | 353 | if (rtc_use_absl_mutex) { |
| 354 | defines += [ "WEBRTC_ABSL_MUTEX" ] |
| 355 | } |
| 356 | |
Markus Handell | f2827c4 | 2023-09-02 07:41:10 | [diff] [blame] | 357 | if (rtc_enable_libevent) { |
| 358 | defines += [ "WEBRTC_ENABLE_LIBEVENT" ] |
| 359 | } |
| 360 | |
Artem Titov | 6a4a146 | 2019-11-26 15:24:46 | [diff] [blame] | 361 | if (rtc_disable_logging) { |
| 362 | defines += [ "RTC_DISABLE_LOGGING" ] |
| 363 | } |
| 364 | |
Doudou Kisabaka | 2dec496 | 2019-11-28 13:24:31 | [diff] [blame] | 365 | if (rtc_disable_trace_events) { |
| 366 | defines += [ "RTC_DISABLE_TRACE_EVENTS" ] |
| 367 | } |
| 368 | |
Ying Wang | ef3998f | 2019-12-09 12:06:53 | [diff] [blame] | 369 | if (rtc_disable_metrics) { |
| 370 | defines += [ "RTC_DISABLE_METRICS" ] |
| 371 | } |
| 372 | |
Per Åhgren | cc73ed3 | 2020-04-26 21:56:17 | [diff] [blame] | 373 | if (rtc_exclude_audio_processing_module) { |
| 374 | defines += [ "WEBRTC_EXCLUDE_AUDIO_PROCESSING_MODULE" ] |
| 375 | } |
| 376 | |
Peter Kasting | 47126fa | 2021-09-28 17:08:54 | [diff] [blame] | 377 | if (is_clang) { |
Mirko Bonadei | ce03028 | 2022-09-01 16:19:42 | [diff] [blame] | 378 | cflags += [ |
| 379 | # TODO(webrtc:13219): Fix -Wshadow instances and enable. |
| 380 | "-Wno-shadow", |
| 381 | |
| 382 | # See https://reviews.llvm.org/D56731 for details about this |
| 383 | # warning. |
| 384 | "-Wctad-maybe-unsupported", |
| 385 | ] |
Peter Kasting | 47126fa | 2021-09-28 17:08:54 | [diff] [blame] | 386 | } |
Mirko Bonadei | cee5417 | 2019-12-05 14:30:14 | [diff] [blame] | 387 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 388 | if (build_with_chromium) { |
| 389 | defines += [ |
| 390 | # NOTICE: Since common_inherited_config is used in public_configs for our |
| 391 | # targets, there's no point including the defines in that config here. |
| 392 | # TODO(kjellander): Cleanup unused ones and move defines closer to the |
| 393 | # source when webrtc:4256 is completed. |
| 394 | "HAVE_WEBRTC_VIDEO", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 395 | "LOGGING_INSIDE_WEBRTC", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 396 | ] |
| 397 | } else { |
Fabrice de Gans-Riberi | 09a6cd5 | 2018-03-30 17:38:06 | [diff] [blame] | 398 | if (is_posix || is_fuchsia) { |
Mirko Bonadei | d757356 | 2018-03-19 15:23:48 | [diff] [blame] | 399 | cflags_c += [ |
| 400 | # TODO(bugs.webrtc.org/9029): enable commented compiler flags. |
| 401 | # Some of these flags should also be added to cflags_objc. |
| 402 | |
| 403 | # "-Wextra", (used when building C++ but not when building C) |
| 404 | # "-Wmissing-prototypes", (C/Obj-C only) |
| 405 | # "-Wmissing-declarations", (ensure this is always used C/C++, etc..) |
| 406 | "-Wstrict-prototypes", |
| 407 | |
| 408 | # "-Wpointer-arith", (ensure this is always used C/C++, etc..) |
| 409 | # "-Wbad-function-cast", (C/Obj-C only) |
| 410 | # "-Wnested-externs", (C/Obj-C only) |
| 411 | ] |
| 412 | cflags_objc += [ "-Wstrict-prototypes" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 413 | cflags_cc = [ |
| 414 | "-Wnon-virtual-dtor", |
| 415 | |
| 416 | # This is enabled for clang; enable for gcc as well. |
| 417 | "-Woverloaded-virtual", |
| 418 | ] |
| 419 | } |
| 420 | |
| 421 | if (is_clang) { |
Philipp Hancke | 0fe3a61 | 2024-09-17 19:04:22 | [diff] [blame] | 422 | cflags += [ |
| 423 | "-Wc++11-narrowing", |
| 424 | "-Wundef", |
| 425 | "-Wunused-lambda-capture", |
| 426 | ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 427 | } |
Mirko Bonadei | e7659df | 2018-05-16 09:50:40 | [diff] [blame] | 428 | |
| 429 | if (is_win && !is_clang) { |
| 430 | # MSVC warning suppressions (needed to use Abseil). |
| 431 | # TODO(bugs.webrtc.org/9274): Remove these warnings as soon as MSVC allows |
| 432 | # external headers warning suppression (or fix them upstream). |
| 433 | cflags += [ "/wd4702" ] # unreachable code |
Jerome Humbert | 3e3c551 | 2020-01-13 11:58:26 | [diff] [blame] | 434 | |
| 435 | # MSVC 2019 warning suppressions for C++17 compiling |
Patrik Höglund | 83245bd | 2020-01-30 08:33:57 | [diff] [blame] | 436 | cflags += |
| 437 | [ "/wd5041" ] # out-of-line definition for constexpr static data |
| 438 | # member is not needed and is deprecated in C++17 |
Mirko Bonadei | e7659df | 2018-05-16 09:50:40 | [diff] [blame] | 439 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | if (current_cpu == "arm64") { |
| 443 | defines += [ "WEBRTC_ARCH_ARM64" ] |
| 444 | defines += [ "WEBRTC_HAS_NEON" ] |
| 445 | } |
| 446 | |
| 447 | if (current_cpu == "arm") { |
| 448 | defines += [ "WEBRTC_ARCH_ARM" ] |
| 449 | if (arm_version >= 7) { |
| 450 | defines += [ "WEBRTC_ARCH_ARM_V7" ] |
| 451 | if (arm_use_neon) { |
| 452 | defines += [ "WEBRTC_HAS_NEON" ] |
| 453 | } |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | if (current_cpu == "mipsel") { |
| 458 | defines += [ "MIPS32_LE" ] |
| 459 | if (mips_float_abi == "hard") { |
| 460 | defines += [ "MIPS_FPU_LE" ] |
| 461 | } |
| 462 | if (mips_arch_variant == "r2") { |
| 463 | defines += [ "MIPS32_R2_LE" ] |
| 464 | } |
| 465 | if (mips_dsp_rev == 1) { |
| 466 | defines += [ "MIPS_DSP_R1_LE" ] |
| 467 | } else if (mips_dsp_rev == 2) { |
| 468 | defines += [ |
| 469 | "MIPS_DSP_R1_LE", |
| 470 | "MIPS_DSP_R2_LE", |
| 471 | ] |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | if (is_android && !is_clang) { |
| 476 | # The Android NDK doesn"t provide optimized versions of these |
| 477 | # functions. Ensure they are disabled for all compilers. |
| 478 | cflags += [ |
| 479 | "-fno-builtin-cos", |
| 480 | "-fno-builtin-sin", |
| 481 | "-fno-builtin-cosf", |
| 482 | "-fno-builtin-sinf", |
| 483 | ] |
| 484 | } |
| 485 | |
Greg Thompson | 6fc4d97 | 2023-09-19 10:15:03 | [diff] [blame] | 486 | if (use_fuzzing_engine) { |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 487 | # Used in Chromium's overrides to disable logging |
| 488 | defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ] |
| 489 | } |
Mirko Bonadei | 20574f4 | 2019-03-28 06:50:07 | [diff] [blame] | 490 | |
| 491 | if (!build_with_chromium && rtc_win_undef_unicode) { |
| 492 | cflags += [ |
| 493 | "/UUNICODE", |
| 494 | "/U_UNICODE", |
| 495 | ] |
| 496 | } |
Evan Shrubsole | db50b03 | 2024-04-24 13:27:00 | [diff] [blame] | 497 | |
| 498 | if (rtc_use_perfetto) { |
| 499 | defines += [ "RTC_USE_PERFETTO" ] |
| 500 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | config("common_objc") { |
Sylvain Defresne | c7f0dff | 2020-07-03 08:19:30 | [diff] [blame] | 504 | frameworks = [ "Foundation.framework" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 505 | } |
| 506 | |
Philipp Hancke | 06a49f0 | 2024-08-22 18:52:33 | [diff] [blame] | 507 | if (!rtc_build_ssl) { |
| 508 | config("external_ssl_library") { |
| 509 | if (rtc_ssl_root != "") { |
| 510 | include_dirs = [ rtc_ssl_root ] |
| 511 | } |
| 512 | libs = [ |
| 513 | "crypto", |
| 514 | "ssl", |
| 515 | ] |
| 516 | } |
| 517 | } |
| 518 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 519 | if (!build_with_chromium) { |
| 520 | # Target to build all the WebRTC production code. |
| 521 | rtc_static_library("webrtc") { |
Patrik Höglund | eeb79e9 | 2019-10-17 14:04:07 | [diff] [blame] | 522 | # Only the root target and the test should depend on this. |
| 523 | visibility = [ |
| 524 | "//:default", |
| 525 | "//:webrtc_lib_link_test", |
| 526 | ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 527 | |
| 528 | sources = [] |
| 529 | complete_static_lib = true |
Oleh Prypin | d2f4e8b | 2018-08-01 10:18:05 | [diff] [blame] | 530 | suppressed_configs += [ "//build/config/compiler:thin_archive" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 531 | defines = [] |
| 532 | |
| 533 | deps = [ |
Mirko Bonadei | ba700de | 2019-10-10 07:23:22 | [diff] [blame] | 534 | "api:create_peerconnection_factory", |
Danil Chapovalov | b29ff00 | 2023-11-02 18:18:04 | [diff] [blame] | 535 | "api:enable_media", |
Yves Gerey | 06f6bc9 | 2018-11-09 09:22:52 | [diff] [blame] | 536 | "api:libjingle_peerconnection_api", |
Mirko Bonadei | eaaaf41 | 2019-09-13 12:42:15 | [diff] [blame] | 537 | "api:rtc_error", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 538 | "api:transport_api", |
Patrick Reynolds | f654998 | 2024-08-20 03:20:33 | [diff] [blame] | 539 | "api/audio_codecs:opus_audio_decoder_factory", |
Mirko Bonadei | eaaaf41 | 2019-09-13 12:42:15 | [diff] [blame] | 540 | "api/crypto", |
Danil Chapovalov | 4ba04b7 | 2019-06-26 13:49:47 | [diff] [blame] | 541 | "api/rtc_event_log:rtc_event_log_factory", |
Mirko Bonadei | ba700de | 2019-10-10 07:23:22 | [diff] [blame] | 542 | "api/task_queue", |
| 543 | "api/task_queue:default_task_queue_factory", |
Artem Titov | c898c82 | 2022-09-14 11:14:02 | [diff] [blame] | 544 | "api/test/metrics", |
philipel | 2b00c4e | 2023-03-31 15:20:40 | [diff] [blame] | 545 | "api/video_codecs:video_decoder_factory_template", |
| 546 | "api/video_codecs:video_decoder_factory_template_dav1d_adapter", |
| 547 | "api/video_codecs:video_decoder_factory_template_libvpx_vp8_adapter", |
| 548 | "api/video_codecs:video_decoder_factory_template_libvpx_vp9_adapter", |
| 549 | "api/video_codecs:video_decoder_factory_template_open_h264_adapter", |
| 550 | "api/video_codecs:video_encoder_factory_template", |
| 551 | "api/video_codecs:video_encoder_factory_template_libaom_av1_adapter", |
| 552 | "api/video_codecs:video_encoder_factory_template_libvpx_vp8_adapter", |
| 553 | "api/video_codecs:video_encoder_factory_template_libvpx_vp9_adapter", |
| 554 | "api/video_codecs:video_encoder_factory_template_open_h264_adapter", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 555 | "audio", |
| 556 | "call", |
| 557 | "common_audio", |
| 558 | "common_video", |
Yves Gerey | 06f6bc9 | 2018-11-09 09:22:52 | [diff] [blame] | 559 | "logging:rtc_event_log_api", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 560 | "media", |
| 561 | "modules", |
| 562 | "modules/video_capture:video_capture_internal_impl", |
Yves Gerey | 06f6bc9 | 2018-11-09 09:22:52 | [diff] [blame] | 563 | "p2p:rtc_p2p", |
| 564 | "pc:libjingle_peerconnection", |
Yves Gerey | 06f6bc9 | 2018-11-09 09:22:52 | [diff] [blame] | 565 | "pc:rtc_pc", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 566 | "sdk", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 567 | "video", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 568 | ] |
| 569 | |
Jiawei Ou | 0874530 | 2019-02-12 19:36:13 | [diff] [blame] | 570 | if (rtc_include_builtin_audio_codecs) { |
| 571 | deps += [ |
| 572 | "api/audio_codecs:builtin_audio_decoder_factory", |
| 573 | "api/audio_codecs:builtin_audio_encoder_factory", |
| 574 | ] |
| 575 | } |
| 576 | |
Dan Minor | 9c68613 | 2018-01-15 15:20:00 | [diff] [blame] | 577 | if (build_with_mozilla) { |
Chen Xing | 5d24b16 | 2019-06-10 10:59:38 | [diff] [blame] | 578 | deps += [ |
| 579 | "api/video:video_frame", |
| 580 | "api/video:video_rtp_headers", |
| 581 | ] |
Dan Minor | 9c68613 | 2018-01-15 15:20:00 | [diff] [blame] | 582 | } else { |
| 583 | deps += [ |
| 584 | "api", |
| 585 | "logging", |
| 586 | "p2p", |
| 587 | "pc", |
| 588 | "stats", |
| 589 | ] |
| 590 | } |
| 591 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 592 | if (rtc_enable_protobuf) { |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 593 | deps += [ "logging:rtc_event_log_proto" ] |
| 594 | } |
| 595 | } |
Patrik Höglund | eeb79e9 | 2019-10-17 14:04:07 | [diff] [blame] | 596 | |
Mirko Bonadei | c69fd59 | 2020-03-10 14:35:38 | [diff] [blame] | 597 | if (rtc_include_tests && !is_asan) { |
Patrik Höglund | 2167163 | 2019-10-18 06:04:19 | [diff] [blame] | 598 | rtc_executable("webrtc_lib_link_test") { |
Patrik Höglund | eeb79e9 | 2019-10-17 14:04:07 | [diff] [blame] | 599 | testonly = true |
| 600 | |
Byoungchan Lee | 8ed1e93 | 2021-05-20 09:30:10 | [diff] [blame] | 601 | # This target is used for checking to link, so do not check dependencies |
| 602 | # on gn check. |
| 603 | check_includes = false # no-presubmit-check TODO(bugs.webrtc.org/12785) |
| 604 | |
Mirko Bonadei | ccbe95f | 2020-01-21 11:10:10 | [diff] [blame] | 605 | sources = [ "webrtc_lib_link_test.cc" ] |
Patrik Höglund | eeb79e9 | 2019-10-17 14:04:07 | [diff] [blame] | 606 | deps = [ |
Patrik Höglund | 2167163 | 2019-10-18 06:04:19 | [diff] [blame] | 607 | # NOTE: Don't add deps here. If this test fails to link, it means you |
| 608 | # need to add stuff to the webrtc static lib target above. |
Patrik Höglund | eeb79e9 | 2019-10-17 14:04:07 | [diff] [blame] | 609 | ":webrtc", |
Patrik Höglund | eeb79e9 | 2019-10-17 14:04:07 | [diff] [blame] | 610 | ] |
| 611 | } |
| 612 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 613 | } |
| 614 | |
Nico Weber | df644be | 2019-03-18 01:06:11 | [diff] [blame] | 615 | if (use_libfuzzer || use_afl) { |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 616 | # This target is only here for gn to discover fuzzer build targets under |
| 617 | # webrtc/test/fuzzers/. |
| 618 | group("webrtc_fuzzers_dummy") { |
| 619 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 11:10:10 | [diff] [blame] | 620 | deps = [ "test/fuzzers:webrtc_fuzzer_main" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 621 | } |
| 622 | } |
| 623 | |
Andrey Logvin | e7c79fd | 2021-02-01 09:56:37 | [diff] [blame] | 624 | if (rtc_include_tests && !build_with_chromium) { |
philipel | b85b4c0 | 2024-04-24 14:31:58 | [diff] [blame] | 625 | rtc_unittests_resources = [ "resources/reference_video_640x360_30fps.y4m" ] |
| 626 | |
| 627 | if (is_ios) { |
| 628 | bundle_data("rtc_unittests_bundle_data") { |
| 629 | testonly = true |
| 630 | sources = rtc_unittests_resources |
| 631 | outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ] |
| 632 | } |
| 633 | } |
| 634 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 635 | rtc_test("rtc_unittests") { |
| 636 | testonly = true |
| 637 | |
| 638 | deps = [ |
Harald Alvestrand | 3cc45d4 | 2019-03-14 04:42:04 | [diff] [blame] | 639 | "api:compile_all_headers", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 640 | "api:rtc_api_unittests", |
Fredrik Solenberg | bbf21a3 | 2018-04-12 20:44:09 | [diff] [blame] | 641 | "api/audio/test:audio_api_unittests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 642 | "api/audio_codecs/test:audio_codecs_api_unittests", |
Artem Titov | 9d77762 | 2020-09-18 16:23:08 | [diff] [blame] | 643 | "api/numerics:numerics_unittests", |
Artem Titov | c374d11 | 2022-06-16 19:27:45 | [diff] [blame] | 644 | "api/task_queue:pending_task_safety_flag_unittests", |
Artem Titov | 27f91af | 2022-09-16 22:12:19 | [diff] [blame] | 645 | "api/test/metrics:metrics_unittests", |
Patrik Höglund | 56d9452 | 2019-11-18 14:53:32 | [diff] [blame] | 646 | "api/transport:stun_unittest", |
Stefan Holmer | f704468 | 2018-07-17 08:16:41 | [diff] [blame] | 647 | "api/video/test:rtc_api_video_unittests", |
philipel | b85b4c0 | 2024-04-24 14:31:58 | [diff] [blame] | 648 | "api/video_codecs:libaom_av1_encoder_factory_test", |
| 649 | "api/video_codecs:simple_encoder_wrapper_unittests", |
Anders Carlsson | dd3e0ab | 2018-06-12 09:15:56 | [diff] [blame] | 650 | "api/video_codecs/test:video_codecs_api_unittests", |
Tim Na | 76bbc98 | 2021-01-28 18:52:38 | [diff] [blame] | 651 | "api/voip:compile_all_headers", |
Sebastian Jansson | 487c09b | 2019-02-21 15:21:51 | [diff] [blame] | 652 | "call:fake_network_pipe_unittests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 653 | "p2p:libstunprober_unittests", |
| 654 | "p2p:rtc_p2p_unittests", |
Harald Alvestrand | 8d4a5f1 | 2023-08-22 13:53:16 | [diff] [blame] | 655 | "rtc_base:async_dns_resolver_unittests", |
Per K | 4ac3718 | 2023-11-15 09:43:32 | [diff] [blame] | 656 | "rtc_base:async_packet_socket_unittest", |
Mirko Bonadei | 3d25935 | 2020-10-23 10:04:40 | [diff] [blame] | 657 | "rtc_base:callback_list_unittests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 658 | "rtc_base:rtc_base_approved_unittests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 659 | "rtc_base:rtc_base_unittests", |
Sam Zackrisson | b45bdb5 | 2018-10-02 14:25:59 | [diff] [blame] | 660 | "rtc_base:rtc_json_unittests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 661 | "rtc_base:rtc_numerics_unittests", |
Henrik Boström | 27c2936 | 2019-10-21 13:21:55 | [diff] [blame] | 662 | "rtc_base:rtc_operations_chain_unittests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 663 | "rtc_base:rtc_task_queue_unittests", |
Artem Titov | e41c433 | 2018-07-25 13:04:28 | [diff] [blame] | 664 | "rtc_base:sigslot_unittest", |
Markus Handell | 82da932 | 2022-12-16 14:50:24 | [diff] [blame] | 665 | "rtc_base:task_queue_stdlib_unittest", |
Karl Wiberg | 70026f9 | 2020-09-18 08:03:16 | [diff] [blame] | 666 | "rtc_base:untyped_function_unittest", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 667 | "rtc_base:weak_ptr_unittests", |
Sebastian Jansson | 2808ae9 | 2018-04-09 09:13:04 | [diff] [blame] | 668 | "rtc_base/experiments:experiments_unittests", |
Björn Terelius | cbd6156 | 2021-03-25 14:52:16 | [diff] [blame] | 669 | "rtc_base/system:file_wrapper_unittests", |
Evan Shrubsole | 45448e9 | 2021-11-15 16:27:44 | [diff] [blame] | 670 | "rtc_base/task_utils:repeating_task_unittests", |
Evan Shrubsole | 21e97f9 | 2022-01-11 12:50:00 | [diff] [blame] | 671 | "rtc_base/units:units_unittests", |
Niels Möller | dac03d9 | 2019-02-13 07:52:27 | [diff] [blame] | 672 | "sdk:sdk_tests", |
Tommi | 25eb47c | 2019-08-29 14:39:05 | [diff] [blame] | 673 | "test:rtp_test_utils", |
Niels Möller | 04a3cc1 | 2019-05-21 11:01:58 | [diff] [blame] | 674 | "test:test_main", |
Artem Titov | 386802e | 2019-07-05 08:48:17 | [diff] [blame] | 675 | "test/network:network_emulation_unittests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 676 | ] |
| 677 | |
philipel | b85b4c0 | 2024-04-24 14:31:58 | [diff] [blame] | 678 | data = rtc_unittests_resources |
| 679 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 680 | if (rtc_enable_protobuf) { |
Per Kjellander | a0d1a51 | 2024-05-29 10:33:21 | [diff] [blame] | 681 | deps += [ |
| 682 | "api/test/network_emulation:network_config_schedule_proto", |
| 683 | "logging:rtc_event_log_tests", |
| 684 | ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 685 | } |
| 686 | |
philipel | b85b4c0 | 2024-04-24 14:31:58 | [diff] [blame] | 687 | if (is_ios) { |
| 688 | deps += [ ":rtc_unittests_bundle_data" ] |
| 689 | } |
| 690 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 691 | if (is_android) { |
Sami Kalliomäki | 78498cf | 2018-02-07 15:59:33 | [diff] [blame] | 692 | # Do not use Chromium's launcher. native_unittests defines its own JNI_OnLoad. |
| 693 | use_default_launcher = false |
| 694 | |
| 695 | deps += [ |
| 696 | "sdk/android:native_unittests", |
| 697 | "sdk/android:native_unittests_java", |
| 698 | "//testing/android/native_test:native_test_support", |
| 699 | ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 700 | shard_timeout = 900 |
| 701 | } |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 702 | } |
| 703 | |
Peter Kasting | 049f5ef | 2023-03-14 16:56:25 | [diff] [blame] | 704 | if (rtc_enable_google_benchmarks) { |
Andrey Logvin | 5e227ab | 2021-01-29 10:34:55 | [diff] [blame] | 705 | rtc_test("benchmarks") { |
| 706 | testonly = true |
| 707 | deps = [ |
| 708 | "rtc_base/synchronization:mutex_benchmark", |
| 709 | "test:benchmark_main", |
| 710 | ] |
| 711 | } |
Markus Handell | f70fbc8 | 2020-06-03 22:41:20 | [diff] [blame] | 712 | } |
| 713 | |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 714 | # TODO(pbos): Rename test suite, this is no longer "just" for video targets. |
| 715 | video_engine_tests_resources = [ |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 716 | "resources/foreman_cif_short.yuv", |
| 717 | "resources/voice_engine/audio_long16.pcm", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 718 | ] |
| 719 | |
| 720 | if (is_ios) { |
| 721 | bundle_data("video_engine_tests_bundle_data") { |
| 722 | testonly = true |
| 723 | sources = video_engine_tests_resources |
Mirko Bonadei | ccbe95f | 2020-01-21 11:10:10 | [diff] [blame] | 724 | outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 725 | } |
| 726 | } |
| 727 | |
| 728 | rtc_test("video_engine_tests") { |
| 729 | testonly = true |
| 730 | deps = [ |
| 731 | "audio:audio_tests", |
| 732 | |
| 733 | # TODO(eladalon): call_tests aren't actually video-specific, so we |
| 734 | # should move them to a more appropriate test suite. |
| 735 | "call:call_tests", |
Henrik Boström | b04b2a1 | 2019-12-10 13:14:09 | [diff] [blame] | 736 | "call/adaptation:resource_adaptation_tests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 737 | "test:test_common", |
| 738 | "test:test_main", |
| 739 | "test:video_test_common", |
| 740 | "video:video_tests", |
Henrik Boström | efbec9a | 2020-03-06 09:41:25 | [diff] [blame] | 741 | "video/adaptation:video_adaptation_tests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 742 | ] |
| 743 | data = video_engine_tests_resources |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 744 | if (is_android) { |
Björn Terelius | 0c68a7a | 2022-04-19 13:32:37 | [diff] [blame] | 745 | use_default_launcher = false |
| 746 | deps += [ |
| 747 | "//build/android/gtest_apk:native_test_instrumentation_test_runner_java", |
| 748 | "//testing/android/native_test:native_test_java", |
| 749 | "//testing/android/native_test:native_test_support", |
| 750 | ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 751 | shard_timeout = 900 |
| 752 | } |
| 753 | if (is_ios) { |
| 754 | deps += [ ":video_engine_tests_bundle_data" ] |
| 755 | } |
| 756 | } |
| 757 | |
| 758 | webrtc_perf_tests_resources = [ |
Natalie Chouinard | 65bbcab | 2019-12-23 22:02:25 | [diff] [blame] | 759 | "resources/ConferenceMotion_1280_720_50.yuv", |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 760 | "resources/audio_coding/speech_mono_16kHz.pcm", |
| 761 | "resources/audio_coding/speech_mono_32_48kHz.pcm", |
| 762 | "resources/audio_coding/testfile32kHz.pcm", |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 763 | "resources/difficult_photo_1850_1110.yuv", |
| 764 | "resources/foreman_cif.yuv", |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 765 | "resources/paris_qcif.yuv", |
| 766 | "resources/photo_1850_1110.yuv", |
| 767 | "resources/presentation_1850_1110.yuv", |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 768 | "resources/voice_engine/audio_long16.pcm", |
| 769 | "resources/web_screenshot_1850_1110.yuv", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 770 | ] |
| 771 | |
| 772 | if (is_ios) { |
| 773 | bundle_data("webrtc_perf_tests_bundle_data") { |
| 774 | testonly = true |
| 775 | sources = webrtc_perf_tests_resources |
Mirko Bonadei | ccbe95f | 2020-01-21 11:10:10 | [diff] [blame] | 776 | outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 777 | } |
| 778 | } |
| 779 | |
| 780 | rtc_test("webrtc_perf_tests") { |
| 781 | testonly = true |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 782 | deps = [ |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 783 | "call:call_perf_tests", |
| 784 | "modules/audio_coding:audio_coding_perf_tests", |
| 785 | "modules/audio_processing:audio_processing_perf_tests", |
Seth Hampson | d1003d7 | 2018-06-22 22:40:16 | [diff] [blame] | 786 | "pc:peerconnection_perf_tests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 787 | "test:test_main", |
| 788 | "video:video_full_stack_tests", |
Artem Titov | 137f6c8 | 2019-05-17 08:51:15 | [diff] [blame] | 789 | "video:video_pc_full_stack_tests", |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 790 | ] |
| 791 | |
Artem Titarenko | 01d04fa | 2019-07-12 09:19:54 | [diff] [blame] | 792 | data = webrtc_perf_tests_resources |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 793 | if (is_android) { |
Björn Terelius | 0c68a7a | 2022-04-19 13:32:37 | [diff] [blame] | 794 | use_default_launcher = false |
| 795 | deps += [ |
| 796 | "//build/android/gtest_apk:native_test_instrumentation_test_runner_java", |
| 797 | "//testing/android/native_test:native_test_java", |
| 798 | "//testing/android/native_test:native_test_support", |
| 799 | ] |
Oleh Prypin | 2aa0379 | 2018-12-13 07:48:13 | [diff] [blame] | 800 | shard_timeout = 4500 |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 801 | } |
| 802 | if (is_ios) { |
| 803 | deps += [ ":webrtc_perf_tests_bundle_data" ] |
| 804 | } |
| 805 | } |
| 806 | |
| 807 | rtc_test("webrtc_nonparallel_tests") { |
| 808 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 11:10:10 | [diff] [blame] | 809 | deps = [ "rtc_base:rtc_base_nonparallel_tests" ] |
Mirko Bonadei | bb54720 | 2017-09-15 04:15:48 | [diff] [blame] | 810 | if (is_android) { |
| 811 | deps += [ "//testing/android/native_test:native_test_support" ] |
| 812 | shard_timeout = 900 |
| 813 | } |
| 814 | } |
Tim Na | 8ab3c77 | 2020-03-27 00:16:51 | [diff] [blame] | 815 | |
| 816 | rtc_test("voip_unittests") { |
| 817 | testonly = true |
| 818 | deps = [ |
Tim Na | 76bbc98 | 2021-01-28 18:52:38 | [diff] [blame] | 819 | "api/voip:compile_all_headers", |
Tim Na | c0df5fc | 2020-05-05 18:03:54 | [diff] [blame] | 820 | "api/voip:voip_engine_factory_unittests", |
| 821 | "audio/voip/test:audio_channel_unittests", |
Tim Na | 8ab3c77 | 2020-03-27 00:16:51 | [diff] [blame] | 822 | "audio/voip/test:audio_egress_unittests", |
Tim Na | 11f92bc | 2020-04-21 16:39:25 | [diff] [blame] | 823 | "audio/voip/test:audio_ingress_unittests", |
Tim Na | c0df5fc | 2020-05-05 18:03:54 | [diff] [blame] | 824 | "audio/voip/test:voip_core_unittests", |
Tim Na | 8ab3c77 | 2020-03-27 00:16:51 | [diff] [blame] | 825 | "test:test_main", |
| 826 | ] |
| 827 | } |
wjia@webrtc.org | 03cfde2 | 2014-01-14 17:48:34 | [diff] [blame] | 828 | } |
Karl Wiberg | bb23c83 | 2018-04-22 17:55:00 | [diff] [blame] | 829 | |
Philipp Hancke | c128277 | 2021-11-24 07:18:31 | [diff] [blame] | 830 | # Build target for standalone dcsctp |
| 831 | rtc_static_library("dcsctp") { |
| 832 | # Only the root target should depend on this. |
| 833 | visibility = [ "//:default" ] |
| 834 | sources = [] |
| 835 | complete_static_lib = true |
| 836 | suppressed_configs += [ "//build/config/compiler:thin_archive" ] |
| 837 | defines = [] |
| 838 | deps = [ |
| 839 | "net/dcsctp/public:factory", |
| 840 | "net/dcsctp/public:socket", |
| 841 | "net/dcsctp/public:types", |
| 842 | "net/dcsctp/socket:dcsctp_socket", |
| 843 | "net/dcsctp/timer:task_queue_timeout", |
Philipp Hancke | c128277 | 2021-11-24 07:18:31 | [diff] [blame] | 844 | ] |
| 845 | } |
| 846 | |
Karl Wiberg | bb23c83 | 2018-04-22 17:55:00 | [diff] [blame] | 847 | # ---- Poisons ---- |
| 848 | # |
| 849 | # Here is one empty dummy target for each poison type (needed because |
| 850 | # "being poisonous with poison type foo" is implemented as "depends on |
| 851 | # //:poison_foo"). |
| 852 | # |
| 853 | # The set of poison_* targets needs to be kept in sync with the |
| 854 | # `all_poison_types` list in webrtc.gni. |
| 855 | # |
| 856 | group("poison_audio_codecs") { |
| 857 | } |
Anders Carlsson | 1f433e4 | 2018-04-24 14:39:05 | [diff] [blame] | 858 | |
Danil Chapovalov | 9fdceb8 | 2023-11-27 09:57:22 | [diff] [blame] | 859 | group("poison_default_echo_detector") { |
Anders Carlsson | 1f433e4 | 2018-04-24 14:39:05 | [diff] [blame] | 860 | } |
Danil Chapovalov | 41300af | 2019-07-10 10:44:43 | [diff] [blame] | 861 | |
Danil Chapovalov | 9fdceb8 | 2023-11-27 09:57:22 | [diff] [blame] | 862 | group("poison_environment_construction") { |
Sam Zackrisson | 03cb7e5 | 2021-12-06 14:40:04 | [diff] [blame] | 863 | } |
| 864 | |
Sam Zackrisson | 492fdf4 | 2019-10-25 08:45:58 | [diff] [blame] | 865 | group("poison_software_video_codecs") { |
Danil Chapovalov | 41300af | 2019-07-10 10:44:43 | [diff] [blame] | 866 | } |