blob: 7c8a0fcb1e98a6d6e7ec2fdee92f54262de459a2 [file] [log] [blame]
wjia@webrtc.org03cfde22014-01-14 17:48:341# 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öglund29dd6d72017-12-01 10:35:269# 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 Alvestrande47493b2022-02-15 12:45:0215# 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 Bonadeibb547202017-09-15 04:15:4824import("//build/config/linux/pkg_config.gni")
25import("//build/config/sanitizers/sanitizers.gni")
26import("webrtc.gni")
Kimmo Kinnunen08f6a6c2019-02-26 09:46:1727if (rtc_enable_protobuf) {
Dan Minor9c686132018-01-15 15:20:0028 import("//third_party/protobuf/proto_library.gni")
29}
Mirko Bonadeibb547202017-09-15 04:15:4830if (is_android) {
31 import("//build/config/android/config.gni")
32 import("//build/config/android/rules.gni")
Jeremy Leconte2e7ed0d2023-09-19 08:09:0633 import("//third_party/jni_zero/jni_zero.gni")
Mirko Bonadeibb547202017-09-15 04:15:4834}
ehmaldonado37d7a222016-11-08 14:34:2035
Mirko Bonadeibb547202017-09-15 04:15:4836if (!build_with_chromium) {
Patrik Höglund29dd6d72017-12-01 10:35:2637 # 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 Bonadeibb547202017-09-15 04:15:4839 group("default") {
40 testonly = true
Mirko Bonadeiccbe95f2020-01-21 11:10:1041 deps = [ ":webrtc" ]
Joachim Bauch93e91342017-12-07 00:25:5342 if (rtc_build_examples) {
43 deps += [ "examples" ]
44 }
45 if (rtc_build_tools) {
46 deps += [ "rtc_tools" ]
47 }
Mirko Bonadeibb547202017-09-15 04:15:4848 if (rtc_include_tests) {
Patrik Höglund29dd6d72017-12-01 10:35:2649 deps += [
50 ":rtc_unittests",
51 ":video_engine_tests",
Tim Na8ab3c772020-03-27 00:16:5152 ":voip_unittests",
Patrik Höglund29dd6d72017-12-01 10:35:2653 ":webrtc_nonparallel_tests",
54 ":webrtc_perf_tests",
55 "common_audio:common_audio_unittests",
56 "common_video:common_video_unittests",
Niels Möller9862c2e2018-10-30 11:20:0357 "examples:examples_unittests",
Patrik Höglund29dd6d72017-12-01 10:35:2658 "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 Bonadei79e4c922019-07-08 09:52:2463 "modules/remote_bitrate_estimator:rtp_to_text",
Patrik Höglund29dd6d72017-12-01 10:35:2664 "modules/rtp_rtcp:test_packet_masks_metrics",
65 "modules/video_capture:video_capture_internal_impl",
Sergey Silkin03281902023-05-19 09:10:1566 "modules/video_coding:video_codec_perf_tests",
Victor Boivie7d3c49a2021-03-25 12:11:0367 "net/dcsctp:dcsctp_unittests",
Patrik Höglund29dd6d72017-12-01 10:35:2668 "pc:peerconnection_unittests",
69 "pc:rtc_pc_unittests",
Harald Alvestrandf8f7b702022-05-05 13:21:1970 "pc:slow_peer_connection_unittests",
Florent Castelli90b74382022-04-25 15:28:0071 "pc:svc_tests",
Ilya Nikolaevskiyb41d5f12019-07-18 07:59:2572 "rtc_tools:rtp_generator",
Philipp Hanckee4e33b82023-06-14 14:55:5473 "rtc_tools:video_encoder",
Mirko Bonadeid4c3c3a2020-02-07 09:02:3174 "rtc_tools:video_replay",
Patrik Höglund29dd6d72017-12-01 10:35:2675 "stats:rtc_stats_unittests",
76 "system_wrappers:system_wrappers_unittests",
77 "test",
78 "video:screenshare_loopback",
Ilya Nikolaevskiy255d1cd2017-12-21 17:02:5979 "video:sv_loopback",
Patrik Höglund29dd6d72017-12-01 10:35:2680 "video:video_loopback",
Patrik Höglund29dd6d72017-12-01 10:35:2681 ]
Mirko Bonadei6adb0a22019-10-23 14:55:0482 if (!is_asan) {
83 # Do not build :webrtc_lib_link_test because lld complains on some OS
84 # (e.g. when target_os = "mac") when is_asan=true. For more details,
85 # see bugs.webrtc.org/11027#c5.
86 deps += [ ":webrtc_lib_link_test" ]
87 }
Jeremy Leconte251eca22022-03-04 04:39:0488 if (is_ios) {
89 deps += [
90 "examples:apprtcmobile_tests",
91 "sdk:sdk_framework_unittests",
92 "sdk:sdk_unittests",
93 ]
94 }
Patrik Höglund29dd6d72017-12-01 10:35:2695 if (is_android) {
96 deps += [
Mirko Bonadei73aa2de2020-01-20 14:28:5797 "examples:android_examples_junit_tests",
Sami Kalliomäkid54f5f52018-08-03 11:23:0598 "sdk/android:android_instrumentation_test_apk",
Mirko Bonadeiccbe95f2020-01-21 11:10:1099 "sdk/android:android_sdk_junit_tests",
Patrik Höglund29dd6d72017-12-01 10:35:26100 ]
101 } else {
102 deps += [ "modules/video_capture:video_capture_tests" ]
103 }
104 if (rtc_enable_protobuf) {
105 deps += [
Mirko Bonadeiab0b9d42019-07-08 10:31:59106 "logging:rtc_event_log_rtp_dump",
Patrik Höglund83245bd2020-01-30 08:33:57107 "tools_webrtc/perf:webrtc_dashboard_upload",
Patrik Höglund29dd6d72017-12-01 10:35:26108 ]
109 }
Jan Grulich1264dc12022-10-18 12:27:17110 if ((is_linux || is_chromeos) && rtc_use_pipewire) {
111 deps += [ "modules/desktop_capture:shared_screencast_stream_test" ]
112 }
Mirko Bonadeibb547202017-09-15 04:15:48113 }
Mirko Bonadeib9857482020-12-14 14:28:43114 if (target_os == "android") {
115 deps += [ "tools_webrtc:binary_version_check" ]
116 }
Mirko Bonadeibb547202017-09-15 04:15:48117 }
118}
119
Mirko Bonadei2ab97f62019-07-18 11:44:12120# Abseil Flags by default doesn't register command line flags on mobile
121# platforms, WebRTC tests requires them (e.g. on simualtors) so this
122# config will be applied to testonly targets globally (see webrtc.gni).
123config("absl_flags_configs") {
124 defines = [ "ABSL_FLAGS_STRIP_NAMES=0" ]
125}
126
Mirko Bonadei32ce18c2018-09-18 11:15:54127config("library_impl_config") {
128 # Build targets that contain WebRTC implementation need this macro to
129 # be defined in order to correctly export symbols when is_component_build
130 # is true.
131 # For more info see: rtc_base/build/rtc_export.h.
132 defines = [ "WEBRTC_LIBRARY_IMPL" ]
133}
134
Mirko Bonadeibb547202017-09-15 04:15:48135# Contains the defines and includes in common.gypi that are duplicated both as
136# target_defaults and direct_dependent_settings.
137config("common_inherited_config") {
138 defines = []
139 cflags = []
140 ldflags = []
Mirko Bonadei32ce18c2018-09-18 11:15:54141
Mirko Bonadei91304312023-07-26 11:01:43142 if (rtc_objc_prefix != "") {
143 defines += [ "RTC_OBJC_TYPE_PREFIX=${rtc_objc_prefix}" ]
144 }
145
Mirko Bonadei56ed4682021-10-12 06:55:42146 if (rtc_dlog_always_on) {
147 defines += [ "DLOG_ALWAYS_ON" ]
148 }
149
Mirko Bonadei02fac7d2019-10-15 19:25:07150 if (rtc_enable_symbol_export || is_component_build) {
Takaaki Suzuki52d97fd2021-10-09 13:16:01151 defines += [ "WEBRTC_ENABLE_SYMBOL_EXPORT" ]
Mirko Bonadei028248c2018-10-10 10:19:02152 }
Mirko Bonadei5f078452021-07-30 20:32:55153 if (rtc_enable_objc_symbol_export) {
Takaaki Suzuki52d97fd2021-10-09 13:16:01154 defines += [ "WEBRTC_ENABLE_OBJC_SYMBOL_EXPORT" ]
Mirko Bonadei5f078452021-07-30 20:32:55155 }
Mirko Bonadei028248c2018-10-10 10:19:02156
Mirko Bonadeib889a202018-08-15 09:41:27157 if (!rtc_builtin_ssl_root_certificates) {
158 defines += [ "WEBRTC_EXCLUDE_BUILT_IN_SSL_ROOT_CERTS" ]
159 }
160
Artem Titov9dc209a2019-11-28 16:09:30161 if (rtc_disable_check_msg) {
162 defines += [ "RTC_DISABLE_CHECK_MSG" ]
163 }
164
Zhaoliang Ma72e43212020-08-17 09:13:41165 if (rtc_enable_avx2) {
166 defines += [ "WEBRTC_ENABLE_AVX2" ]
167 }
168
Austin Orionedc946e2021-04-05 23:30:20169 if (rtc_enable_win_wgc) {
170 defines += [ "RTC_ENABLE_WIN_WGC" ]
171 }
172
Evan Shrubsoledb50b032024-04-24 13:27:00173 if (!rtc_use_perfetto) {
174 # Some tests need to declare their own trace event handlers. If this define is
175 # not set, the first time TRACE_EVENT_* is called it will store the return
176 # value for the current handler in an static variable, so that subsequent
177 # changes to the handler for that TRACE_EVENT_* will be ignored.
178 # So when tests are included, we set this define, making it possible to use
179 # different event handlers in different tests.
180 if (rtc_include_tests) {
181 defines += [ "WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1" ]
182 } else {
183 defines += [ "WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=0" ]
184 }
Mirko Bonadeibb547202017-09-15 04:15:48185 }
186 if (build_with_chromium) {
Mirko Bonadei8e5014a2018-08-02 11:36:10187 defines += [ "WEBRTC_CHROMIUM_BUILD" ]
Mirko Bonadeibb547202017-09-15 04:15:48188 include_dirs = [
189 # The overrides must be included first as that is the mechanism for
190 # selecting the override headers in Chromium.
191 "../webrtc_overrides",
192
193 # Allow includes to be prefixed with webrtc/ in case it is not an
194 # immediate subdirectory of the top-level.
195 ".",
Tomas Popela762543f2018-12-12 13:37:51196
197 # Just like the root WebRTC directory is added to include path, the
198 # corresponding directory tree with generated files needs to be added too.
199 # Note: this path does not change depending on the current target, e.g.
200 # it is always "//gen/third_party/webrtc" when building with Chromium.
201 # See also: http://cs.chromium.org/?q=%5C"default_include_dirs
202 # https://gn.googlesource.com/gn/+/master/docs/reference.md#target_gen_dir
203 target_gen_dir,
Mirko Bonadeibb547202017-09-15 04:15:48204 ]
205 }
Fabrice de Gans-Riberi09a6cd52018-03-30 17:38:06206 if (is_posix || is_fuchsia) {
Mirko Bonadeibb547202017-09-15 04:15:48207 defines += [ "WEBRTC_POSIX" ]
208 }
209 if (is_ios) {
210 defines += [
211 "WEBRTC_MAC",
212 "WEBRTC_IOS",
213 ]
214 }
Hidehiko Abef264e702020-09-10 09:10:11215 if (is_linux || is_chromeos) {
Mirko Bonadeibb547202017-09-15 04:15:48216 defines += [ "WEBRTC_LINUX" ]
217 }
218 if (is_mac) {
219 defines += [ "WEBRTC_MAC" ]
220 }
Sergey Ulanov6acefdb2017-12-12 01:38:13221 if (is_fuchsia) {
222 defines += [ "WEBRTC_FUCHSIA" ]
223 }
Mirko Bonadeibb547202017-09-15 04:15:48224 if (is_win) {
Mirko Bonadei89a87742018-04-24 07:12:13225 defines += [ "WEBRTC_WIN" ]
Mirko Bonadeibb547202017-09-15 04:15:48226 }
227 if (is_android) {
228 defines += [
229 "WEBRTC_LINUX",
230 "WEBRTC_ANDROID",
231 ]
Dan Minor9c686132018-01-15 15:20:00232
233 if (build_with_mozilla) {
234 defines += [ "WEBRTC_ANDROID_OPENSLES" ]
235 }
Mirko Bonadeibb547202017-09-15 04:15:48236 }
237 if (is_chromeos) {
238 defines += [ "CHROMEOS" ]
239 }
240
241 if (rtc_sanitize_coverage != "") {
242 assert(is_clang, "sanitizer coverage requires clang")
243 cflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ]
244 ldflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ]
245 }
246
247 if (is_ubsan) {
248 cflags += [ "-fsanitize=float-cast-overflow" ]
249 }
Mirko Bonadeibb547202017-09-15 04:15:48250}
251
Mirko Bonadei96ede16a2018-09-06 11:45:44252# TODO(bugs.webrtc.org/9693): Remove the possibility to suppress this warning
253# as soon as WebRTC compiles without it.
Mirko Bonadei96ede16a2018-09-06 11:45:44254config("no_global_constructors") {
255 if (is_clang) {
256 cflags = [ "-Wno-global-constructors" ]
257 }
258}
259
260config("rtc_prod_config") {
261 # Ideally, WebRTC production code (but not test code) should have these flags.
262 if (is_clang) {
263 cflags = [
264 "-Wexit-time-destructors",
265 "-Wglobal-constructors",
266 ]
267 }
268}
269
Evan Shrubsoledb50b032024-04-24 13:27:00270group("tracing") {
Evan Shrubsolecd098582024-04-30 07:57:49271 all_dependent_configs = [ "//third_party/perfetto/gn:public_config" ]
Evan Shrubsoledb50b032024-04-24 13:27:00272 if (rtc_use_perfetto) {
273 if (build_with_chromium) {
274 public_deps = # no-presubmit-check TODO(webrtc:8603)
275 [ "//third_party/perfetto:libperfetto" ]
276 } else {
Evan Shrubsolecd098582024-04-30 07:57:49277 public_deps = [ # no-presubmit-check TODO(webrtc:8603)
278 ":webrtc_libperfetto",
279 "//third_party/perfetto/include/perfetto/tracing",
280 ]
Evan Shrubsoledb50b032024-04-24 13:27:00281 }
Evan Shrubsolecd098582024-04-30 07:57:49282 } else {
283 public_deps = # no-presubmit-check TODO(webrtc:8603)
284 [ "//third_party/perfetto/include/perfetto/tracing" ]
Evan Shrubsoledb50b032024-04-24 13:27:00285 }
286}
287
288if (rtc_use_perfetto) {
289 rtc_library("webrtc_libperfetto") {
Evan Shrubsoledb50b032024-04-24 13:27:00290 deps = [
291 "//third_party/perfetto/src/tracing:client_api_without_backends",
292 "//third_party/perfetto/src/tracing:platform_impl",
293 ]
Evan Shrubsoledb50b032024-04-24 13:27:00294 }
295}
296
Mirko Bonadeibb547202017-09-15 04:15:48297config("common_config") {
298 cflags = []
Mirko Bonadeid7573562018-03-19 15:23:48299 cflags_c = []
Mirko Bonadeibb547202017-09-15 04:15:48300 cflags_cc = []
Mirko Bonadeid7573562018-03-19 15:23:48301 cflags_objc = []
Mirko Bonadeibb547202017-09-15 04:15:48302 defines = []
303
304 if (rtc_enable_protobuf) {
305 defines += [ "WEBRTC_ENABLE_PROTOBUF=1" ]
306 } else {
307 defines += [ "WEBRTC_ENABLE_PROTOBUF=0" ]
308 }
309
Emil Lundmark9109e852023-02-28 12:57:01310 if (rtc_strict_field_trials == "") {
Emil Lundmark6bf20cc2022-09-21 13:20:22311 defines += [ "WEBRTC_STRICT_FIELD_TRIALS=0" ]
Emil Lundmark9109e852023-02-28 12:57:01312 } else if (rtc_strict_field_trials == "dcheck") {
313 defines += [ "WEBRTC_STRICT_FIELD_TRIALS=1" ]
314 } else if (rtc_strict_field_trials == "warn") {
315 defines += [ "WEBRTC_STRICT_FIELD_TRIALS=2" ]
316 } else {
317 assert(false,
318 "Unsupported value for rtc_strict_field_trials: " +
319 "$rtc_strict_field_trials")
Emil Lundmark6bf20cc2022-09-21 13:20:22320 }
321
Mirko Bonadeibb547202017-09-15 04:15:48322 if (rtc_include_internal_audio_device) {
323 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ]
324 }
325
Mirko Bonadei8ef57932018-11-16 13:38:03326 if (rtc_libvpx_build_vp9) {
327 defines += [ "RTC_ENABLE_VP9" ]
Mirko Bonadeibb547202017-09-15 04:15:48328 }
329
qwu16ae82df72023-09-20 05:10:31330 if (rtc_use_h265) {
331 defines += [ "RTC_ENABLE_H265" ]
332 }
333
philipelb09d8722021-11-23 10:00:24334 if (rtc_include_dav1d_in_internal_decoder_factory) {
335 defines += [ "RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY" ]
336 }
337
Mirko Bonadeibb547202017-09-15 04:15:48338 if (rtc_enable_sctp) {
Mirko Bonadei5eb43b42021-01-18 12:24:40339 defines += [ "WEBRTC_HAVE_SCTP" ]
Mirko Bonadeibb547202017-09-15 04:15:48340 }
341
342 if (rtc_enable_external_auth) {
343 defines += [ "ENABLE_EXTERNAL_AUTH" ]
344 }
345
Johannes Kronb76b9ba2019-02-08 09:13:25346 if (rtc_use_h264) {
347 defines += [ "WEBRTC_USE_H264" ]
348 }
349
Markus Handell8e75bd42020-06-05 09:47:40350 if (rtc_use_absl_mutex) {
351 defines += [ "WEBRTC_ABSL_MUTEX" ]
352 }
353
Markus Handellf2827c42023-09-02 07:41:10354 if (rtc_enable_libevent) {
355 defines += [ "WEBRTC_ENABLE_LIBEVENT" ]
356 }
357
Artem Titov6a4a1462019-11-26 15:24:46358 if (rtc_disable_logging) {
359 defines += [ "RTC_DISABLE_LOGGING" ]
360 }
361
Doudou Kisabaka2dec4962019-11-28 13:24:31362 if (rtc_disable_trace_events) {
363 defines += [ "RTC_DISABLE_TRACE_EVENTS" ]
364 }
365
Ying Wangef3998f2019-12-09 12:06:53366 if (rtc_disable_metrics) {
367 defines += [ "RTC_DISABLE_METRICS" ]
368 }
369
Per Åhgrencc73ed32020-04-26 21:56:17370 if (rtc_exclude_audio_processing_module) {
371 defines += [ "WEBRTC_EXCLUDE_AUDIO_PROCESSING_MODULE" ]
372 }
373
Peter Kasting47126fa2021-09-28 17:08:54374 if (is_clang) {
Mirko Bonadeice030282022-09-01 16:19:42375 cflags += [
376 # TODO(webrtc:13219): Fix -Wshadow instances and enable.
377 "-Wno-shadow",
378
379 # See https://reviews.llvm.org/D56731 for details about this
380 # warning.
381 "-Wctad-maybe-unsupported",
382 ]
Peter Kasting47126fa2021-09-28 17:08:54383 }
Mirko Bonadeicee54172019-12-05 14:30:14384
Mirko Bonadeibb547202017-09-15 04:15:48385 if (build_with_chromium) {
386 defines += [
387 # NOTICE: Since common_inherited_config is used in public_configs for our
388 # targets, there's no point including the defines in that config here.
389 # TODO(kjellander): Cleanup unused ones and move defines closer to the
390 # source when webrtc:4256 is completed.
391 "HAVE_WEBRTC_VIDEO",
Mirko Bonadeibb547202017-09-15 04:15:48392 "LOGGING_INSIDE_WEBRTC",
Mirko Bonadeibb547202017-09-15 04:15:48393 ]
394 } else {
Fabrice de Gans-Riberi09a6cd52018-03-30 17:38:06395 if (is_posix || is_fuchsia) {
Mirko Bonadeid7573562018-03-19 15:23:48396 cflags_c += [
397 # TODO(bugs.webrtc.org/9029): enable commented compiler flags.
398 # Some of these flags should also be added to cflags_objc.
399
400 # "-Wextra", (used when building C++ but not when building C)
401 # "-Wmissing-prototypes", (C/Obj-C only)
402 # "-Wmissing-declarations", (ensure this is always used C/C++, etc..)
403 "-Wstrict-prototypes",
404
405 # "-Wpointer-arith", (ensure this is always used C/C++, etc..)
406 # "-Wbad-function-cast", (C/Obj-C only)
407 # "-Wnested-externs", (C/Obj-C only)
408 ]
409 cflags_objc += [ "-Wstrict-prototypes" ]
Mirko Bonadeibb547202017-09-15 04:15:48410 cflags_cc = [
411 "-Wnon-virtual-dtor",
412
413 # This is enabled for clang; enable for gcc as well.
414 "-Woverloaded-virtual",
415 ]
416 }
417
418 if (is_clang) {
Sarah Phame9c3f012022-05-23 03:54:34419 cflags += [ "-Wc++11-narrowing" ]
420
421 if (!is_fuchsia) {
422 # Compiling with the Fuchsia SDK results in Wundef errors
423 # TODO(bugs.fuchsia.dev/100722): Remove from (!is_fuchsia) branch when
424 # Fuchsia build errors are fixed.
425 cflags += [ "-Wundef" ]
426 }
Mirko Bonadeibb547202017-09-15 04:15:48427
Mirko Bonadei1a75d5e2021-11-19 07:46:19428 if (!is_nacl) {
429 # Flags NaCl (Clang 3.7) do not recognize.
Mirko Bonadeibb547202017-09-15 04:15:48430 cflags += [ "-Wunused-lambda-capture" ]
431 }
432 }
Mirko Bonadeie7659df2018-05-16 09:50:40433
434 if (is_win && !is_clang) {
435 # MSVC warning suppressions (needed to use Abseil).
436 # TODO(bugs.webrtc.org/9274): Remove these warnings as soon as MSVC allows
437 # external headers warning suppression (or fix them upstream).
438 cflags += [ "/wd4702" ] # unreachable code
Jerome Humbert3e3c5512020-01-13 11:58:26439
440 # MSVC 2019 warning suppressions for C++17 compiling
Patrik Höglund83245bd2020-01-30 08:33:57441 cflags +=
442 [ "/wd5041" ] # out-of-line definition for constexpr static data
443 # member is not needed and is deprecated in C++17
Mirko Bonadeie7659df2018-05-16 09:50:40444 }
Mirko Bonadeibb547202017-09-15 04:15:48445 }
446
447 if (current_cpu == "arm64") {
448 defines += [ "WEBRTC_ARCH_ARM64" ]
449 defines += [ "WEBRTC_HAS_NEON" ]
450 }
451
452 if (current_cpu == "arm") {
453 defines += [ "WEBRTC_ARCH_ARM" ]
454 if (arm_version >= 7) {
455 defines += [ "WEBRTC_ARCH_ARM_V7" ]
456 if (arm_use_neon) {
457 defines += [ "WEBRTC_HAS_NEON" ]
458 }
459 }
460 }
461
462 if (current_cpu == "mipsel") {
463 defines += [ "MIPS32_LE" ]
464 if (mips_float_abi == "hard") {
465 defines += [ "MIPS_FPU_LE" ]
466 }
467 if (mips_arch_variant == "r2") {
468 defines += [ "MIPS32_R2_LE" ]
469 }
470 if (mips_dsp_rev == 1) {
471 defines += [ "MIPS_DSP_R1_LE" ]
472 } else if (mips_dsp_rev == 2) {
473 defines += [
474 "MIPS_DSP_R1_LE",
475 "MIPS_DSP_R2_LE",
476 ]
477 }
478 }
479
480 if (is_android && !is_clang) {
481 # The Android NDK doesn"t provide optimized versions of these
482 # functions. Ensure they are disabled for all compilers.
483 cflags += [
484 "-fno-builtin-cos",
485 "-fno-builtin-sin",
486 "-fno-builtin-cosf",
487 "-fno-builtin-sinf",
488 ]
489 }
490
Greg Thompson6fc4d972023-09-19 10:15:03491 if (use_fuzzing_engine) {
Mirko Bonadeibb547202017-09-15 04:15:48492 # Used in Chromium's overrides to disable logging
493 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ]
494 }
Mirko Bonadei20574f42019-03-28 06:50:07495
496 if (!build_with_chromium && rtc_win_undef_unicode) {
497 cflags += [
498 "/UUNICODE",
499 "/U_UNICODE",
500 ]
501 }
Evan Shrubsoledb50b032024-04-24 13:27:00502
503 if (rtc_use_perfetto) {
504 defines += [ "RTC_USE_PERFETTO" ]
505 }
Mirko Bonadeibb547202017-09-15 04:15:48506}
507
508config("common_objc") {
Sylvain Defresnec7f0dff2020-07-03 08:19:30509 frameworks = [ "Foundation.framework" ]
Mirko Bonadeibb547202017-09-15 04:15:48510}
511
512if (!build_with_chromium) {
513 # Target to build all the WebRTC production code.
514 rtc_static_library("webrtc") {
Patrik Höglundeeb79e92019-10-17 14:04:07515 # Only the root target and the test should depend on this.
516 visibility = [
517 "//:default",
518 "//:webrtc_lib_link_test",
519 ]
Mirko Bonadeibb547202017-09-15 04:15:48520
521 sources = []
522 complete_static_lib = true
Oleh Prypind2f4e8b2018-08-01 10:18:05523 suppressed_configs += [ "//build/config/compiler:thin_archive" ]
Mirko Bonadeibb547202017-09-15 04:15:48524 defines = []
525
526 deps = [
Mirko Bonadeiba700de2019-10-10 07:23:22527 "api:create_peerconnection_factory",
Danil Chapovalovb29ff002023-11-02 18:18:04528 "api:enable_media",
Yves Gerey06f6bc92018-11-09 09:22:52529 "api:libjingle_peerconnection_api",
Mirko Bonadeieaaaf412019-09-13 12:42:15530 "api:rtc_error",
Mirko Bonadeibb547202017-09-15 04:15:48531 "api:transport_api",
Mirko Bonadeieaaaf412019-09-13 12:42:15532 "api/crypto",
Danil Chapovalov4ba04b72019-06-26 13:49:47533 "api/rtc_event_log:rtc_event_log_factory",
Mirko Bonadeiba700de2019-10-10 07:23:22534 "api/task_queue",
535 "api/task_queue:default_task_queue_factory",
Artem Titovc898c822022-09-14 11:14:02536 "api/test/metrics",
philipel2b00c4e2023-03-31 15:20:40537 "api/video_codecs:video_decoder_factory_template",
538 "api/video_codecs:video_decoder_factory_template_dav1d_adapter",
539 "api/video_codecs:video_decoder_factory_template_libvpx_vp8_adapter",
540 "api/video_codecs:video_decoder_factory_template_libvpx_vp9_adapter",
541 "api/video_codecs:video_decoder_factory_template_open_h264_adapter",
542 "api/video_codecs:video_encoder_factory_template",
543 "api/video_codecs:video_encoder_factory_template_libaom_av1_adapter",
544 "api/video_codecs:video_encoder_factory_template_libvpx_vp8_adapter",
545 "api/video_codecs:video_encoder_factory_template_libvpx_vp9_adapter",
546 "api/video_codecs:video_encoder_factory_template_open_h264_adapter",
Mirko Bonadeibb547202017-09-15 04:15:48547 "audio",
548 "call",
549 "common_audio",
550 "common_video",
Yves Gerey06f6bc92018-11-09 09:22:52551 "logging:rtc_event_log_api",
Mirko Bonadeibb547202017-09-15 04:15:48552 "media",
553 "modules",
554 "modules/video_capture:video_capture_internal_impl",
Yves Gerey06f6bc92018-11-09 09:22:52555 "p2p:rtc_p2p",
556 "pc:libjingle_peerconnection",
Yves Gerey06f6bc92018-11-09 09:22:52557 "pc:rtc_pc",
Mirko Bonadeibb547202017-09-15 04:15:48558 "sdk",
Mirko Bonadeibb547202017-09-15 04:15:48559 "video",
Mirko Bonadeibb547202017-09-15 04:15:48560 ]
561
Jiawei Ou08745302019-02-12 19:36:13562 if (rtc_include_builtin_audio_codecs) {
563 deps += [
564 "api/audio_codecs:builtin_audio_decoder_factory",
565 "api/audio_codecs:builtin_audio_encoder_factory",
566 ]
567 }
568
Dan Minor9c686132018-01-15 15:20:00569 if (build_with_mozilla) {
Chen Xing5d24b162019-06-10 10:59:38570 deps += [
571 "api/video:video_frame",
572 "api/video:video_rtp_headers",
573 ]
Dan Minor9c686132018-01-15 15:20:00574 } else {
575 deps += [
576 "api",
577 "logging",
578 "p2p",
579 "pc",
580 "stats",
581 ]
582 }
583
Mirko Bonadeibb547202017-09-15 04:15:48584 if (rtc_enable_protobuf) {
Mirko Bonadeibb547202017-09-15 04:15:48585 deps += [ "logging:rtc_event_log_proto" ]
586 }
587 }
Patrik Höglundeeb79e92019-10-17 14:04:07588
Mirko Bonadeic69fd592020-03-10 14:35:38589 if (rtc_include_tests && !is_asan) {
Patrik Höglund21671632019-10-18 06:04:19590 rtc_executable("webrtc_lib_link_test") {
Patrik Höglundeeb79e92019-10-17 14:04:07591 testonly = true
592
Byoungchan Lee8ed1e932021-05-20 09:30:10593 # This target is used for checking to link, so do not check dependencies
594 # on gn check.
595 check_includes = false # no-presubmit-check TODO(bugs.webrtc.org/12785)
596
Mirko Bonadeiccbe95f2020-01-21 11:10:10597 sources = [ "webrtc_lib_link_test.cc" ]
Patrik Höglundeeb79e92019-10-17 14:04:07598 deps = [
Patrik Höglund21671632019-10-18 06:04:19599 # NOTE: Don't add deps here. If this test fails to link, it means you
600 # need to add stuff to the webrtc static lib target above.
Patrik Höglundeeb79e92019-10-17 14:04:07601 ":webrtc",
Patrik Höglundeeb79e92019-10-17 14:04:07602 ]
603 }
604 }
Mirko Bonadeibb547202017-09-15 04:15:48605}
606
Nico Weberdf644be2019-03-18 01:06:11607if (use_libfuzzer || use_afl) {
Mirko Bonadeibb547202017-09-15 04:15:48608 # This target is only here for gn to discover fuzzer build targets under
609 # webrtc/test/fuzzers/.
610 group("webrtc_fuzzers_dummy") {
611 testonly = true
Mirko Bonadeiccbe95f2020-01-21 11:10:10612 deps = [ "test/fuzzers:webrtc_fuzzer_main" ]
Mirko Bonadeibb547202017-09-15 04:15:48613 }
614}
615
Andrey Logvine7c79fd2021-02-01 09:56:37616if (rtc_include_tests && !build_with_chromium) {
philipelb85b4c02024-04-24 14:31:58617 rtc_unittests_resources = [ "resources/reference_video_640x360_30fps.y4m" ]
618
619 if (is_ios) {
620 bundle_data("rtc_unittests_bundle_data") {
621 testonly = true
622 sources = rtc_unittests_resources
623 outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ]
624 }
625 }
626
Mirko Bonadeibb547202017-09-15 04:15:48627 rtc_test("rtc_unittests") {
628 testonly = true
629
630 deps = [
Harald Alvestrand3cc45d42019-03-14 04:42:04631 "api:compile_all_headers",
Mirko Bonadeibb547202017-09-15 04:15:48632 "api:rtc_api_unittests",
Fredrik Solenbergbbf21a32018-04-12 20:44:09633 "api/audio/test:audio_api_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48634 "api/audio_codecs/test:audio_codecs_api_unittests",
Artem Titov9d777622020-09-18 16:23:08635 "api/numerics:numerics_unittests",
Artem Titovc374d112022-06-16 19:27:45636 "api/task_queue:pending_task_safety_flag_unittests",
Artem Titov27f91af2022-09-16 22:12:19637 "api/test/metrics:metrics_unittests",
Patrik Höglund56d94522019-11-18 14:53:32638 "api/transport:stun_unittest",
Stefan Holmerf7044682018-07-17 08:16:41639 "api/video/test:rtc_api_video_unittests",
philipelb85b4c02024-04-24 14:31:58640 "api/video_codecs:libaom_av1_encoder_factory_test",
641 "api/video_codecs:simple_encoder_wrapper_unittests",
Anders Carlssondd3e0ab2018-06-12 09:15:56642 "api/video_codecs/test:video_codecs_api_unittests",
Tim Na76bbc982021-01-28 18:52:38643 "api/voip:compile_all_headers",
Sebastian Jansson487c09b2019-02-21 15:21:51644 "call:fake_network_pipe_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48645 "p2p:libstunprober_unittests",
646 "p2p:rtc_p2p_unittests",
Harald Alvestrand8d4a5f12023-08-22 13:53:16647 "rtc_base:async_dns_resolver_unittests",
Per K4ac37182023-11-15 09:43:32648 "rtc_base:async_packet_socket_unittest",
Mirko Bonadei3d259352020-10-23 10:04:40649 "rtc_base:callback_list_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48650 "rtc_base:rtc_base_approved_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48651 "rtc_base:rtc_base_unittests",
Sam Zackrissonb45bdb52018-10-02 14:25:59652 "rtc_base:rtc_json_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48653 "rtc_base:rtc_numerics_unittests",
Henrik Boström27c29362019-10-21 13:21:55654 "rtc_base:rtc_operations_chain_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48655 "rtc_base:rtc_task_queue_unittests",
Artem Titove41c4332018-07-25 13:04:28656 "rtc_base:sigslot_unittest",
Markus Handell82da9322022-12-16 14:50:24657 "rtc_base:task_queue_stdlib_unittest",
Karl Wiberg70026f92020-09-18 08:03:16658 "rtc_base:untyped_function_unittest",
Mirko Bonadeibb547202017-09-15 04:15:48659 "rtc_base:weak_ptr_unittests",
Sebastian Jansson2808ae92018-04-09 09:13:04660 "rtc_base/experiments:experiments_unittests",
Björn Tereliuscbd61562021-03-25 14:52:16661 "rtc_base/system:file_wrapper_unittests",
Evan Shrubsole45448e92021-11-15 16:27:44662 "rtc_base/task_utils:repeating_task_unittests",
Evan Shrubsole21e97f92022-01-11 12:50:00663 "rtc_base/units:units_unittests",
Niels Möllerdac03d92019-02-13 07:52:27664 "sdk:sdk_tests",
Tommi25eb47c2019-08-29 14:39:05665 "test:rtp_test_utils",
Niels Möller04a3cc12019-05-21 11:01:58666 "test:test_main",
Artem Titov386802e2019-07-05 08:48:17667 "test/network:network_emulation_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48668 ]
669
philipelb85b4c02024-04-24 14:31:58670 data = rtc_unittests_resources
671
Mirko Bonadeibb547202017-09-15 04:15:48672 if (rtc_enable_protobuf) {
Per Kjellandera0d1a512024-05-29 10:33:21673 deps += [
674 "api/test/network_emulation:network_config_schedule_proto",
675 "logging:rtc_event_log_tests",
676 ]
Mirko Bonadeibb547202017-09-15 04:15:48677 }
678
philipelb85b4c02024-04-24 14:31:58679 if (is_ios) {
680 deps += [ ":rtc_unittests_bundle_data" ]
681 }
682
Mirko Bonadeibb547202017-09-15 04:15:48683 if (is_android) {
Sami Kalliomäki78498cf2018-02-07 15:59:33684 # Do not use Chromium's launcher. native_unittests defines its own JNI_OnLoad.
685 use_default_launcher = false
686
687 deps += [
688 "sdk/android:native_unittests",
689 "sdk/android:native_unittests_java",
690 "//testing/android/native_test:native_test_support",
691 ]
Mirko Bonadeibb547202017-09-15 04:15:48692 shard_timeout = 900
693 }
Mirko Bonadeibb547202017-09-15 04:15:48694 }
695
Peter Kasting049f5ef2023-03-14 16:56:25696 if (rtc_enable_google_benchmarks) {
Andrey Logvin5e227ab2021-01-29 10:34:55697 rtc_test("benchmarks") {
698 testonly = true
699 deps = [
700 "rtc_base/synchronization:mutex_benchmark",
701 "test:benchmark_main",
702 ]
703 }
Markus Handellf70fbc82020-06-03 22:41:20704 }
705
Mirko Bonadeibb547202017-09-15 04:15:48706 # TODO(pbos): Rename test suite, this is no longer "just" for video targets.
707 video_engine_tests_resources = [
Mirko Bonadei92ea95e2017-09-15 04:47:31708 "resources/foreman_cif_short.yuv",
709 "resources/voice_engine/audio_long16.pcm",
Mirko Bonadeibb547202017-09-15 04:15:48710 ]
711
712 if (is_ios) {
713 bundle_data("video_engine_tests_bundle_data") {
714 testonly = true
715 sources = video_engine_tests_resources
Mirko Bonadeiccbe95f2020-01-21 11:10:10716 outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ]
Mirko Bonadeibb547202017-09-15 04:15:48717 }
718 }
719
720 rtc_test("video_engine_tests") {
721 testonly = true
722 deps = [
723 "audio:audio_tests",
724
725 # TODO(eladalon): call_tests aren't actually video-specific, so we
726 # should move them to a more appropriate test suite.
727 "call:call_tests",
Henrik Boströmb04b2a12019-12-10 13:14:09728 "call/adaptation:resource_adaptation_tests",
Mirko Bonadeibb547202017-09-15 04:15:48729 "test:test_common",
730 "test:test_main",
731 "test:video_test_common",
732 "video:video_tests",
Henrik Boströmefbec9a2020-03-06 09:41:25733 "video/adaptation:video_adaptation_tests",
Mirko Bonadeibb547202017-09-15 04:15:48734 ]
735 data = video_engine_tests_resources
Mirko Bonadeibb547202017-09-15 04:15:48736 if (is_android) {
Björn Terelius0c68a7a2022-04-19 13:32:37737 use_default_launcher = false
738 deps += [
739 "//build/android/gtest_apk:native_test_instrumentation_test_runner_java",
740 "//testing/android/native_test:native_test_java",
741 "//testing/android/native_test:native_test_support",
742 ]
Mirko Bonadeibb547202017-09-15 04:15:48743 shard_timeout = 900
744 }
745 if (is_ios) {
746 deps += [ ":video_engine_tests_bundle_data" ]
747 }
748 }
749
750 webrtc_perf_tests_resources = [
Natalie Chouinard65bbcab2019-12-23 22:02:25751 "resources/ConferenceMotion_1280_720_50.yuv",
Mirko Bonadei92ea95e2017-09-15 04:47:31752 "resources/audio_coding/speech_mono_16kHz.pcm",
753 "resources/audio_coding/speech_mono_32_48kHz.pcm",
754 "resources/audio_coding/testfile32kHz.pcm",
Mirko Bonadei92ea95e2017-09-15 04:47:31755 "resources/difficult_photo_1850_1110.yuv",
756 "resources/foreman_cif.yuv",
Mirko Bonadei92ea95e2017-09-15 04:47:31757 "resources/paris_qcif.yuv",
758 "resources/photo_1850_1110.yuv",
759 "resources/presentation_1850_1110.yuv",
Mirko Bonadei92ea95e2017-09-15 04:47:31760 "resources/voice_engine/audio_long16.pcm",
761 "resources/web_screenshot_1850_1110.yuv",
Mirko Bonadeibb547202017-09-15 04:15:48762 ]
763
764 if (is_ios) {
765 bundle_data("webrtc_perf_tests_bundle_data") {
766 testonly = true
767 sources = webrtc_perf_tests_resources
Mirko Bonadeiccbe95f2020-01-21 11:10:10768 outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ]
Mirko Bonadeibb547202017-09-15 04:15:48769 }
770 }
771
772 rtc_test("webrtc_perf_tests") {
773 testonly = true
Mirko Bonadeibb547202017-09-15 04:15:48774 deps = [
Mirko Bonadeibb547202017-09-15 04:15:48775 "call:call_perf_tests",
776 "modules/audio_coding:audio_coding_perf_tests",
777 "modules/audio_processing:audio_processing_perf_tests",
Seth Hampsond1003d72018-06-22 22:40:16778 "pc:peerconnection_perf_tests",
Mirko Bonadeibb547202017-09-15 04:15:48779 "test:test_main",
780 "video:video_full_stack_tests",
Artem Titov137f6c82019-05-17 08:51:15781 "video:video_pc_full_stack_tests",
Mirko Bonadeibb547202017-09-15 04:15:48782 ]
783
Artem Titarenko01d04fa2019-07-12 09:19:54784 data = webrtc_perf_tests_resources
Mirko Bonadeibb547202017-09-15 04:15:48785 if (is_android) {
Björn Terelius0c68a7a2022-04-19 13:32:37786 use_default_launcher = false
787 deps += [
788 "//build/android/gtest_apk:native_test_instrumentation_test_runner_java",
789 "//testing/android/native_test:native_test_java",
790 "//testing/android/native_test:native_test_support",
791 ]
Oleh Prypin2aa03792018-12-13 07:48:13792 shard_timeout = 4500
Mirko Bonadeibb547202017-09-15 04:15:48793 }
794 if (is_ios) {
795 deps += [ ":webrtc_perf_tests_bundle_data" ]
796 }
797 }
798
799 rtc_test("webrtc_nonparallel_tests") {
800 testonly = true
Mirko Bonadeiccbe95f2020-01-21 11:10:10801 deps = [ "rtc_base:rtc_base_nonparallel_tests" ]
Mirko Bonadeibb547202017-09-15 04:15:48802 if (is_android) {
803 deps += [ "//testing/android/native_test:native_test_support" ]
804 shard_timeout = 900
805 }
806 }
Tim Na8ab3c772020-03-27 00:16:51807
808 rtc_test("voip_unittests") {
809 testonly = true
810 deps = [
Tim Na76bbc982021-01-28 18:52:38811 "api/voip:compile_all_headers",
Tim Nac0df5fc2020-05-05 18:03:54812 "api/voip:voip_engine_factory_unittests",
813 "audio/voip/test:audio_channel_unittests",
Tim Na8ab3c772020-03-27 00:16:51814 "audio/voip/test:audio_egress_unittests",
Tim Na11f92bc2020-04-21 16:39:25815 "audio/voip/test:audio_ingress_unittests",
Tim Nac0df5fc2020-05-05 18:03:54816 "audio/voip/test:voip_core_unittests",
Tim Na8ab3c772020-03-27 00:16:51817 "test:test_main",
818 ]
819 }
wjia@webrtc.org03cfde22014-01-14 17:48:34820}
Karl Wibergbb23c832018-04-22 17:55:00821
Philipp Hanckec1282772021-11-24 07:18:31822# Build target for standalone dcsctp
823rtc_static_library("dcsctp") {
824 # Only the root target should depend on this.
825 visibility = [ "//:default" ]
826 sources = []
827 complete_static_lib = true
828 suppressed_configs += [ "//build/config/compiler:thin_archive" ]
829 defines = []
830 deps = [
831 "net/dcsctp/public:factory",
832 "net/dcsctp/public:socket",
833 "net/dcsctp/public:types",
834 "net/dcsctp/socket:dcsctp_socket",
835 "net/dcsctp/timer:task_queue_timeout",
Philipp Hanckec1282772021-11-24 07:18:31836 ]
837}
838
Karl Wibergbb23c832018-04-22 17:55:00839# ---- Poisons ----
840#
841# Here is one empty dummy target for each poison type (needed because
842# "being poisonous with poison type foo" is implemented as "depends on
843# //:poison_foo").
844#
845# The set of poison_* targets needs to be kept in sync with the
846# `all_poison_types` list in webrtc.gni.
847#
848group("poison_audio_codecs") {
849}
Anders Carlsson1f433e42018-04-24 14:39:05850
Danil Chapovalov9fdceb82023-11-27 09:57:22851group("poison_default_echo_detector") {
Anders Carlsson1f433e42018-04-24 14:39:05852}
Danil Chapovalov41300af2019-07-10 10:44:43853
Danil Chapovalov9fdceb82023-11-27 09:57:22854group("poison_environment_construction") {
Sam Zackrisson03cb7e52021-12-06 14:40:04855}
856
Sam Zackrisson492fdf42019-10-25 08:45:58857group("poison_software_video_codecs") {
Danil Chapovalov41300af2019-07-10 10:44:43858}