blob: c33055ce76cedc6c76c795c1fbf5a3aff4c73142 [file] [log] [blame]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +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
kjellander@webrtc.org7497fa72014-06-28 18:05:22 +00009# TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330.
10
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000011import("//build/config/linux/pkg_config.gni")
Peter Boström62e9bda2015-11-23 15:12:06 +010012import("//build/config/sanitizers/sanitizers.gni")
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000013import("build/webrtc.gni")
Bjorn Terelius36411852015-07-30 12:45:18 +020014import("//third_party/protobuf/proto_library.gni")
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000015
16# Contains the defines and includes in common.gypi that are duplicated both as
17# target_defaults and direct_dependent_settings.
18config("common_inherited_config") {
19 defines = []
Johan Ahlers9ddac182016-07-22 08:57:23 +020020 cflags = []
21 ldflags = []
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000022 if (build_with_mozilla) {
23 defines += [ "WEBRTC_MOZILLA_BUILD" ]
24 }
25 if (build_with_chromium) {
kjellanderf0e174a2016-05-30 06:27:50 -070026 defines = [
27 # TODO(kjellander): Cleanup unused ones and move defines closer to
28 # the source when webrtc:4256 is completed.
29 "FEATURE_ENABLE_SSL",
30 "FEATURE_ENABLE_VOICEMAIL",
31 "EXPAT_RELATIVE_PATH",
32 "GTEST_RELATIVE_PATH",
33 "NO_MAIN_THREAD_WRAPPING",
34 "NO_SOUND_SYSTEM",
35 "WEBRTC_CHROMIUM_BUILD",
36 ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000037 include_dirs = [
henrikgee2bf412015-09-30 03:48:52 -070038 # The overrides must be included first as that is the mechanism for
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000039 # selecting the override headers in Chromium.
henrikgee2bf412015-09-30 03:48:52 -070040 "../webrtc_overrides",
Henrik Kjellander57e5fd22015-05-25 12:55:39 +020041
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000042 # Allow includes to be prefixed with webrtc/ in case it is not an
43 # immediate subdirectory of the top-level.
44 "..",
45 ]
46 }
47 if (is_posix) {
48 defines += [ "WEBRTC_POSIX" ]
49 }
50 if (is_ios) {
51 defines += [
52 "WEBRTC_MAC",
53 "WEBRTC_IOS",
54 ]
55 }
Zeke Chin71f6f442015-06-29 14:34:58 -070056 if (is_ios && rtc_use_objc_h264) {
57 defines += [ "WEBRTC_OBJC_H264" ]
58 }
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000059 if (is_linux) {
60 defines += [ "WEBRTC_LINUX" ]
61 }
62 if (is_mac) {
63 defines += [ "WEBRTC_MAC" ]
64 }
65 if (is_win) {
kjellanderf0e174a2016-05-30 06:27:50 -070066 defines += [
67 "WEBRTC_WIN",
68 "_CRT_SECURE_NO_WARNINGS", # Suppress warnings about _vsnprinf
69 ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000070 }
71 if (is_android) {
72 defines += [
73 "WEBRTC_LINUX",
74 "WEBRTC_ANDROID",
75 ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000076 }
kjellanderf0e174a2016-05-30 06:27:50 -070077 if (is_chromeos) {
78 defines += [ "CHROMEOS" ]
79 }
80
Johan Ahlers9ddac182016-07-22 08:57:23 +020081 if (rtc_sanitize_coverage != "") {
82 assert(is_clang, "sanitizer coverage requires clang")
83 cflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ]
84 ldflags += [ "-fsanitize-coverage=${rtc_sanitize_coverage}" ]
85 }
86
kjellanderf0e174a2016-05-30 06:27:50 -070087 # TODO(GYP): Support these in GN.
88 # if (is_bsd) {
89 # defines += [ "BSD" ]
90 # }
91 # if (is_openbsd) {
92 # defines += [ "OPENBSD" ]
93 # }
94 # if (is_freebsd) {
95 # defines += [ "FREEBSD" ]
96 # }
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +000097}
98
kjellander@webrtc.org6d08ca62014-09-07 17:36:10 +000099if (rtc_have_dbus_glib) {
kjellander@webrtc.org7497fa72014-06-28 18:05:22 +0000100 pkg_config("dbus-glib") {
101 packages = [ "dbus-glib-1" ]
102 }
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000103}
104
105config("common_config") {
kjellander@webrtc.org79ee97c2014-09-04 14:10:49 +0000106 cflags = []
107 cflags_cc = []
kjellanderf0e174a2016-05-30 06:27:50 -0700108 defines = []
109
kjellander@webrtc.org6d08ca62014-09-07 17:36:10 +0000110 if (rtc_restrict_logging) {
kjellanderf0e174a2016-05-30 06:27:50 -0700111 defines += [ "WEBRTC_RESTRICT_LOGGING" ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000112 }
113
kjellander82a94492016-06-12 22:12:01 -0700114 if (rtc_include_internal_audio_device) {
115 defines += [ "WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE" ]
116 }
117
kjellander@webrtc.org6d08ca62014-09-07 17:36:10 +0000118 if (rtc_have_dbus_glib) {
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000119 defines += [ "HAVE_DBUS_GLIB" ]
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200120
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000121 # TODO(kjellander): Investigate this, it seems like include <dbus/dbus.h>
122 # is still not found even if the execution of
123 # build/config/linux/pkg-config.py dbus-glib-1 returns correct include
124 # dirs on Linux.
125 all_dependent_configs = [ "dbus-glib" ]
126 }
127
kjellanderc76dc952016-06-03 03:09:32 -0700128 if (rtc_relative_path) {
129 defines += [ "EXPAT_RELATIVE_PATH" ]
130 }
131
brettw@chromium.org9fe11012014-09-09 19:15:33 +0000132 if (build_with_chromium) {
kjellanderf0e174a2016-05-30 06:27:50 -0700133 defines += [
134 # NOTICE: Since common_inherited_config is used in public_configs for our
135 # targets, there's no point including the defines in that config here.
136 # TODO(kjellander): Cleanup unused ones and move defines closer to the
137 # source when webrtc:4256 is completed.
138 "ENABLE_EXTERNAL_AUTH",
139 "HAVE_OPENSSL_SSL_H",
140 "HAVE_SCTP",
141 "HAVE_SRTP",
142 "HAVE_WEBRTC_VIDEO",
143 "HAVE_WEBRTC_VOICE",
144 "LOGGING_INSIDE_WEBRTC",
145 "SRTP_RELATIVE_PATH",
146 "SSL_USE_OPENSSL",
147 "USE_WEBRTC_DEV_BRANCH",
148 ]
brettw@chromium.org9fe11012014-09-09 19:15:33 +0000149 } else {
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000150 if (is_posix) {
151 # -Wextra is currently disabled in Chromium"s common.gypi. Enable
152 # for targets that can handle it. For Android/arm64 right now
153 # there will be an "enumeral and non-enumeral type in conditional
154 # expression" warning in android_tools/ndk_experimental"s version
155 # of stlport.
156 # See: https://code.google.com/p/chromium/issues/detail?id=379699
kjellander@webrtc.org72273912015-02-23 19:08:31 +0000157 if (current_cpu != "arm64" || !is_android) {
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000158 cflags = [
159 "-Wextra",
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200160
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000161 # We need to repeat some flags from Chromium"s common.gypi
162 # here that get overridden by -Wextra.
163 "-Wno-unused-parameter",
164 "-Wno-missing-field-initializers",
165 "-Wno-strict-overflow",
166 ]
167 cflags_cc = [
168 "-Wnon-virtual-dtor",
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200169
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000170 # This is enabled for clang; enable for gcc as well.
171 "-Woverloaded-virtual",
172 ]
173 }
174 }
175
176 if (is_clang) {
kjellander3f032cf2016-04-27 07:13:46 -0700177 cflags += [
178 "-Wimplicit-fallthrough",
179 "-Wthread-safety",
nisse4996eaa2016-05-10 23:28:10 -0700180 "-Winconsistent-missing-override",
kjellander3f032cf2016-04-27 07:13:46 -0700181 ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000182 }
183 }
184
kjellander@webrtc.org72273912015-02-23 19:08:31 +0000185 if (current_cpu == "arm64") {
Andrew MacDonaldcb7f8ce2015-05-19 22:20:17 -0700186 defines += [ "WEBRTC_ARCH_ARM64" ]
187 defines += [ "WEBRTC_HAS_NEON" ]
tkchin@webrtc.org14146e42014-10-31 00:14:39 +0000188 }
189
kjellander@webrtc.org72273912015-02-23 19:08:31 +0000190 if (current_cpu == "arm") {
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000191 defines += [ "WEBRTC_ARCH_ARM" ]
andrew@webrtc.orga56a2c52014-11-26 17:01:40 +0000192 if (arm_version >= 7) {
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000193 defines += [ "WEBRTC_ARCH_ARM_V7" ]
194 if (arm_use_neon) {
Andrew MacDonaldcb7f8ce2015-05-19 22:20:17 -0700195 defines += [ "WEBRTC_HAS_NEON" ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000196 }
197 }
198 }
199
kjellander@webrtc.org72273912015-02-23 19:08:31 +0000200 if (current_cpu == "mipsel") {
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000201 defines += [ "MIPS32_LE" ]
kjellander@webrtc.org6dab6d72015-03-04 09:50:31 +0000202 if (mips_float_abi == "hard") {
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000203 defines += [ "MIPS_FPU_LE" ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000204 }
kjellander@webrtc.orgacb80852015-01-25 19:17:56 +0000205 if (mips_arch_variant == "r2") {
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000206 defines += [ "MIPS32_R2_LE" ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000207 }
208 if (mips_dsp_rev == 1) {
209 defines += [ "MIPS_DSP_R1_LE" ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000210 } else if (mips_dsp_rev == 2) {
211 defines += [
212 "MIPS_DSP_R1_LE",
213 "MIPS_DSP_R2_LE",
214 ]
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000215 }
216 }
217
Henrik Kjellanderc0c7d2e2015-09-07 12:57:42 +0200218 if (is_android && !is_clang) {
Henrik Kjellander5bfc6cb2015-09-21 16:50:45 +0200219 # The Android NDK doesn"t provide optimized versions of these
220 # functions. Ensure they are disabled for all compilers.
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000221 cflags += [
222 "-fno-builtin-cos",
223 "-fno-builtin-sin",
224 "-fno-builtin-cosf",
225 "-fno-builtin-sinf",
226 ]
227 }
katrielcbf81d682016-05-26 01:03:02 -0700228
metzmanf89a5712016-07-25 02:14:09 -0700229 if (use_libfuzzer || use_drfuzz || use_afl) {
katrielcbf81d682016-05-26 01:03:02 -0700230 # Used in Chromium's overrides to disable logging
231 defines += [ "WEBRTC_UNSAFE_FUZZER_MODE" ]
232 }
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000233}
234
kjellander3bcedd32016-06-08 01:14:15 -0700235config("common_objc") {
tkchin2ddfdba2016-08-07 21:37:45 -0700236 libs = [ "Foundation.framework" ]
kjellander3bcedd32016-06-08 01:14:15 -0700237 precompiled_header = "sdk/objc/WebRTC-Prefix.pch"
238 precompiled_source = "sdk/objc/WebRTC-Prefix.pch"
239}
240
Nico Weber3ab32dc2016-08-02 09:53:25 -0400241if (!is_ios || !build_with_chromium) {
ehmaldonado38a21322016-09-02 04:10:34 -0700242 rtc_source_set("webrtc") {
Nico Weber3ab32dc2016-08-02 09:53:25 -0400243 sources = [
244 "call.h",
245 "config.h",
246 "transport.h",
kjellander94cee312016-06-10 01:56:57 -0700247 ]
Bjorn Terelius36411852015-07-30 12:45:18 +0200248
Nico Weber3ab32dc2016-08-02 09:53:25 -0400249 defines = []
Nico Weber3ab32dc2016-08-02 09:53:25 -0400250
251 deps = [
252 ":webrtc_common",
253 "audio",
254 "base:rtc_base",
255 "call",
256 "common_audio",
257 "common_video",
258 "modules",
hbos615d3012016-08-24 01:33:13 -0700259 "stats",
Nico Weber3ab32dc2016-08-02 09:53:25 -0400260 "system_wrappers",
261 "tools",
262 "video",
263 "voice_engine",
264 ]
265
266 if (build_with_chromium) {
267 deps += [ "modules/video_capture" ]
268 } else {
269 # TODO(kjellander): Enable for Chromium as well when bugs.webrtc.org/4256
270 # is fixed. Right now it's not possible due to circular dependencies.
271 deps += [
272 "api",
273 "media",
274 "p2p",
275 "pc",
276 ]
277 }
278
279 if (rtc_enable_protobuf) {
280 defines += [ "ENABLE_RTC_EVENT_LOG" ]
281 deps += [ ":rtc_event_log_proto" ]
282 }
Bjorn Terelius36411852015-07-30 12:45:18 +0200283 }
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +0000284}
285
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +0000286if (!build_with_chromium) {
ehmaldonado38a21322016-09-02 04:10:34 -0700287 rtc_executable("webrtc_tests") {
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +0000288 testonly = true
289 deps = [
290 ":webrtc",
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +0000291 "modules/video_capture:video_capture_internal_impl",
292 "test",
293 ]
294 }
stefan3ab66142016-08-15 06:29:10 -0700295
ehmaldonado38a21322016-09-02 04:10:34 -0700296 rtc_executable("video_loopback") {
stefan3ab66142016-08-15 06:29:10 -0700297 testonly = true
298 sources = [
299 "test/run_test.h",
300 "video/video_loopback.cc",
301 ]
302
303 if (is_mac) {
304 sources += [ "test/mac/run_test.mm" ]
305 } else {
306 sources += [ "test/run_test.cc" ]
307 }
308 deps = [
309 ":video_quality_test",
310 "system_wrappers:metrics_default",
311 "test:field_trial",
312 "test:test_common",
313 "test:test_renderer",
314 "//testing/gmock",
315 "//testing/gtest",
316 "//third_party/gflags",
317 ]
318 if (is_clang && !is_nacl) {
319 # Suppress warnings from Chrome's Clang plugins.
320 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700321 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
stefan3ab66142016-08-15 06:29:10 -0700322 }
323 }
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +0000324}
325
ehmaldonado38a21322016-09-02 04:10:34 -0700326rtc_source_set("webrtc_common") {
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +0000327 sources = [
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +0000328 "common_types.cc",
kjellander@webrtc.orgd7e34e12015-01-26 19:17:26 +0000329 "common_types.h",
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +0000330 "config.cc",
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200331 "config.h",
kjellander@webrtc.orgd7e34e12015-01-26 19:17:26 +0000332 "engine_configurations.h",
333 "typedefs.h",
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000334 ]
kjellander@webrtc.org9bef5512014-07-13 09:02:54 +0000335
aluebs688e3082016-01-14 04:32:46 -0800336 if (is_clang && !is_nacl) {
337 # Suppress warnings from Chrome's Clang plugins.
338 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700339 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
aluebs688e3082016-01-14 04:32:46 -0800340 }
kjellander@webrtc.org851a09e2014-06-17 08:54:03 +0000341}
kjellander@webrtc.orgd7e34e12015-01-26 19:17:26 +0000342
Bjorn Terelius36411852015-07-30 12:45:18 +0200343if (rtc_enable_protobuf) {
344 proto_library("rtc_event_log_proto") {
345 sources = [
Peter Boström5c389d32015-09-25 13:58:30 +0200346 "call/rtc_event_log.proto",
Bjorn Terelius36411852015-07-30 12:45:18 +0200347 ]
Peter Boström5c389d32015-09-25 13:58:30 +0200348 proto_out_dir = "webrtc/call"
Bjorn Terelius36411852015-07-30 12:45:18 +0200349 }
350}
351
ehmaldonado38a21322016-09-02 04:10:34 -0700352rtc_source_set("rtc_event_log") {
Bjorn Terelius36411852015-07-30 12:45:18 +0200353 sources = [
Peter Boström5c389d32015-09-25 13:58:30 +0200354 "call/rtc_event_log.cc",
355 "call/rtc_event_log.h",
terelius4311ba52016-04-22 12:40:37 -0700356 "call/rtc_event_log_helper_thread.cc",
357 "call/rtc_event_log_helper_thread.h",
Bjorn Terelius36411852015-07-30 12:45:18 +0200358 ]
359
360 defines = []
Bjorn Terelius36411852015-07-30 12:45:18 +0200361
362 deps = [
363 ":webrtc_common",
sakal06bfe1f2016-08-04 07:54:04 -0700364 "modules/rtp_rtcp",
Bjorn Terelius36411852015-07-30 12:45:18 +0200365 ]
366
367 if (rtc_enable_protobuf) {
368 defines += [ "ENABLE_RTC_EVENT_LOG" ]
369 deps += [ ":rtc_event_log_proto" ]
370 }
sergeyu4df08ff2015-09-02 14:22:40 -0700371 if (is_clang && !is_nacl) {
Bjorn Terelius36411852015-07-30 12:45:18 +0200372 # Suppress warnings from Chrome's Clang plugins.
373 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700374 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
Bjorn Terelius36411852015-07-30 12:45:18 +0200375 }
376}
Peter Boström62e9bda2015-11-23 15:12:06 +0100377
tereliusd5c1a0b2016-05-13 00:42:59 -0700378if (rtc_enable_protobuf) {
ehmaldonado38a21322016-09-02 04:10:34 -0700379 rtc_source_set("rtc_event_log_parser") {
tereliusd5c1a0b2016-05-13 00:42:59 -0700380 sources = [
381 "call/rtc_event_log_parser.cc",
382 "call/rtc_event_log_parser.h",
383 ]
384
terelius54ce6802016-07-13 06:44:41 -0700385 public_deps = [
tereliusd5c1a0b2016-05-13 00:42:59 -0700386 ":rtc_event_log_proto",
387 ":webrtc_common",
388 ]
389
390 if (is_clang && !is_nacl) {
391 # Suppress warnings from Chrome's Clang plugins.
392 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700393 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
tereliusd5c1a0b2016-05-13 00:42:59 -0700394 }
395 }
396}
397
metzmanf89a5712016-07-25 02:14:09 -0700398if (use_libfuzzer || use_drfuzz || use_afl) {
Peter Boström1e0cfd92015-12-17 14:28:16 +0100399 # This target is only here for gn to discover fuzzer build targets under
400 # webrtc/test/fuzzers/.
401 group("webrtc_fuzzers_dummy") {
Peter Boström62e9bda2015-11-23 15:12:06 +0100402 testonly = true
403 deps = [
Peter Boström1e0cfd92015-12-17 14:28:16 +0100404 "test/fuzzers:webrtc_fuzzer_main",
Peter Boström62e9bda2015-11-23 15:12:06 +0100405 ]
406 }
407}
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200408
kjellander@webrtc.orgaff499c2016-06-06 23:04:31 +0200409if (rtc_include_tests) {
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200410 config("rtc_unittests_config") {
411 # GN orders flags on a target before flags from configs. The default config
412 # adds -Wall, and this flag have to be after -Wall -- so they need to
413 # come from a config and can"t be on the target directly.
414 if (is_clang) {
415 cflags = [
416 "-Wno-missing-braces",
417 "-Wno-sign-compare",
418 "-Wno-unused-const-variable",
419 ]
420 }
421 }
422
ehmaldonado38a21322016-09-02 04:10:34 -0700423 rtc_test("rtc_unittests") {
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200424 testonly = true
425 sources = [
426 "base/array_view_unittest.cc",
427 "base/atomicops_unittest.cc",
428 "base/autodetectproxy_unittest.cc",
429 "base/bandwidthsmoother_unittest.cc",
430 "base/base64_unittest.cc",
431 "base/basictypes_unittest.cc",
432 "base/bind_unittest.cc",
433 "base/bitbuffer_unittest.cc",
434 "base/buffer_unittest.cc",
435 "base/bufferqueue_unittest.cc",
436 "base/bytebuffer_unittest.cc",
437 "base/byteorder_unittest.cc",
438 "base/callback_unittest.cc",
439 "base/copyonwritebuffer_unittest.cc",
440 "base/crc32_unittest.cc",
441 "base/criticalsection_unittest.cc",
442 "base/event_tracer_unittest.cc",
443 "base/event_unittest.cc",
444 "base/exp_filter_unittest.cc",
Viktor Palmkvist4ec6a0c2016-09-02 13:38:32 +0200445 "base/file_unittest.cc",
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200446 "base/filerotatingstream_unittest.cc",
447 "base/fileutils_unittest.cc",
448 "base/helpers_unittest.cc",
449 "base/httpbase_unittest.cc",
450 "base/httpcommon_unittest.cc",
451 "base/httpserver_unittest.cc",
452 "base/ipaddress_unittest.cc",
453 "base/logging_unittest.cc",
454 "base/md5digest_unittest.cc",
455 "base/messagedigest_unittest.cc",
456 "base/messagequeue_unittest.cc",
457 "base/mod_ops_unittest.cc",
458 "base/multipart_unittest.cc",
459 "base/nat_unittest.cc",
460 "base/network_unittest.cc",
461 "base/onetimeevent_unittest.cc",
462 "base/optional_unittest.cc",
463 "base/optionsfile_unittest.cc",
464 "base/pathutils_unittest.cc",
465 "base/platform_thread_unittest.cc",
466 "base/profiler_unittest.cc",
467 "base/proxy_unittest.cc",
468 "base/proxydetect_unittest.cc",
469 "base/random_unittest.cc",
sprangcd349d92016-07-13 09:11:28 -0700470 "base/rate_limiter_unittest.cc",
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200471 "base/rate_statistics_unittest.cc",
472 "base/ratelimiter_unittest.cc",
473 "base/ratetracker_unittest.cc",
474 "base/referencecountedsingletonfactory_unittest.cc",
475 "base/rollingaccumulator_unittest.cc",
476 "base/rtccertificate_unittest.cc",
477 "base/rtccertificategenerator_unittest.cc",
478 "base/scopedptrcollection_unittest.cc",
perkj9c16fe82016-07-12 15:04:07 -0700479 "base/sequenced_task_checker_unittest.cc",
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200480 "base/sha1digest_unittest.cc",
481 "base/sharedexclusivelock_unittest.cc",
482 "base/signalthread_unittest.cc",
483 "base/sigslot_unittest.cc",
484 "base/sigslottester.h",
485 "base/sigslottester.h.pump",
486 "base/stream_unittest.cc",
487 "base/stringencode_unittest.cc",
488 "base/stringutils_unittest.cc",
489 "base/swap_queue_unittest.cc",
490
491 # TODO(ronghuawu): Reenable this test.
492 # "systeminfo_unittest.cc",
493 "base/task_queue_unittest.cc",
494 "base/task_unittest.cc",
495 "base/testclient_unittest.cc",
496 "base/thread_checker_unittest.cc",
497 "base/thread_unittest.cc",
nisse191b3592016-06-22 08:36:53 -0700498 "base/timestampaligner_unittest.cc",
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200499 "base/timeutils_unittest.cc",
500 "base/urlencode_unittest.cc",
501 "base/versionparsing_unittest.cc",
502
503 # TODO(ronghuawu): Reenable this test.
504 # "windowpicker_unittest.cc",
505 "p2p/base/dtlstransportchannel_unittest.cc",
506 "p2p/base/fakeportallocator.h",
507 "p2p/base/faketransportcontroller.h",
508 "p2p/base/p2ptransportchannel_unittest.cc",
509 "p2p/base/port_unittest.cc",
510 "p2p/base/portallocator_unittest.cc",
511 "p2p/base/pseudotcp_unittest.cc",
512 "p2p/base/relayport_unittest.cc",
513 "p2p/base/relayserver_unittest.cc",
514 "p2p/base/stun_unittest.cc",
515 "p2p/base/stunport_unittest.cc",
516 "p2p/base/stunrequest_unittest.cc",
517 "p2p/base/stunserver_unittest.cc",
518 "p2p/base/tcpport_unittest.cc",
519 "p2p/base/testrelayserver.h",
520 "p2p/base/teststunserver.h",
521 "p2p/base/testturnserver.h",
522 "p2p/base/transport_unittest.cc",
523 "p2p/base/transportcontroller_unittest.cc",
524 "p2p/base/transportdescriptionfactory_unittest.cc",
525 "p2p/base/turnport_unittest.cc",
Taylor Brandstetter734262c2016-08-01 16:37:14 -0700526 "p2p/base/turnserver_unittest.cc",
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200527 "p2p/client/basicportallocator_unittest.cc",
528 "p2p/stunprober/stunprober_unittest.cc",
529 ]
530
531 if (is_linux) {
532 sources += [
533 "base/latebindingsymboltable_unittest.cc",
534
535 # TODO(ronghuawu): Reenable this test.
536 # "linux_unittest.cc",
537 "base/linuxfdwalk_unittest.cc",
538 ]
539 }
540
541 if (is_win) {
542 sources += [
543 "base/win32_unittest.cc",
544 "base/win32regkey_unittest.cc",
545 "base/win32window_unittest.cc",
546 "base/win32windowpicker_unittest.cc",
547 "base/winfirewall_unittest.cc",
548 ]
549 }
550
551 if (is_mac) {
552 sources += [ "base/macutils_unittest.cc" ]
553 }
554
555 if (is_posix) {
556 sources += [
557 "base/ssladapter_unittest.cc",
558 "base/sslidentity_unittest.cc",
559 "base/sslstreamadapter_unittest.cc",
560 ]
561 }
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200562 if (rtc_use_quic) {
563 sources += [
564 "p2p/quic/quicconnectionhelper_unittest.cc",
565 "p2p/quic/quicsession_unittest.cc",
566 "p2p/quic/quictransport_unittest.cc",
567 "p2p/quic/quictransportchannel_unittest.cc",
568 "p2p/quic/reliablequicstream_unittest.cc",
569 ]
570 }
571
ehmaldonado7a2ce0b2016-09-05 01:35:44 -0700572 configs += [ ":rtc_unittests_config" ]
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200573
574 if (is_clang) {
575 # Suppress warnings from the Chromium Clang plugin.
576 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700577 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200578 }
579
580 deps = [
581 "base:rtc_base",
kjellander82a94492016-06-12 22:12:01 -0700582 "base:rtc_base_tests_utils",
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200583 "base:rtc_task_queue",
584 "p2p:libstunprober",
585 "p2p:rtc_p2p",
586 "//testing/gmock",
587 "//testing/gtest",
588 ]
589
590 if (is_android) {
591 deps += [ "//testing/android/native_test:native_test_support" ]
sakal714dd4e2016-08-15 02:29:11 -0700592 shard_timeout = 900
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200593 }
kjellander3bcedd32016-06-08 01:14:15 -0700594
595 if (is_ios || (is_mac && mac_deployment_target == "10.7")) {
596 deps += [
597 "sdk:rtc_sdk_peerconnection_objc",
598 "system_wrappers:system_wrappers_default",
599 ]
600 sources += [
601 "sdk/objc/Framework/UnitTests/RTCConfigurationTest.mm",
602 "sdk/objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm",
603 "sdk/objc/Framework/UnitTests/RTCIceCandidateTest.mm",
604 "sdk/objc/Framework/UnitTests/RTCIceServerTest.mm",
605 "sdk/objc/Framework/UnitTests/RTCMediaConstraintsTest.mm",
606 "sdk/objc/Framework/UnitTests/RTCSessionDescriptionTest.mm",
607 ]
608
609 # TODO(tkchin): Cleanup this warning.
610 cflags = [ "-Wno-objc-property-no-attribute" ]
611
612 # |-ObjC| flag needed to make sure category method implementations
613 # are included:
614 # https://developer.apple.com/library/mac/qa/qa1490/_index.html
615 ldflags = [ "-ObjC" ]
616 }
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200617 }
Peter Boström02083222016-06-14 12:52:54 +0200618
ehmaldonado38a21322016-09-02 04:10:34 -0700619 rtc_test("xmllite_xmpp_unittests") {
ehmaldonado7a2ce0b2016-09-05 01:35:44 -0700620 configs += [ ":rtc_unittests_config" ]
charujain604fc112016-08-04 01:16:39 -0700621
622 if (is_clang) {
623 # Suppress warnings from the Chromium Clang plugin.
624 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700625 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
charujain604fc112016-08-04 01:16:39 -0700626 }
627
628 deps = [
629 "base:rtc_base_tests_utils",
630 "libjingle/xmllite:rtc_xmllite",
631 "libjingle/xmpp:rtc_xmpp",
632 "//testing/gtest",
633 ]
634
635 sources = [
636 "libjingle/xmllite/qname_unittest.cc",
637 "libjingle/xmllite/xmlbuilder_unittest.cc",
638 "libjingle/xmllite/xmlelement_unittest.cc",
639 "libjingle/xmllite/xmlnsstack_unittest.cc",
640 "libjingle/xmllite/xmlparser_unittest.cc",
641 "libjingle/xmllite/xmlprinter_unittest.cc",
642 "libjingle/xmpp/fakexmppclient.h",
643 "libjingle/xmpp/hangoutpubsubclient_unittest.cc",
644 "libjingle/xmpp/jid_unittest.cc",
645 "libjingle/xmpp/mucroomconfigtask_unittest.cc",
646 "libjingle/xmpp/mucroomdiscoverytask_unittest.cc",
647 "libjingle/xmpp/mucroomlookuptask_unittest.cc",
648 "libjingle/xmpp/mucroomuniquehangoutidtask_unittest.cc",
649 "libjingle/xmpp/pingtask_unittest.cc",
650 "libjingle/xmpp/pubsubclient_unittest.cc",
651 "libjingle/xmpp/pubsubtasks_unittest.cc",
652 "libjingle/xmpp/util_unittest.cc",
653 "libjingle/xmpp/util_unittest.h",
654 "libjingle/xmpp/xmppengine_unittest.cc",
655 "libjingle/xmpp/xmpplogintask_unittest.cc",
656 "libjingle/xmpp/xmppstanzaparser_unittest.cc",
657 ]
658 }
659
Peter Boström02083222016-06-14 12:52:54 +0200660 # TODO(pbos): Rename test suite, this is no longer "just" for video targets.
kjellander32c4a202016-08-30 02:53:49 -0700661 if (is_android || is_ios) {
662 video_engine_tests_resources = [
663 "//resources/foreman_cif_short.yuv",
664 "//resources/voice_engine/audio_long16.pcm",
665 ]
666 }
667
668 if (is_ios) {
669 bundle_data("video_engine_tests_bundle_data") {
670 testonly = true
671 sources = video_engine_tests_resources
672 outputs = [
673 "{{bundle_resources_dir}}/{{source_file_part}}",
674 ]
675 }
676 }
677
ehmaldonado38a21322016-09-02 04:10:34 -0700678 rtc_test("video_engine_tests") {
Peter Boström02083222016-06-14 12:52:54 +0200679 testonly = true
680 deps = [
681 "audio:audio_tests",
682 "call:call_tests",
683 "modules/video_capture",
684 "test:test_common",
685 "test:test_main",
686 "video:video_tests",
687 ]
688 if (is_clang) {
689 # Suppress warnings from the Chromium Clang plugin.
690 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700691 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
Peter Boström02083222016-06-14 12:52:54 +0200692 }
sakal714dd4e2016-08-15 02:29:11 -0700693 if (is_android) {
sakal010f0922016-08-18 00:41:59 -0700694 deps += [ "//testing/android/native_test:native_test_native_code" ]
kjellander32c4a202016-08-30 02:53:49 -0700695 data = video_engine_tests_resources
kjellander28a0ffd2016-08-24 07:48:42 -0700696 shard_timeout = 900
697 }
kjellander32c4a202016-08-30 02:53:49 -0700698
699 if (is_ios) {
700 deps += [ ":video_engine_tests_bundle_data" ]
sakal714dd4e2016-08-15 02:29:11 -0700701 }
Peter Boström02083222016-06-14 12:52:54 +0200702 }
Peter Boströmac968bd2016-06-27 19:31:39 +0200703
ehmaldonado38a21322016-09-02 04:10:34 -0700704 rtc_source_set("video_quality_test") {
ehmaldonado529f83c2016-07-27 08:14:32 -0700705 testonly = true
ehmaldonado529f83c2016-07-27 08:14:32 -0700706 sources = [
707 "video/video_quality_test.cc",
708 "video/video_quality_test.h",
709 ]
710 deps = [
711 ":webrtc",
712 "system_wrappers",
713 "//testing/gtest",
714 ]
715 if (!is_android) {
716 deps += [ "modules/video_capture:video_capture_internal_impl" ]
717 }
718 if (is_clang) {
719 # Suppress warnings from the Chromium Clang plugin.
720 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700721 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
ehmaldonado529f83c2016-07-27 08:14:32 -0700722 }
723 }
724
kjellander32c4a202016-08-30 02:53:49 -0700725 if (is_android || is_ios) {
726 webrtc_perf_tests_resources = [
727 "//resources/audio_coding/speech_mono_16kHz.pcm",
728 "//resources/audio_coding/testfile32kHz.pcm",
729 "//resources/ConferenceMotion_1280_720_50.yuv",
730 "//resources/difficult_photo_1850_1110.yuv",
731 "//resources/foreman_cif.yuv",
732 "//resources/google-wifi-3mbps.rx",
733 "//resources/paris_qcif.yuv",
734 "//resources/photo_1850_1110.yuv",
735 "//resources/presentation_1850_1110.yuv",
736 "//resources/verizon4g-downlink.rx",
737 "//resources/voice_engine/audio_long16.pcm",
738 "//resources/web_screenshot_1850_1110.yuv",
739 ]
740 }
741
742 if (is_ios) {
743 bundle_data("webrtc_perf_tests_bundle_data") {
744 testonly = true
745 sources = webrtc_perf_tests_resources
746 outputs = [
747 "{{bundle_resources_dir}}/{{source_file_part}}",
748 ]
749 }
750 }
751
ehmaldonado38a21322016-09-02 04:10:34 -0700752 rtc_test("webrtc_perf_tests") {
ehmaldonado529f83c2016-07-27 08:14:32 -0700753 testonly = true
ehmaldonado7a2ce0b2016-09-05 01:35:44 -0700754 configs += [ ":rtc_unittests_config" ]
ehmaldonado25f32e72016-08-31 08:22:09 -0700755
ehmaldonado529f83c2016-07-27 08:14:32 -0700756 sources = [
757 "call/call_perf_tests.cc",
758 "call/rampup_tests.cc",
759 "call/rampup_tests.h",
760 "modules/audio_coding/neteq/test/neteq_performance_unittest.cc",
761 "modules/audio_processing/audio_processing_performance_unittest.cc",
762 "modules/audio_processing/level_controller/level_controller_complexity_unittest.cc",
763 "modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc",
764 "video/full_stack.cc",
765 ]
766 deps = [
767 ":video_quality_test",
768 ":webrtc",
769 "modules/audio_coding:neteq_test_support",
770 "modules/audio_processing",
771 "modules/audio_processing:audioproc_test_utils",
772 "modules/remote_bitrate_estimator:bwe_simulator",
773 "modules/rtp_rtcp",
solenberg07d9e542016-09-13 01:24:03 -0700774 "test:channel_transport",
ehmaldonado529f83c2016-07-27 08:14:32 -0700775 "test:test_common",
776 "test:test_main",
777 "test:test_renderer",
778 "voice_engine",
779 "//testing/gmock",
780 "//testing/gtest",
781 ]
782 if (is_android) {
783 deps += [ "//testing/android/native_test:native_test_native_code" ]
kjellander32c4a202016-08-30 02:53:49 -0700784 data = webrtc_perf_tests_resources
sakal714dd4e2016-08-15 02:29:11 -0700785 shard_timeout = 2700
ehmaldonado529f83c2016-07-27 08:14:32 -0700786 }
kjellander32c4a202016-08-30 02:53:49 -0700787 if (is_ios) {
788 deps += [ ":webrtc_perf_tests_bundle_data" ]
789 }
ehmaldonado529f83c2016-07-27 08:14:32 -0700790 if (is_clang) {
791 # Suppress warnings from the Chromium Clang plugin.
792 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700793 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
ehmaldonado529f83c2016-07-27 08:14:32 -0700794 }
795 }
796
ehmaldonado38a21322016-09-02 04:10:34 -0700797 rtc_test("webrtc_nonparallel_tests") {
Peter Boströmac968bd2016-06-27 19:31:39 +0200798 testonly = true
ehmaldonado7a2ce0b2016-09-05 01:35:44 -0700799 configs += [ ":rtc_unittests_config" ]
Peter Boströmac968bd2016-06-27 19:31:39 +0200800 sources = [
801 "base/nullsocketserver_unittest.cc",
danilchapb7b9dca2016-08-05 05:55:43 -0700802 "base/physicalsocketserver_unittest.cc",
803 "base/socket_unittest.cc",
804 "base/socket_unittest.h",
Peter Boströmac968bd2016-06-27 19:31:39 +0200805 "base/socketaddress_unittest.cc",
806 "base/virtualsocket_unittest.cc",
807 ]
808 deps = [
809 "base:rtc_base",
810 "base:rtc_base_tests_utils",
811 "//testing/gtest",
812 ]
813 if (is_win) {
danilchapb7b9dca2016-08-05 05:55:43 -0700814 sources += [ "base/win32socketserver_unittest.cc" ]
Peter Boströmac968bd2016-06-27 19:31:39 +0200815 }
816 if (is_android) {
817 deps += [ "//testing/android/native_test:native_test_support" ]
sakal714dd4e2016-08-15 02:29:11 -0700818 shard_timeout = 900
Peter Boströmac968bd2016-06-27 19:31:39 +0200819 }
820
821 if (is_mac) {
822 sources += [ "base/macsocketserver_unittest.cc" ]
823 }
Peter Boströmac968bd2016-06-27 19:31:39 +0200824 if (is_clang) {
825 # Suppress warnings from the Chromium Clang plugin.
826 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -0700827 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
Peter Boströmac968bd2016-06-27 19:31:39 +0200828 }
829 }
kjellander@webrtc.org3ee56142016-06-03 15:57:02 +0200830}