blob: e290a6e0d46ff1f0be272650a544932dfe60ad3d [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")
Andrey Logvin5e227ab2021-01-29 10:34:5526import("//third_party/google_benchmark/buildconfig.gni")
Mirko Bonadeibb547202017-09-15 04:15:4827import("webrtc.gni")
Kimmo Kinnunen08f6a6c2019-02-26 09:46:1728if (rtc_enable_protobuf) {
Dan Minor9c686132018-01-15 15:20:0029 import("//third_party/protobuf/proto_library.gni")
30}
Mirko Bonadeibb547202017-09-15 04:15:4831if (is_android) {
32 import("//build/config/android/config.gni")
33 import("//build/config/android/rules.gni")
34}
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",
Victor Boivie7d3c49a2021-03-25 12:11:0366 "net/dcsctp:dcsctp_unittests",
Patrik Höglund29dd6d72017-12-01 10:35:2667 "pc:peerconnection_unittests",
68 "pc:rtc_pc_unittests",
Harald Alvestrandf8f7b702022-05-05 13:21:1969 "pc:slow_peer_connection_unittests",
Ilya Nikolaevskiyb41d5f12019-07-18 07:59:2570 "rtc_tools:rtp_generator",
Mirko Bonadeid4c3c3a2020-02-07 09:02:3171 "rtc_tools:video_replay",
Patrik Höglund29dd6d72017-12-01 10:35:2672 "stats:rtc_stats_unittests",
73 "system_wrappers:system_wrappers_unittests",
74 "test",
75 "video:screenshare_loopback",
Ilya Nikolaevskiy255d1cd2017-12-21 17:02:5976 "video:sv_loopback",
Patrik Höglund29dd6d72017-12-01 10:35:2677 "video:video_loopback",
Patrik Höglund29dd6d72017-12-01 10:35:2678 ]
Mirko Bonadei6adb0a22019-10-23 14:55:0479 if (!is_asan) {
80 # Do not build :webrtc_lib_link_test because lld complains on some OS
81 # (e.g. when target_os = "mac") when is_asan=true. For more details,
82 # see bugs.webrtc.org/11027#c5.
83 deps += [ ":webrtc_lib_link_test" ]
84 }
Jeremy Leconte251eca22022-03-04 04:39:0485 if (is_ios) {
86 deps += [
87 "examples:apprtcmobile_tests",
88 "sdk:sdk_framework_unittests",
89 "sdk:sdk_unittests",
90 ]
91 }
Patrik Höglund29dd6d72017-12-01 10:35:2692 if (is_android) {
93 deps += [
Mirko Bonadei73aa2de2020-01-20 14:28:5794 "examples:android_examples_junit_tests",
Sami Kalliomäkid54f5f52018-08-03 11:23:0595 "sdk/android:android_instrumentation_test_apk",
Mirko Bonadeiccbe95f2020-01-21 11:10:1096 "sdk/android:android_sdk_junit_tests",
Patrik Höglund29dd6d72017-12-01 10:35:2697 ]
98 } else {
99 deps += [ "modules/video_capture:video_capture_tests" ]
100 }
101 if (rtc_enable_protobuf) {
102 deps += [
Jeremy Leconte251eca22022-03-04 04:39:04103 "audio:low_bandwidth_audio_perf_test",
Mirko Bonadeiab0b9d42019-07-08 10:31:59104 "logging:rtc_event_log_rtp_dump",
Patrik Höglund83245bd2020-01-30 08:33:57105 "tools_webrtc/perf:webrtc_dashboard_upload",
Patrik Höglund29dd6d72017-12-01 10:35:26106 ]
107 }
Mirko Bonadeibb547202017-09-15 04:15:48108 }
Mirko Bonadeib9857482020-12-14 14:28:43109 if (target_os == "android") {
110 deps += [ "tools_webrtc:binary_version_check" ]
111 }
Mirko Bonadeibb547202017-09-15 04:15:48112 }
113}
114
Mirko Bonadei2ab97f62019-07-18 11:44:12115# Abseil Flags by default doesn't register command line flags on mobile
116# platforms, WebRTC tests requires them (e.g. on simualtors) so this
117# config will be applied to testonly targets globally (see webrtc.gni).
118config("absl_flags_configs") {
119 defines = [ "ABSL_FLAGS_STRIP_NAMES=0" ]
120}
121
Mirko Bonadei32ce18c2018-09-18 11:15:54122config("library_impl_config") {
123 # Build targets that contain WebRTC implementation need this macro to
124 # be defined in order to correctly export symbols when is_component_build
125 # is true.
126 # For more info see: rtc_base/build/rtc_export.h.
127 defines = [ "WEBRTC_LIBRARY_IMPL" ]
128}
129
Mirko Bonadeibb547202017-09-15 04:15:48130# Contains the defines and includes in common.gypi that are duplicated both as
131# target_defaults and direct_dependent_settings.
132config("common_inherited_config") {
133 defines = []
134 cflags = []
135 ldflags = []
Mirko Bonadei32ce18c2018-09-18 11:15:54136
Mirko Bonadei56ed4682021-10-12 06:55:42137 if (rtc_dlog_always_on) {
138 defines += [ "DLOG_ALWAYS_ON" ]
139 }
140
Mirko Bonadei02fac7d2019-10-15 19:25:07141 if (rtc_enable_symbol_export || is_component_build) {
Takaaki Suzuki52d97fd2021-10-09 13:16:01142 defines += [ "WEBRTC_ENABLE_SYMBOL_EXPORT" ]
Mirko Bonadei028248c2018-10-10 10:19:02143 }
Mirko Bonadei5f078452021-07-30 20:32:55144 if (rtc_enable_objc_symbol_export) {
Takaaki Suzuki52d97fd2021-10-09 13:16:01145 defines += [ "WEBRTC_ENABLE_OBJC_SYMBOL_EXPORT" ]
Mirko Bonadei5f078452021-07-30 20:32:55146 }
Mirko Bonadei028248c2018-10-10 10:19:02147
Mirko Bonadeib889a202018-08-15 09:41:27148 if (!rtc_builtin_ssl_root_certificates) {
149 defines += [ "WEBRTC_EXCLUDE_BUILT_IN_SSL_ROOT_CERTS" ]
150 }
151
Artem Titov9dc209a2019-11-28 16:09:30152 if (rtc_disable_check_msg) {
153 defines += [ "RTC_DISABLE_CHECK_MSG" ]
154 }
155
Zhaoliang Ma72e43212020-08-17 09:13:41156 if (rtc_enable_avx2) {
157 defines += [ "WEBRTC_ENABLE_AVX2" ]
158 }
159
Austin Orionedc946e2021-04-05 23:30:20160 if (rtc_enable_win_wgc) {
161 defines += [ "RTC_ENABLE_WIN_WGC" ]
162 }
163
Mirko Bonadeibb547202017-09-15 04:15:48164 # Some tests need to declare their own trace event handlers. If this define is
165 # not set, the first time TRACE_EVENT_* is called it will store the return
166 # value for the current handler in an static variable, so that subsequent
167 # changes to the handler for that TRACE_EVENT_* will be ignored.
168 # So when tests are included, we set this define, making it possible to use
169 # different event handlers in different tests.
ehmaldonado37d7a222016-11-08 14:34:20170 if (rtc_include_tests) {
Mirko Bonadeibb547202017-09-15 04:15:48171 defines += [ "WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1" ]
172 } else {
173 defines += [ "WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=0" ]
174 }
175 if (build_with_chromium) {
Mirko Bonadei8e5014a2018-08-02 11:36:10176 defines += [ "WEBRTC_CHROMIUM_BUILD" ]
Mirko Bonadeibb547202017-09-15 04:15:48177 include_dirs = [
178 # The overrides must be included first as that is the mechanism for
179 # selecting the override headers in Chromium.
180 "../webrtc_overrides",
181
182 # Allow includes to be prefixed with webrtc/ in case it is not an
183 # immediate subdirectory of the top-level.
184 ".",
Tomas Popela762543f2018-12-12 13:37:51185
186 # Just like the root WebRTC directory is added to include path, the
187 # corresponding directory tree with generated files needs to be added too.
188 # Note: this path does not change depending on the current target, e.g.
189 # it is always "//gen/third_party/webrtc" when building with Chromium.
190 # See also: http://cs.chromium.org/?q=%5C"default_include_dirs
191 # https://gn.googlesource.com/gn/+/master/docs/reference.md#target_gen_dir
192 target_gen_dir,
Mirko Bonadeibb547202017-09-15 04:15:48193 ]
194 }
Fabrice de Gans-Riberi09a6cd52018-03-30 17:38:06195 if (is_posix || is_fuchsia) {
Mirko Bonadeibb547202017-09-15 04:15:48196 defines += [ "WEBRTC_POSIX" ]
197 }
198 if (is_ios) {
199 defines += [
200 "WEBRTC_MAC",
201 "WEBRTC_IOS",
202 ]
203 }
Hidehiko Abef264e702020-09-10 09:10:11204 if (is_linux || is_chromeos) {
Mirko Bonadeibb547202017-09-15 04:15:48205 defines += [ "WEBRTC_LINUX" ]
206 }
207 if (is_mac) {
208 defines += [ "WEBRTC_MAC" ]
209 }
Sergey Ulanov6acefdb2017-12-12 01:38:13210 if (is_fuchsia) {
211 defines += [ "WEBRTC_FUCHSIA" ]
212 }
Mirko Bonadeibb547202017-09-15 04:15:48213 if (is_win) {
Mirko Bonadei89a87742018-04-24 07:12:13214 defines += [ "WEBRTC_WIN" ]
Mirko Bonadeibb547202017-09-15 04:15:48215 }
216 if (is_android) {
217 defines += [
218 "WEBRTC_LINUX",
219 "WEBRTC_ANDROID",
220 ]
Dan Minor9c686132018-01-15 15:20:00221
222 if (build_with_mozilla) {
223 defines += [ "WEBRTC_ANDROID_OPENSLES" ]
224 }
Mirko Bonadeibb547202017-09-15 04:15:48225 }
226 if (is_chromeos) {
227 defines += [ "CHROMEOS" ]
228 }
229
230 if (rtc_sanitize_coverage != "") {
231 assert(is_clang, "sanitizer coverage requires clang")
232 cflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ]
233 ldflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ]
234 }
235
236 if (is_ubsan) {
237 cflags += [ "-fsanitize=float-cast-overflow" ]
238 }
Mirko Bonadeibb547202017-09-15 04:15:48239}
240
Mirko Bonadei96ede16a2018-09-06 11:45:44241# TODO(bugs.webrtc.org/9693): Remove the possibility to suppress this warning
242# as soon as WebRTC compiles without it.
Mirko Bonadei96ede16a2018-09-06 11:45:44243config("no_global_constructors") {
244 if (is_clang) {
245 cflags = [ "-Wno-global-constructors" ]
246 }
247}
248
249config("rtc_prod_config") {
250 # Ideally, WebRTC production code (but not test code) should have these flags.
251 if (is_clang) {
252 cflags = [
253 "-Wexit-time-destructors",
254 "-Wglobal-constructors",
255 ]
256 }
257}
258
Mirko Bonadeibb547202017-09-15 04:15:48259config("common_config") {
260 cflags = []
Mirko Bonadeid7573562018-03-19 15:23:48261 cflags_c = []
Mirko Bonadeibb547202017-09-15 04:15:48262 cflags_cc = []
Mirko Bonadeid7573562018-03-19 15:23:48263 cflags_objc = []
Mirko Bonadeibb547202017-09-15 04:15:48264 defines = []
265
266 if (rtc_enable_protobuf) {
267 defines += [ "WEBRTC_ENABLE_PROTOBUF=1" ]
268 } else {
269 defines += [ "WEBRTC_ENABLE_PROTOBUF=0" ]
270 }
271
Mirko Bonadeibb547202017-09-15 04:15:48272 if (rtc_include_internal_audio_device) {
273 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ]
274 }
275
Mirko Bonadei8ef57932018-11-16 13:38:03276 if (rtc_libvpx_build_vp9) {
277 defines += [ "RTC_ENABLE_VP9" ]
Mirko Bonadeibb547202017-09-15 04:15:48278 }
279
philipelb09d8722021-11-23 10:00:24280 if (rtc_include_dav1d_in_internal_decoder_factory) {
281 defines += [ "RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY" ]
282 }
283
Mirko Bonadeibb547202017-09-15 04:15:48284 if (rtc_enable_sctp) {
Mirko Bonadei5eb43b42021-01-18 12:24:40285 defines += [ "WEBRTC_HAVE_SCTP" ]
Mirko Bonadeibb547202017-09-15 04:15:48286 }
287
288 if (rtc_enable_external_auth) {
289 defines += [ "ENABLE_EXTERNAL_AUTH" ]
290 }
291
Johannes Kronb76b9ba2019-02-08 09:13:25292 if (rtc_use_h264) {
293 defines += [ "WEBRTC_USE_H264" ]
294 }
295
Markus Handell8e75bd42020-06-05 09:47:40296 if (rtc_use_absl_mutex) {
297 defines += [ "WEBRTC_ABSL_MUTEX" ]
298 }
299
Artem Titov6a4a1462019-11-26 15:24:46300 if (rtc_disable_logging) {
301 defines += [ "RTC_DISABLE_LOGGING" ]
302 }
303
Doudou Kisabaka2dec4962019-11-28 13:24:31304 if (rtc_disable_trace_events) {
305 defines += [ "RTC_DISABLE_TRACE_EVENTS" ]
306 }
307
Ying Wangef3998f2019-12-09 12:06:53308 if (rtc_disable_metrics) {
309 defines += [ "RTC_DISABLE_METRICS" ]
310 }
311
sazaaa42ecd2020-04-01 13:24:40312 if (rtc_exclude_transient_suppressor) {
313 defines += [ "WEBRTC_EXCLUDE_TRANSIENT_SUPPRESSOR" ]
314 }
315
Per Åhgrencc73ed32020-04-26 21:56:17316 if (rtc_exclude_audio_processing_module) {
317 defines += [ "WEBRTC_EXCLUDE_AUDIO_PROCESSING_MODULE" ]
318 }
319
Peter Kasting47126fa2021-09-28 17:08:54320 # TODO(webrtc:13219): Fix -Wshadow instances and enable.
321 if (is_clang) {
322 cflags += [ "-Wno-shadow" ]
323 }
Mirko Bonadeicee54172019-12-05 14:30:14324
Mirko Bonadeibb547202017-09-15 04:15:48325 if (build_with_chromium) {
326 defines += [
327 # NOTICE: Since common_inherited_config is used in public_configs for our
328 # targets, there's no point including the defines in that config here.
329 # TODO(kjellander): Cleanup unused ones and move defines closer to the
330 # source when webrtc:4256 is completed.
331 "HAVE_WEBRTC_VIDEO",
Mirko Bonadeibb547202017-09-15 04:15:48332 "LOGGING_INSIDE_WEBRTC",
Mirko Bonadeibb547202017-09-15 04:15:48333 ]
334 } else {
Fabrice de Gans-Riberi09a6cd52018-03-30 17:38:06335 if (is_posix || is_fuchsia) {
Mirko Bonadeid7573562018-03-19 15:23:48336 cflags_c += [
337 # TODO(bugs.webrtc.org/9029): enable commented compiler flags.
338 # Some of these flags should also be added to cflags_objc.
339
340 # "-Wextra", (used when building C++ but not when building C)
341 # "-Wmissing-prototypes", (C/Obj-C only)
342 # "-Wmissing-declarations", (ensure this is always used C/C++, etc..)
343 "-Wstrict-prototypes",
344
345 # "-Wpointer-arith", (ensure this is always used C/C++, etc..)
346 # "-Wbad-function-cast", (C/Obj-C only)
347 # "-Wnested-externs", (C/Obj-C only)
348 ]
349 cflags_objc += [ "-Wstrict-prototypes" ]
Mirko Bonadeibb547202017-09-15 04:15:48350 cflags_cc = [
351 "-Wnon-virtual-dtor",
352
353 # This is enabled for clang; enable for gcc as well.
354 "-Woverloaded-virtual",
355 ]
356 }
357
358 if (is_clang) {
359 cflags += [
360 "-Wc++11-narrowing",
Mirko Bonadeibb547202017-09-15 04:15:48361 "-Wundef",
362 ]
363
Mirko Bonadei1a75d5e2021-11-19 07:46:19364 if (!is_nacl) {
365 # Flags NaCl (Clang 3.7) do not recognize.
Mirko Bonadeibb547202017-09-15 04:15:48366 cflags += [ "-Wunused-lambda-capture" ]
367 }
368 }
Mirko Bonadeie7659df2018-05-16 09:50:40369
370 if (is_win && !is_clang) {
371 # MSVC warning suppressions (needed to use Abseil).
372 # TODO(bugs.webrtc.org/9274): Remove these warnings as soon as MSVC allows
373 # external headers warning suppression (or fix them upstream).
374 cflags += [ "/wd4702" ] # unreachable code
Jerome Humbert3e3c5512020-01-13 11:58:26375
376 # MSVC 2019 warning suppressions for C++17 compiling
Patrik Höglund83245bd2020-01-30 08:33:57377 cflags +=
378 [ "/wd5041" ] # out-of-line definition for constexpr static data
379 # member is not needed and is deprecated in C++17
Mirko Bonadeie7659df2018-05-16 09:50:40380 }
Mirko Bonadeibb547202017-09-15 04:15:48381 }
382
383 if (current_cpu == "arm64") {
384 defines += [ "WEBRTC_ARCH_ARM64" ]
385 defines += [ "WEBRTC_HAS_NEON" ]
386 }
387
388 if (current_cpu == "arm") {
389 defines += [ "WEBRTC_ARCH_ARM" ]
390 if (arm_version >= 7) {
391 defines += [ "WEBRTC_ARCH_ARM_V7" ]
392 if (arm_use_neon) {
393 defines += [ "WEBRTC_HAS_NEON" ]
394 }
395 }
396 }
397
398 if (current_cpu == "mipsel") {
399 defines += [ "MIPS32_LE" ]
400 if (mips_float_abi == "hard") {
401 defines += [ "MIPS_FPU_LE" ]
402 }
403 if (mips_arch_variant == "r2") {
404 defines += [ "MIPS32_R2_LE" ]
405 }
406 if (mips_dsp_rev == 1) {
407 defines += [ "MIPS_DSP_R1_LE" ]
408 } else if (mips_dsp_rev == 2) {
409 defines += [
410 "MIPS_DSP_R1_LE",
411 "MIPS_DSP_R2_LE",
412 ]
413 }
414 }
415
416 if (is_android && !is_clang) {
417 # The Android NDK doesn"t provide optimized versions of these
418 # functions. Ensure they are disabled for all compilers.
419 cflags += [
420 "-fno-builtin-cos",
421 "-fno-builtin-sin",
422 "-fno-builtin-cosf",
423 "-fno-builtin-sinf",
424 ]
425 }
426
Max Moroza61fa6e2018-05-29 02:26:58427 if (use_fuzzing_engine && optimize_for_fuzzing) {
Mirko Bonadeibb547202017-09-15 04:15:48428 # Used in Chromium's overrides to disable logging
429 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ]
430 }
Mirko Bonadei20574f42019-03-28 06:50:07431
432 if (!build_with_chromium && rtc_win_undef_unicode) {
433 cflags += [
434 "/UUNICODE",
435 "/U_UNICODE",
436 ]
437 }
Mirko Bonadeibb547202017-09-15 04:15:48438}
439
440config("common_objc") {
Sylvain Defresnec7f0dff2020-07-03 08:19:30441 frameworks = [ "Foundation.framework" ]
Mirko Bonadeibb547202017-09-15 04:15:48442}
443
444if (!build_with_chromium) {
445 # Target to build all the WebRTC production code.
446 rtc_static_library("webrtc") {
Patrik Höglundeeb79e92019-10-17 14:04:07447 # Only the root target and the test should depend on this.
448 visibility = [
449 "//:default",
450 "//:webrtc_lib_link_test",
451 ]
Mirko Bonadeibb547202017-09-15 04:15:48452
453 sources = []
454 complete_static_lib = true
Oleh Prypind2f4e8b2018-08-01 10:18:05455 suppressed_configs += [ "//build/config/compiler:thin_archive" ]
Mirko Bonadeibb547202017-09-15 04:15:48456 defines = []
457
458 deps = [
Mirko Bonadeiba700de2019-10-10 07:23:22459 "api:create_peerconnection_factory",
Yves Gerey06f6bc92018-11-09 09:22:52460 "api:libjingle_peerconnection_api",
Mirko Bonadeieaaaf412019-09-13 12:42:15461 "api:rtc_error",
Mirko Bonadeibb547202017-09-15 04:15:48462 "api:transport_api",
Mirko Bonadeieaaaf412019-09-13 12:42:15463 "api/crypto",
Danil Chapovalov4ba04b72019-06-26 13:49:47464 "api/rtc_event_log:rtc_event_log_factory",
Mirko Bonadeiba700de2019-10-10 07:23:22465 "api/task_queue",
466 "api/task_queue:default_task_queue_factory",
Mirko Bonadeibb547202017-09-15 04:15:48467 "audio",
468 "call",
469 "common_audio",
470 "common_video",
Yves Gerey06f6bc92018-11-09 09:22:52471 "logging:rtc_event_log_api",
Mirko Bonadeibb547202017-09-15 04:15:48472 "media",
473 "modules",
474 "modules/video_capture:video_capture_internal_impl",
Yves Gerey06f6bc92018-11-09 09:22:52475 "p2p:rtc_p2p",
476 "pc:libjingle_peerconnection",
Yves Gerey06f6bc92018-11-09 09:22:52477 "pc:rtc_pc",
Mirko Bonadeibb547202017-09-15 04:15:48478 "rtc_base",
479 "sdk",
Mirko Bonadeibb547202017-09-15 04:15:48480 "video",
Mirko Bonadeibb547202017-09-15 04:15:48481 ]
482
Jiawei Ou08745302019-02-12 19:36:13483 if (rtc_include_builtin_audio_codecs) {
484 deps += [
485 "api/audio_codecs:builtin_audio_decoder_factory",
486 "api/audio_codecs:builtin_audio_encoder_factory",
487 ]
488 }
489
490 if (rtc_include_builtin_video_codecs) {
491 deps += [
492 "api/video_codecs:builtin_video_decoder_factory",
493 "api/video_codecs:builtin_video_encoder_factory",
494 ]
495 }
Yves Gerey12912252018-07-18 20:06:42496
Dan Minor9c686132018-01-15 15:20:00497 if (build_with_mozilla) {
Chen Xing5d24b162019-06-10 10:59:38498 deps += [
499 "api/video:video_frame",
500 "api/video:video_rtp_headers",
501 ]
Dan Minor9c686132018-01-15 15:20:00502 } else {
503 deps += [
504 "api",
505 "logging",
506 "p2p",
507 "pc",
508 "stats",
509 ]
510 }
511
Mirko Bonadeibb547202017-09-15 04:15:48512 if (rtc_enable_protobuf) {
Mirko Bonadeibb547202017-09-15 04:15:48513 deps += [ "logging:rtc_event_log_proto" ]
514 }
515 }
Patrik Höglundeeb79e92019-10-17 14:04:07516
Mirko Bonadeic69fd592020-03-10 14:35:38517 if (rtc_include_tests && !is_asan) {
Patrik Höglund21671632019-10-18 06:04:19518 rtc_executable("webrtc_lib_link_test") {
Patrik Höglundeeb79e92019-10-17 14:04:07519 testonly = true
520
Byoungchan Lee8ed1e932021-05-20 09:30:10521 # This target is used for checking to link, so do not check dependencies
522 # on gn check.
523 check_includes = false # no-presubmit-check TODO(bugs.webrtc.org/12785)
524
Mirko Bonadeiccbe95f2020-01-21 11:10:10525 sources = [ "webrtc_lib_link_test.cc" ]
Patrik Höglundeeb79e92019-10-17 14:04:07526 deps = [
Patrik Höglund21671632019-10-18 06:04:19527 # NOTE: Don't add deps here. If this test fails to link, it means you
528 # need to add stuff to the webrtc static lib target above.
Patrik Höglundeeb79e92019-10-17 14:04:07529 ":webrtc",
Patrik Höglundeeb79e92019-10-17 14:04:07530 ]
531 }
532 }
Mirko Bonadeibb547202017-09-15 04:15:48533}
534
Nico Weberdf644be2019-03-18 01:06:11535if (use_libfuzzer || use_afl) {
Mirko Bonadeibb547202017-09-15 04:15:48536 # This target is only here for gn to discover fuzzer build targets under
537 # webrtc/test/fuzzers/.
538 group("webrtc_fuzzers_dummy") {
539 testonly = true
Mirko Bonadeiccbe95f2020-01-21 11:10:10540 deps = [ "test/fuzzers:webrtc_fuzzer_main" ]
Mirko Bonadeibb547202017-09-15 04:15:48541 }
542}
543
Andrey Logvine7c79fd2021-02-01 09:56:37544if (rtc_include_tests && !build_with_chromium) {
Mirko Bonadeibb547202017-09-15 04:15:48545 rtc_test("rtc_unittests") {
546 testonly = true
547
548 deps = [
Harald Alvestrand3cc45d42019-03-14 04:42:04549 "api:compile_all_headers",
Mirko Bonadeibb547202017-09-15 04:15:48550 "api:rtc_api_unittests",
Fredrik Solenbergbbf21a32018-04-12 20:44:09551 "api/audio/test:audio_api_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48552 "api/audio_codecs/test:audio_codecs_api_unittests",
Artem Titov9d777622020-09-18 16:23:08553 "api/numerics:numerics_unittests",
Patrik Höglund56d94522019-11-18 14:53:32554 "api/transport:stun_unittest",
Stefan Holmerf7044682018-07-17 08:16:41555 "api/video/test:rtc_api_video_unittests",
Anders Carlssondd3e0ab2018-06-12 09:15:56556 "api/video_codecs/test:video_codecs_api_unittests",
Tim Na76bbc982021-01-28 18:52:38557 "api/voip:compile_all_headers",
Sebastian Jansson487c09b2019-02-21 15:21:51558 "call:fake_network_pipe_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48559 "p2p:libstunprober_unittests",
560 "p2p:rtc_p2p_unittests",
Mirko Bonadei3d259352020-10-23 10:04:40561 "rtc_base:callback_list_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48562 "rtc_base:rtc_base_approved_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48563 "rtc_base:rtc_base_unittests",
Sam Zackrissonb45bdb52018-10-02 14:25:59564 "rtc_base:rtc_json_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48565 "rtc_base:rtc_numerics_unittests",
Henrik Boström27c29362019-10-21 13:21:55566 "rtc_base:rtc_operations_chain_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48567 "rtc_base:rtc_task_queue_unittests",
Artem Titove41c4332018-07-25 13:04:28568 "rtc_base:sigslot_unittest",
Karl Wiberg70026f92020-09-18 08:03:16569 "rtc_base:untyped_function_unittest",
Mirko Bonadeibb547202017-09-15 04:15:48570 "rtc_base:weak_ptr_unittests",
Sebastian Jansson2808ae92018-04-09 09:13:04571 "rtc_base/experiments:experiments_unittests",
Björn Tereliuscbd61562021-03-25 14:52:16572 "rtc_base/system:file_wrapper_unittests",
Tommi3c9bcc12020-04-15 14:45:47573 "rtc_base/task_utils:pending_task_safety_flag_unittests",
Evan Shrubsole45448e92021-11-15 16:27:44574 "rtc_base/task_utils:repeating_task_unittests",
Danil Chapovalov3b548dd2019-03-01 13:58:44575 "rtc_base/task_utils:to_queued_task_unittests",
Evan Shrubsole195b0a92022-03-21 16:16:39576 "rtc_base/time:timestamp_extrapolator_unittests",
Evan Shrubsole21e97f92022-01-11 12:50:00577 "rtc_base/units:units_unittests",
Niels Möllerdac03d92019-02-13 07:52:27578 "sdk:sdk_tests",
Tommi25eb47c2019-08-29 14:39:05579 "test:rtp_test_utils",
Niels Möller04a3cc12019-05-21 11:01:58580 "test:test_main",
Artem Titov386802e2019-07-05 08:48:17581 "test/network:network_emulation_unittests",
Mirko Bonadeibb547202017-09-15 04:15:48582 ]
583
584 if (rtc_enable_protobuf) {
585 deps += [ "logging:rtc_event_log_tests" ]
586 }
587
588 if (is_android) {
Sami Kalliomäki78498cf2018-02-07 15:59:33589 # Do not use Chromium's launcher. native_unittests defines its own JNI_OnLoad.
590 use_default_launcher = false
591
592 deps += [
593 "sdk/android:native_unittests",
594 "sdk/android:native_unittests_java",
595 "//testing/android/native_test:native_test_support",
596 ]
Mirko Bonadeibb547202017-09-15 04:15:48597 shard_timeout = 900
598 }
Mirko Bonadeibb547202017-09-15 04:15:48599 }
600
Andrey Logvin5e227ab2021-01-29 10:34:55601 if (enable_google_benchmarks) {
602 rtc_test("benchmarks") {
603 testonly = true
604 deps = [
605 "rtc_base/synchronization:mutex_benchmark",
606 "test:benchmark_main",
607 ]
608 }
Markus Handellf70fbc82020-06-03 22:41:20609 }
610
Mirko Bonadeibb547202017-09-15 04:15:48611 # TODO(pbos): Rename test suite, this is no longer "just" for video targets.
612 video_engine_tests_resources = [
Mirko Bonadei92ea95e2017-09-15 04:47:31613 "resources/foreman_cif_short.yuv",
614 "resources/voice_engine/audio_long16.pcm",
Mirko Bonadeibb547202017-09-15 04:15:48615 ]
616
617 if (is_ios) {
618 bundle_data("video_engine_tests_bundle_data") {
619 testonly = true
620 sources = video_engine_tests_resources
Mirko Bonadeiccbe95f2020-01-21 11:10:10621 outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ]
Mirko Bonadeibb547202017-09-15 04:15:48622 }
623 }
624
625 rtc_test("video_engine_tests") {
626 testonly = true
627 deps = [
628 "audio:audio_tests",
629
630 # TODO(eladalon): call_tests aren't actually video-specific, so we
631 # should move them to a more appropriate test suite.
632 "call:call_tests",
Henrik Boströmb04b2a12019-12-10 13:14:09633 "call/adaptation:resource_adaptation_tests",
Mirko Bonadeibb547202017-09-15 04:15:48634 "test:test_common",
635 "test:test_main",
636 "test:video_test_common",
Niels Möller679f1cb2021-12-21 14:45:30637 "video:video_legacy_tests",
Mirko Bonadeibb547202017-09-15 04:15:48638 "video:video_tests",
Henrik Boströmefbec9a2020-03-06 09:41:25639 "video/adaptation:video_adaptation_tests",
Mirko Bonadeibb547202017-09-15 04:15:48640 ]
641 data = video_engine_tests_resources
Mirko Bonadeibb547202017-09-15 04:15:48642 if (is_android) {
Björn Terelius0c68a7a2022-04-19 13:32:37643 use_default_launcher = false
644 deps += [
645 "//build/android/gtest_apk:native_test_instrumentation_test_runner_java",
646 "//testing/android/native_test:native_test_java",
647 "//testing/android/native_test:native_test_support",
648 ]
Mirko Bonadeibb547202017-09-15 04:15:48649 shard_timeout = 900
650 }
651 if (is_ios) {
652 deps += [ ":video_engine_tests_bundle_data" ]
653 }
654 }
655
656 webrtc_perf_tests_resources = [
Natalie Chouinard65bbcab2019-12-23 22:02:25657 "resources/ConferenceMotion_1280_720_50.yuv",
Mirko Bonadei92ea95e2017-09-15 04:47:31658 "resources/audio_coding/speech_mono_16kHz.pcm",
659 "resources/audio_coding/speech_mono_32_48kHz.pcm",
660 "resources/audio_coding/testfile32kHz.pcm",
Mirko Bonadei92ea95e2017-09-15 04:47:31661 "resources/difficult_photo_1850_1110.yuv",
662 "resources/foreman_cif.yuv",
Mirko Bonadei92ea95e2017-09-15 04:47:31663 "resources/paris_qcif.yuv",
664 "resources/photo_1850_1110.yuv",
665 "resources/presentation_1850_1110.yuv",
Mirko Bonadei92ea95e2017-09-15 04:47:31666 "resources/voice_engine/audio_long16.pcm",
667 "resources/web_screenshot_1850_1110.yuv",
Mirko Bonadeibb547202017-09-15 04:15:48668 ]
669
670 if (is_ios) {
671 bundle_data("webrtc_perf_tests_bundle_data") {
672 testonly = true
673 sources = webrtc_perf_tests_resources
Mirko Bonadeiccbe95f2020-01-21 11:10:10674 outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ]
Mirko Bonadeibb547202017-09-15 04:15:48675 }
676 }
677
678 rtc_test("webrtc_perf_tests") {
679 testonly = true
Mirko Bonadeibb547202017-09-15 04:15:48680 deps = [
681 "audio:audio_perf_tests",
682 "call:call_perf_tests",
683 "modules/audio_coding:audio_coding_perf_tests",
684 "modules/audio_processing:audio_processing_perf_tests",
Seth Hampsond1003d72018-06-22 22:40:16685 "pc:peerconnection_perf_tests",
Mirko Bonadeibb547202017-09-15 04:15:48686 "test:test_main",
687 "video:video_full_stack_tests",
Artem Titov137f6c82019-05-17 08:51:15688 "video:video_pc_full_stack_tests",
Mirko Bonadeibb547202017-09-15 04:15:48689 ]
690
Artem Titarenko01d04fa2019-07-12 09:19:54691 data = webrtc_perf_tests_resources
Mirko Bonadeibb547202017-09-15 04:15:48692 if (is_android) {
Björn Terelius0c68a7a2022-04-19 13:32:37693 use_default_launcher = false
694 deps += [
695 "//build/android/gtest_apk:native_test_instrumentation_test_runner_java",
696 "//testing/android/native_test:native_test_java",
697 "//testing/android/native_test:native_test_support",
698 ]
Oleh Prypin2aa03792018-12-13 07:48:13699 shard_timeout = 4500
Mirko Bonadeibb547202017-09-15 04:15:48700 }
701 if (is_ios) {
702 deps += [ ":webrtc_perf_tests_bundle_data" ]
703 }
704 }
705
706 rtc_test("webrtc_nonparallel_tests") {
707 testonly = true
Mirko Bonadeiccbe95f2020-01-21 11:10:10708 deps = [ "rtc_base:rtc_base_nonparallel_tests" ]
Mirko Bonadeibb547202017-09-15 04:15:48709 if (is_android) {
710 deps += [ "//testing/android/native_test:native_test_support" ]
711 shard_timeout = 900
712 }
713 }
Tim Na8ab3c772020-03-27 00:16:51714
715 rtc_test("voip_unittests") {
716 testonly = true
717 deps = [
Tim Na76bbc982021-01-28 18:52:38718 "api/voip:compile_all_headers",
Tim Nac0df5fc2020-05-05 18:03:54719 "api/voip:voip_engine_factory_unittests",
720 "audio/voip/test:audio_channel_unittests",
Tim Na8ab3c772020-03-27 00:16:51721 "audio/voip/test:audio_egress_unittests",
Tim Na11f92bc2020-04-21 16:39:25722 "audio/voip/test:audio_ingress_unittests",
Tim Nac0df5fc2020-05-05 18:03:54723 "audio/voip/test:voip_core_unittests",
Tim Na8ab3c772020-03-27 00:16:51724 "test:test_main",
725 ]
726 }
wjia@webrtc.org03cfde22014-01-14 17:48:34727}
Karl Wibergbb23c832018-04-22 17:55:00728
Philipp Hanckec1282772021-11-24 07:18:31729# Build target for standalone dcsctp
730rtc_static_library("dcsctp") {
731 # Only the root target should depend on this.
732 visibility = [ "//:default" ]
733 sources = []
734 complete_static_lib = true
735 suppressed_configs += [ "//build/config/compiler:thin_archive" ]
736 defines = []
737 deps = [
738 "net/dcsctp/public:factory",
739 "net/dcsctp/public:socket",
740 "net/dcsctp/public:types",
741 "net/dcsctp/socket:dcsctp_socket",
742 "net/dcsctp/timer:task_queue_timeout",
Philipp Hanckec1282772021-11-24 07:18:31743 ]
744}
745
Karl Wibergbb23c832018-04-22 17:55:00746# ---- Poisons ----
747#
748# Here is one empty dummy target for each poison type (needed because
749# "being poisonous with poison type foo" is implemented as "depends on
750# //:poison_foo").
751#
752# The set of poison_* targets needs to be kept in sync with the
753# `all_poison_types` list in webrtc.gni.
754#
755group("poison_audio_codecs") {
756}
Anders Carlsson1f433e42018-04-24 14:39:05757
Sam Zackrisson492fdf42019-10-25 08:45:58758group("poison_default_task_queue") {
Anders Carlsson1f433e42018-04-24 14:39:05759}
Danil Chapovalov41300af2019-07-10 10:44:43760
Sam Zackrisson03cb7e52021-12-06 14:40:04761group("poison_default_echo_detector") {
762}
763
Sam Zackrisson492fdf42019-10-25 08:45:58764group("poison_rtc_json") {
765}
766
767group("poison_software_video_codecs") {
Danil Chapovalov41300af2019-07-10 10:44:43768}