blob: 6153e4fd92c42d85292bb98ac96078083ec4b07d [file] [log] [blame]
wjia@webrtc.org03cfde22014-01-14 17:48:34 +00001# 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 11:35:26 +01009# 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
Mirko Bonadeibb547202017-09-15 06:15:48 +020015import("//build/config/linux/pkg_config.gni")
16import("//build/config/sanitizers/sanitizers.gni")
17import("webrtc.gni")
18import("//third_party/protobuf/proto_library.gni")
19if (is_android) {
20 import("//build/config/android/config.gni")
21 import("//build/config/android/rules.gni")
22}
ehmaldonado37d7a222016-11-08 06:34:20 -080023
Mirko Bonadeibb547202017-09-15 06:15:48 +020024if (!build_with_chromium) {
Patrik Höglund29dd6d72017-12-01 11:35:26 +010025 # This target should (transitively) cause everything to be built; if you run
26 # 'ninja default' and then 'ninja all', the second build should do no work.
Mirko Bonadeibb547202017-09-15 06:15:48 +020027 group("default") {
28 testonly = true
29 deps = [
30 ":webrtc",
Mirko Bonadeibb547202017-09-15 06:15:48 +020031 ]
Joachim Bauch93e91342017-12-07 01:25:53 +010032 if (rtc_build_examples) {
33 deps += [ "examples" ]
34 }
35 if (rtc_build_tools) {
36 deps += [ "rtc_tools" ]
37 }
Mirko Bonadeibb547202017-09-15 06:15:48 +020038 if (rtc_include_tests) {
Patrik Höglund29dd6d72017-12-01 11:35:26 +010039 deps += [
40 ":rtc_unittests",
41 ":video_engine_tests",
42 ":webrtc_nonparallel_tests",
43 ":webrtc_perf_tests",
44 "common_audio:common_audio_unittests",
45 "common_video:common_video_unittests",
46 "media:rtc_media_unittests",
47 "modules:modules_tests",
48 "modules:modules_unittests",
49 "modules/audio_coding:audio_coding_tests",
50 "modules/audio_processing:audio_processing_tests",
51 "modules/remote_bitrate_estimator:bwe_simulations_tests",
52 "modules/rtp_rtcp:test_packet_masks_metrics",
53 "modules/video_capture:video_capture_internal_impl",
54 "ortc:ortc_unittests",
55 "pc:peerconnection_unittests",
56 "pc:rtc_pc_unittests",
57 "rtc_base:rtc_base_tests_utils",
58 "stats:rtc_stats_unittests",
59 "system_wrappers:system_wrappers_unittests",
60 "test",
61 "video:screenshare_loopback",
62 "video:video_loopback",
63 "voice_engine:voice_engine_unittests",
64 ]
65 if (is_android) {
66 deps += [
67 ":android_junit_tests",
68 "sdk/android:libjingle_peerconnection_android_unittest",
69 ]
70 } else {
71 deps += [ "modules/video_capture:video_capture_tests" ]
72 }
73 if (rtc_enable_protobuf) {
74 deps += [
75 "audio:low_bandwidth_audio_test",
76 "logging:rtc_event_log2rtp_dump",
77 ]
78 }
Mirko Bonadeibb547202017-09-15 06:15:48 +020079 }
80 }
81}
82
83# Contains the defines and includes in common.gypi that are duplicated both as
84# target_defaults and direct_dependent_settings.
85config("common_inherited_config") {
86 defines = []
87 cflags = []
88 ldflags = []
89 if (build_with_mozilla) {
90 defines += [ "WEBRTC_MOZILLA_BUILD" ]
91 }
92
93 # Some tests need to declare their own trace event handlers. If this define is
94 # not set, the first time TRACE_EVENT_* is called it will store the return
95 # value for the current handler in an static variable, so that subsequent
96 # changes to the handler for that TRACE_EVENT_* will be ignored.
97 # So when tests are included, we set this define, making it possible to use
98 # different event handlers in different tests.
ehmaldonado37d7a222016-11-08 06:34:20 -080099 if (rtc_include_tests) {
Mirko Bonadeibb547202017-09-15 06:15:48 +0200100 defines += [ "WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=1" ]
101 } else {
102 defines += [ "WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS=0" ]
103 }
104 if (build_with_chromium) {
105 defines += [
106 # TODO(kjellander): Cleanup unused ones and move defines closer to
107 # the source when webrtc:4256 is completed.
108 "FEATURE_ENABLE_VOICEMAIL",
109 "GTEST_RELATIVE_PATH",
110 "WEBRTC_CHROMIUM_BUILD",
111 ]
112 include_dirs = [
113 # The overrides must be included first as that is the mechanism for
114 # selecting the override headers in Chromium.
115 "../webrtc_overrides",
116
117 # Allow includes to be prefixed with webrtc/ in case it is not an
118 # immediate subdirectory of the top-level.
119 ".",
120 ]
121 }
122 if (is_posix) {
123 defines += [ "WEBRTC_POSIX" ]
124 }
125 if (is_ios) {
126 defines += [
127 "WEBRTC_MAC",
128 "WEBRTC_IOS",
129 ]
130 }
131 if (is_linux) {
132 defines += [ "WEBRTC_LINUX" ]
133 }
134 if (is_mac) {
135 defines += [ "WEBRTC_MAC" ]
136 }
Sergey Ulanov6acefdb2017-12-11 17:38:13 -0800137 if (is_fuchsia) {
138 defines += [ "WEBRTC_FUCHSIA" ]
139 }
Mirko Bonadeibb547202017-09-15 06:15:48 +0200140 if (is_win) {
141 defines += [
142 "WEBRTC_WIN",
143 "_CRT_SECURE_NO_WARNINGS", # Suppress warnings about _vsnprinf
144 ]
145 }
146 if (is_android) {
147 defines += [
148 "WEBRTC_LINUX",
149 "WEBRTC_ANDROID",
150 ]
151 }
152 if (is_chromeos) {
153 defines += [ "CHROMEOS" ]
154 }
155
156 if (rtc_sanitize_coverage != "") {
157 assert(is_clang, "sanitizer coverage requires clang")
158 cflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ]
159 ldflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ]
160 }
161
162 if (is_ubsan) {
163 cflags += [ "-fsanitize=float-cast-overflow" ]
164 }
165
166 # TODO(GYP): Support these in GN.
167 # if (is_bsd) {
168 # defines += [ "BSD" ]
169 # }
170 # if (is_openbsd) {
171 # defines += [ "OPENBSD" ]
172 # }
173 # if (is_freebsd) {
174 # defines += [ "FREEBSD" ]
175 # }
176}
177
178config("common_config") {
179 cflags = []
180 cflags_cc = []
181 defines = []
182
183 if (rtc_enable_protobuf) {
184 defines += [ "WEBRTC_ENABLE_PROTOBUF=1" ]
185 } else {
186 defines += [ "WEBRTC_ENABLE_PROTOBUF=0" ]
187 }
188
189 if (rtc_restrict_logging) {
190 defines += [ "WEBRTC_RESTRICT_LOGGING" ]
191 }
192
193 if (rtc_include_internal_audio_device) {
194 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ]
195 }
196
197 if (!rtc_libvpx_build_vp9) {
198 defines += [ "RTC_DISABLE_VP9" ]
199 }
200
201 if (rtc_enable_sctp) {
202 defines += [ "HAVE_SCTP" ]
203 }
204
205 if (rtc_enable_external_auth) {
206 defines += [ "ENABLE_EXTERNAL_AUTH" ]
207 }
208
209 if (build_with_chromium) {
210 defines += [
211 # NOTICE: Since common_inherited_config is used in public_configs for our
212 # targets, there's no point including the defines in that config here.
213 # TODO(kjellander): Cleanup unused ones and move defines closer to the
214 # source when webrtc:4256 is completed.
215 "HAVE_WEBRTC_VIDEO",
216 "HAVE_WEBRTC_VOICE",
217 "LOGGING_INSIDE_WEBRTC",
218 "USE_WEBRTC_DEV_BRANCH",
219 ]
220 } else {
221 if (is_posix) {
222 # Enable more warnings: -Wextra is currently disabled in Chromium.
223 cflags = [
224 "-Wextra",
225
226 # Repeat some flags that get overridden by -Wextra.
227 "-Wno-unused-parameter",
228 "-Wno-missing-field-initializers",
229 "-Wno-strict-overflow",
230 ]
231 cflags_cc = [
232 "-Wnon-virtual-dtor",
233
234 # This is enabled for clang; enable for gcc as well.
235 "-Woverloaded-virtual",
236 ]
237 }
238
239 if (is_clang) {
240 cflags += [
241 "-Wc++11-narrowing",
242 "-Wimplicit-fallthrough",
243 "-Wthread-safety",
244 "-Winconsistent-missing-override",
245 "-Wundef",
246 ]
247
248 # use_xcode_clang only refers to the iOS toolchain, host binaries use
249 # chromium's clang always.
250 if (!is_nacl &&
251 (!use_xcode_clang || current_toolchain == host_toolchain)) {
252 # Flags NaCl (Clang 3.7) and Xcode 7.3 (Clang clang-703.0.31) do not
253 # recognize.
254 cflags += [ "-Wunused-lambda-capture" ]
255 }
256 }
257 }
258
259 if (current_cpu == "arm64") {
260 defines += [ "WEBRTC_ARCH_ARM64" ]
261 defines += [ "WEBRTC_HAS_NEON" ]
262 }
263
264 if (current_cpu == "arm") {
265 defines += [ "WEBRTC_ARCH_ARM" ]
266 if (arm_version >= 7) {
267 defines += [ "WEBRTC_ARCH_ARM_V7" ]
268 if (arm_use_neon) {
269 defines += [ "WEBRTC_HAS_NEON" ]
270 }
271 }
272 }
273
274 if (current_cpu == "mipsel") {
275 defines += [ "MIPS32_LE" ]
276 if (mips_float_abi == "hard") {
277 defines += [ "MIPS_FPU_LE" ]
278 }
279 if (mips_arch_variant == "r2") {
280 defines += [ "MIPS32_R2_LE" ]
281 }
282 if (mips_dsp_rev == 1) {
283 defines += [ "MIPS_DSP_R1_LE" ]
284 } else if (mips_dsp_rev == 2) {
285 defines += [
286 "MIPS_DSP_R1_LE",
287 "MIPS_DSP_R2_LE",
288 ]
289 }
290 }
291
292 if (is_android && !is_clang) {
293 # The Android NDK doesn"t provide optimized versions of these
294 # functions. Ensure they are disabled for all compilers.
295 cflags += [
296 "-fno-builtin-cos",
297 "-fno-builtin-sin",
298 "-fno-builtin-cosf",
299 "-fno-builtin-sinf",
300 ]
301 }
302
303 if (use_libfuzzer || use_drfuzz || use_afl) {
304 # Used in Chromium's overrides to disable logging
305 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ]
306 }
307}
308
309config("common_objc") {
310 libs = [ "Foundation.framework" ]
311}
312
313if (!build_with_chromium) {
314 # Target to build all the WebRTC production code.
315 rtc_static_library("webrtc") {
316 # Only the root target should depend on this.
317 visibility = [ "//:default" ]
318
319 sources = []
320 complete_static_lib = true
321 defines = []
322
323 deps = [
324 ":webrtc_common",
325 "api",
326 "api:transport_api",
327 "audio",
328 "call",
329 "common_audio",
330 "common_video",
331 "logging",
332 "media",
333 "modules",
334 "modules/video_capture:video_capture_internal_impl",
335 "ortc",
336 "p2p",
337 "pc",
338 "rtc_base",
339 "sdk",
340 "stats",
341 "system_wrappers:system_wrappers_default",
342 "video",
343 "voice_engine",
344 ]
345
346 if (rtc_enable_protobuf) {
347 defines += [ "ENABLE_RTC_EVENT_LOG" ]
348 deps += [ "logging:rtc_event_log_proto" ]
349 }
350 }
Mirko Bonadeibb547202017-09-15 06:15:48 +0200351}
352
353rtc_static_library("webrtc_common") {
Mirko Bonadeibb547202017-09-15 06:15:48 +0200354 sources = [
355 "common_types.cc",
356 "common_types.h",
357 "typedefs.h",
358 ]
359
360 if (!build_with_chromium && is_clang) {
361 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
362 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
363 }
364}
365
366if (use_libfuzzer || use_drfuzz || use_afl) {
367 # This target is only here for gn to discover fuzzer build targets under
368 # webrtc/test/fuzzers/.
369 group("webrtc_fuzzers_dummy") {
370 testonly = true
371 deps = [
372 "test/fuzzers:webrtc_fuzzer_main",
373 ]
374 }
375}
376
377if (rtc_include_tests) {
378 config("rtc_unittests_config") {
379 # GN orders flags on a target before flags from configs. The default config
380 # adds -Wall, and this flag have to be after -Wall -- so they need to
381 # come from a config and can"t be on the target directly.
382 if (is_clang) {
383 cflags = [
384 "-Wno-sign-compare",
385 "-Wno-unused-const-variable",
386 ]
387 }
388 }
389
390 rtc_test("rtc_unittests") {
391 testonly = true
392
393 deps = [
394 ":webrtc_common",
395 "api:rtc_api_unittests",
396 "api/audio_codecs/test:audio_codecs_api_unittests",
397 "p2p:libstunprober_unittests",
398 "p2p:rtc_p2p_unittests",
399 "rtc_base:rtc_base_approved_unittests",
400 "rtc_base:rtc_base_tests_main",
401 "rtc_base:rtc_base_tests_utils",
402 "rtc_base:rtc_base_unittests",
403 "rtc_base:rtc_numerics_unittests",
404 "rtc_base:rtc_task_queue_unittests",
405 "rtc_base:sequenced_task_checker_unittests",
406 "rtc_base:weak_ptr_unittests",
407 "system_wrappers:metrics_default",
408 ]
409
410 if (rtc_enable_protobuf) {
411 deps += [ "logging:rtc_event_log_tests" ]
412 }
413
414 if (is_android) {
415 deps += [ "//testing/android/native_test:native_test_support" ]
416 shard_timeout = 900
417 }
418
419 if (is_ios || is_mac) {
420 deps += [ "sdk:sdk_unittests_objc" ]
421 }
422 }
423
424 # TODO(pbos): Rename test suite, this is no longer "just" for video targets.
425 video_engine_tests_resources = [
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200426 "resources/foreman_cif_short.yuv",
427 "resources/voice_engine/audio_long16.pcm",
Mirko Bonadeibb547202017-09-15 06:15:48 +0200428 ]
429
430 if (is_ios) {
431 bundle_data("video_engine_tests_bundle_data") {
432 testonly = true
433 sources = video_engine_tests_resources
434 outputs = [
435 "{{bundle_resources_dir}}/{{source_file_part}}",
436 ]
437 }
438 }
439
440 rtc_test("video_engine_tests") {
441 testonly = true
442 deps = [
443 "audio:audio_tests",
444
445 # TODO(eladalon): call_tests aren't actually video-specific, so we
446 # should move them to a more appropriate test suite.
447 "call:call_tests",
448 "modules/video_capture",
449 "rtc_base:rtc_base_tests_utils",
450 "test:test_common",
451 "test:test_main",
452 "test:video_test_common",
453 "video:video_tests",
454 ]
455 data = video_engine_tests_resources
456 if (!build_with_chromium && is_clang) {
457 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
458 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
459 }
460 if (is_android) {
461 deps += [ "//testing/android/native_test:native_test_native_code" ]
462 shard_timeout = 900
463 }
464 if (is_ios) {
465 deps += [ ":video_engine_tests_bundle_data" ]
466 }
467 }
468
469 webrtc_perf_tests_resources = [
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200470 "resources/audio_coding/speech_mono_16kHz.pcm",
471 "resources/audio_coding/speech_mono_32_48kHz.pcm",
472 "resources/audio_coding/testfile32kHz.pcm",
473 "resources/ConferenceMotion_1280_720_50.yuv",
474 "resources/difficult_photo_1850_1110.yuv",
475 "resources/foreman_cif.yuv",
476 "resources/google-wifi-3mbps.rx",
477 "resources/paris_qcif.yuv",
478 "resources/photo_1850_1110.yuv",
479 "resources/presentation_1850_1110.yuv",
480 "resources/verizon4g-downlink.rx",
481 "resources/voice_engine/audio_long16.pcm",
482 "resources/web_screenshot_1850_1110.yuv",
Mirko Bonadeibb547202017-09-15 06:15:48 +0200483 ]
484
485 if (is_ios) {
486 bundle_data("webrtc_perf_tests_bundle_data") {
487 testonly = true
488 sources = webrtc_perf_tests_resources
489 outputs = [
490 "{{bundle_resources_dir}}/{{source_file_part}}",
491 ]
492 }
493 }
494
495 rtc_test("webrtc_perf_tests") {
496 testonly = true
497 configs += [ ":rtc_unittests_config" ]
498
499 deps = [
500 "audio:audio_perf_tests",
501 "call:call_perf_tests",
502 "modules/audio_coding:audio_coding_perf_tests",
503 "modules/audio_processing:audio_processing_perf_tests",
504 "modules/remote_bitrate_estimator:remote_bitrate_estimator_perf_tests",
505 "test:test_main",
506 "video:video_full_stack_tests",
507 ]
508
509 data = webrtc_perf_tests_resources
510 if (is_android) {
Rasmus Brandt31027342017-09-29 13:48:12 +0000511 deps += [ "//testing/android/native_test:native_test_native_code" ]
Mirko Bonadeibb547202017-09-15 06:15:48 +0200512 shard_timeout = 2700
513 }
514 if (is_ios) {
515 deps += [ ":webrtc_perf_tests_bundle_data" ]
516 }
517 }
518
519 rtc_test("webrtc_nonparallel_tests") {
520 testonly = true
521 deps = [
522 "rtc_base:rtc_base_nonparallel_tests",
523 ]
524 if (is_android) {
525 deps += [ "//testing/android/native_test:native_test_support" ]
526 shard_timeout = 900
527 }
528 }
529
530 if (is_android) {
531 junit_binary("android_junit_tests") {
532 java_files = [
533 "examples/androidjunit/src/org/appspot/apprtc/BluetoothManagerTest.java",
534 "examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java",
535 "examples/androidjunit/src/org/appspot/apprtc/TCPChannelClientTest.java",
536 "sdk/android/tests/src/org/webrtc/CameraEnumerationTest.java",
537 ]
538
539 deps = [
540 "examples:AppRTCMobile_javalib",
541 "sdk/android:libjingle_peerconnection_java",
542 "//base:base_java_test_support",
543 ]
544 }
ehmaldonado37d7a222016-11-08 06:34:20 -0800545 }
wjia@webrtc.org03cfde22014-01-14 17:48:34 +0000546}