blob: ada60e2ce3ffab8b15823242e8a456622c766684 [file] [log] [blame]
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +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
mbonadei9aa3f0a2017-01-24 06:58:22 -08009import("../webrtc.gni")
kjellander0f380d82016-06-01 04:48:26 -070010import("//build/config/ui.gni")
kjellander0f380d82016-06-01 04:48:26 -070011if (is_android) {
12 import("//build/config/android/rules.gni")
13}
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +000014
kjellanderb62dbbe2016-09-23 00:38:52 -070015group("test") {
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +000016 testonly = true
17
18 deps = [
19 ":field_trial",
kjellander0f380d82016-06-01 04:48:26 -070020 ":rtp_test_utils",
21 ":test_common",
22 ":test_renderer",
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +000023 ":test_support",
kjellander0f380d82016-06-01 04:48:26 -070024 ":video_test_common",
25 ]
mbonadei148d5a22017-04-28 05:24:50 -070026
oprypinfbbba3f2017-09-25 08:34:41 -070027 if (rtc_include_tests) {
mbonadei148d5a22017-04-28 05:24:50 -070028 deps += [
29 ":test_main",
30 ":test_support_unittests",
31 ]
32 }
kjellander0f380d82016-06-01 04:48:26 -070033}
34
ehmaldonado38a21322016-09-02 04:10:34 -070035rtc_source_set("video_test_common") {
Per Kjellandera7f2d842018-01-10 15:54:53 +000036 visibility = [ "*" ]
kjellander0f380d82016-06-01 04:48:26 -070037 testonly = true
38 sources = [
39 "fake_texture_frame.cc",
40 "fake_texture_frame.h",
41 "frame_generator.cc",
42 "frame_generator.h",
ehmaldonado656610f2017-02-06 02:21:11 -080043 "frame_generator_capturer.cc",
44 "frame_generator_capturer.h",
kjellander0f380d82016-06-01 04:48:26 -070045 "frame_utils.cc",
46 "frame_utils.h",
Sebastian Janssonf1f363f2018-08-13 14:24:58 +020047 "test_video_capturer.cc",
48 "test_video_capturer.h",
ehmaldonado656610f2017-02-06 02:21:11 -080049 "vcm_capturer.cc",
50 "vcm_capturer.h",
mflodman351424e2017-08-10 02:43:14 -070051 "video_codec_settings.h",
kjellander0f380d82016-06-01 04:48:26 -070052 ]
53
kjellandere40a7ee2016-10-16 23:56:12 -070054 if (!build_with_chromium && is_clang) {
55 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -070056 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander0f380d82016-06-01 04:48:26 -070057 }
58
59 deps = [
mbonadei3edccb92017-06-01 04:47:20 -070060 "..:webrtc_common",
Patrik Höglund9e194032018-01-04 15:58:20 +010061 "../api:libjingle_peerconnection_api",
Niels Möllerc6ce9c52018-05-11 11:15:30 +020062 "../api/video:video_frame",
Emircan Uysaler0823eec2018-07-13 17:10:00 -070063 "../api/video:video_frame_i010",
Niels Möllerc6ce9c52018-05-11 11:15:30 +020064 "../api/video:video_frame_i420",
mflodman351424e2017-08-10 02:43:14 -070065 "../api/video_codecs:video_codecs_api",
aleloi440b6d92017-08-22 05:43:23 -070066 "../call:video_stream_api",
kjellander0f380d82016-06-01 04:48:26 -070067 "../common_video",
sprangc5d62e22017-04-02 23:53:04 -070068 "../media:rtc_media_base",
ehmaldonado656610f2017-02-06 02:21:11 -080069 "../modules/video_capture:video_capture_module",
Patrik Höglunda8005cf2017-12-13 16:05:42 +010070 "../rtc_base:checks",
Patrik Höglund76df0df2017-12-19 11:50:21 +010071 "../rtc_base:rtc_base",
ehmaldonadof6a861a2017-07-19 10:40:47 -070072 "../rtc_base:rtc_task_queue",
mbonadei3edccb92017-06-01 04:47:20 -070073 "../system_wrappers",
Danil Chapovalov431abd92018-06-18 12:54:17 +020074 "//third_party/abseil-cpp/absl/types:optional",
kjellander0f380d82016-06-01 04:48:26 -070075 ]
76}
77
ehmaldonado38a21322016-09-02 04:10:34 -070078rtc_source_set("rtp_test_utils") {
kjellander0f380d82016-06-01 04:48:26 -070079 testonly = true
80 sources = [
81 "rtcp_packet_parser.cc",
82 "rtcp_packet_parser.h",
83 "rtp_file_reader.cc",
84 "rtp_file_reader.h",
85 "rtp_file_writer.cc",
86 "rtp_file_writer.h",
87 ]
88
kjellandere40a7ee2016-10-16 23:56:12 -070089 if (!build_with_chromium && is_clang) {
90 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -070091 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander0f380d82016-06-01 04:48:26 -070092 }
93
94 deps = [
95 "..:webrtc_common",
kwiberg529662a2017-09-04 05:43:17 -070096 "../api:array_view",
kjellander0f380d82016-06-01 04:48:26 -070097 "../modules/rtp_rtcp",
Mirko Bonadeib5728d92017-12-06 07:51:33 +010098 "../modules/rtp_rtcp:rtp_rtcp_format",
Patrik Höglunda8005cf2017-12-13 16:05:42 +010099 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700100 "../rtc_base:rtc_base_approved",
Niels Möllera12c42a2018-07-25 16:05:48 +0200101 "../rtc_base/system:arch",
kjellander0f380d82016-06-01 04:48:26 -0700102 "//testing/gtest",
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +0000103 ]
104}
105
ehmaldonado38a21322016-09-02 04:10:34 -0700106rtc_source_set("field_trial") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000107 visibility = [ "*" ]
kjellander0f380d82016-06-01 04:48:26 -0700108 testonly = true
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +0000109 sources = [
110 "field_trial.cc",
111 "field_trial.h",
112 ]
113
114 deps = [
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +0000115 "..:webrtc_common",
Mirko Bonadeia498ae82017-12-06 09:17:14 +0100116 "../system_wrappers:field_trial_api",
phoglund37ebcf02016-01-08 05:04:57 -0800117 "../system_wrappers:field_trial_default",
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +0000118 ]
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +0000119}
120
Edward Lemure66572b2018-01-05 15:34:09 +0100121rtc_source_set("perf_test") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000122 visibility = [ "*" ]
Edward Lemure66572b2018-01-05 15:34:09 +0100123 sources = [
124 "testsupport/perf_test.cc",
125 "testsupport/perf_test.h",
126 ]
127 deps = [
128 "..:webrtc_common",
129 "../api:array_view",
130 "../rtc_base:rtc_base_approved",
131 ]
132}
133
mbonadeicd95a4e2017-08-23 23:55:54 -0700134if (is_ios) {
135 rtc_source_set("test_support_objc") {
136 testonly = true
mbonadei9c296b32017-09-05 05:11:41 -0700137 visibility = [ ":test_support" ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700138 sources = [
139 "ios/test_support.h",
140 "ios/test_support.mm",
141 ]
denicijad207a392017-09-11 06:43:28 -0700142 deps = [
Edward Lemure66572b2018-01-05 15:34:09 +0100143 ":perf_test",
denicijad207a392017-09-11 06:43:28 -0700144 "../sdk:common_objc",
145 ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700146 }
147}
148
Patrik Höglund34924c22018-01-19 09:11:07 +0100149config("suppress_warning_4373") {
150 if (is_win) {
151 cflags = [
152 # MSVC has a bug which generates this warning when using mocks; see the
153 # section on warning 4373 in he googlemock FAQ. This warning isn't the
154 # least relevant for us, anyway.
155 "/wd4373",
156 ]
157 }
158}
159
Sebastian Jansson2afd2812018-08-23 14:44:05 +0200160config("test_main_direct_config") {
161 visibility = [ ":*" ]
162 defines = [ "UNIT_TEST" ]
163}
mbonadei148d5a22017-04-28 05:24:50 -0700164rtc_source_set("test_support") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000165 visibility = [ "*" ]
mbonadei148d5a22017-04-28 05:24:50 -0700166 testonly = true
kjellander32c4a202016-08-30 02:53:49 -0700167
Mirko Bonadei65ce3112018-01-26 11:57:47 +0100168 all_dependent_configs = [
169 ":suppress_warning_4373",
170 "//third_party/googletest:gmock_config",
171 "//third_party/googletest:gtest_config",
172 ]
Patrik Höglund34924c22018-01-19 09:11:07 +0100173
mbonadei148d5a22017-04-28 05:24:50 -0700174 sources = [
175 "gmock.h",
176 "gtest.h",
mbonadei148d5a22017-04-28 05:24:50 -0700177 ]
178
Patrik Höglund7696bef2018-03-15 15:05:39 +0100179 public_deps = []
Kári Tristan Helgasone2baffb2017-06-09 10:31:58 +0200180 if (is_ios) {
mbonadeicd95a4e2017-08-23 23:55:54 -0700181 public_deps += [ ":test_support_objc" ]
Kári Tristan Helgasone2baffb2017-06-09 10:31:58 +0200182 }
183
Sebastian Jansson2afd2812018-08-23 14:44:05 +0200184 public_configs = [ ":test_main_direct_config" ]
mbonadei148d5a22017-04-28 05:24:50 -0700185 deps = [
ehmaldonadof6a861a2017-07-19 10:40:47 -0700186 "../rtc_base:rtc_base_approved",
mbonadei148d5a22017-04-28 05:24:50 -0700187 "//testing/gmock",
188 "//testing/gtest",
189 ]
190
mbonadei148d5a22017-04-28 05:24:50 -0700191 if (!build_with_chromium && is_clang) {
192 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
193 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
194 }
195
mbonadei148d5a22017-04-28 05:24:50 -0700196 if (is_ios && !build_with_chromium) {
kthelgason36d658d2017-08-24 05:43:45 -0700197 deps += [ "../sdk:common_objc" ]
mbonadei148d5a22017-04-28 05:24:50 -0700198 }
kjellander32c4a202016-08-30 02:53:49 -0700199}
200
oprypinfbbba3f2017-09-25 08:34:41 -0700201if (rtc_include_tests) {
Oleh Prypin5ab68542017-09-25 09:18:00 +0000202 rtc_source_set("test_main") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000203 visibility = [ "*" ]
Oleh Prypin90ce84e2017-09-25 10:27:22 +0200204 testonly = true
Oleh Prypin5ab68542017-09-25 09:18:00 +0000205 sources = [
206 "test_main.cc",
207 ]
208
209 public_deps = [
210 ":test_support",
211 ]
212 deps = [
213 ":field_trial",
Patrik Höglund7696bef2018-03-15 15:05:39 +0100214 ":fileutils",
Edward Lemure66572b2018-01-05 15:34:09 +0100215 ":perf_test",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000216 "../rtc_base:rtc_base_approved",
Bjorn Tereliusedab3012018-01-31 17:23:40 +0100217 "../system_wrappers:field_trial_default",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000218 "../system_wrappers:metrics_default",
Ilya Nikolaevskiy2ffe3e82018-01-17 19:57:24 +0000219 "../system_wrappers:runtime_enabled_features_default",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000220 "//testing/gtest",
mbonadei9452c622017-04-27 12:29:29 -0700221 ]
222 }
mbonadei9452c622017-04-27 12:29:29 -0700223
Oleh Prypin5ab68542017-09-25 09:18:00 +0000224 rtc_source_set("video_test_support") {
225 testonly = true
226
227 sources = [
228 "testsupport/frame_reader.h",
229 "testsupport/frame_writer.h",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000230 "testsupport/mock/mock_frame_reader.h",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000231 "testsupport/y4m_frame_writer.cc",
232 "testsupport/yuv_frame_reader.cc",
233 "testsupport/yuv_frame_writer.cc",
234 ]
235
236 deps = [
Patrik Höglund7696bef2018-03-15 15:05:39 +0100237 ":fileutils",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000238 ":test_support",
239 ":video_test_common",
240 "..:webrtc_common",
Niels Möllerc6ce9c52018-05-11 11:15:30 +0200241 "../api/video:video_frame",
242 "../api/video:video_frame_i420",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000243 "../common_video",
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100244 "../rtc_base:checks",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000245 "../rtc_base:rtc_base_approved",
246 "../system_wrappers",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000247 "//testing/gtest",
Mirko Bonadei401d0562017-12-14 11:24:00 +0100248 "//third_party/libyuv",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000249 ]
250
251 if (!is_ios) {
252 deps += [ "//third_party:jpeg" ]
253 sources += [ "testsupport/jpeg_frame_writer.cc" ]
254 } else {
255 sources += [ "testsupport/jpeg_frame_writer_ios.cc" ]
256 }
257
Oleh Prypin5ab68542017-09-25 09:18:00 +0000258 if (!build_with_chromium && is_clang) {
259 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
260 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
261 }
262
263 if (is_android) {
264 deps += [ "//base:base" ]
265 }
266
267 if (is_ios) {
268 deps += [ "../sdk:common_objc" ]
269 }
Oleh Prypin5ab68542017-09-25 09:18:00 +0000270 }
271
Edward Lemuraf8659a2017-09-27 14:46:24 +0200272 rtc_source_set("test_support_test_artifacts") {
Oleh Prypin5ab68542017-09-25 09:18:00 +0000273 testonly = true
274 sources = [
Edward Lemuraf8659a2017-09-27 14:46:24 +0200275 "testsupport/test_artifacts.cc",
276 "testsupport/test_artifacts.h",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000277 ]
278 deps = [
279 ":fileutils",
280 "../rtc_base:rtc_base_approved",
281 ]
282 }
283
284 test_support_unittests_resources = [
285 "../resources/foreman_cif_short.yuv",
286 "../resources/video_coding/frame-ethernet-ii.pcap",
287 "../resources/video_coding/frame-loopback.pcap",
288 "../resources/video_coding/pltype103.rtp",
289 "../resources/video_coding/pltype103_header_only.rtp",
290 "../resources/video_coding/ssrcs-2.pcap",
291 "../resources/video_coding/ssrcs-3.pcap",
Oleh Prypin90ce84e2017-09-25 10:27:22 +0200292 ]
Oleh Prypin90ce84e2017-09-25 10:27:22 +0200293
294 if (is_ios) {
Oleh Prypin5ab68542017-09-25 09:18:00 +0000295 bundle_data("test_support_unittests_bundle_data") {
296 testonly = true
297 sources = test_support_unittests_resources
298 outputs = [
299 "{{bundle_resources_dir}}/{{source_file_part}}",
300 ]
301 }
Oleh Prypin90ce84e2017-09-25 10:27:22 +0200302 }
303
Oleh Prypin5ab68542017-09-25 09:18:00 +0000304 rtc_test("test_support_unittests") {
305 deps = [
Sebastian Jansson09408112018-04-24 14:41:22 +0200306 ":direct_transport",
Ilya Nikolaevskiyf2a82872018-08-22 10:32:49 +0200307 ":fake_video_codecs",
Patrik Höglund7696bef2018-03-15 15:05:39 +0100308 ":fileutils",
Mirko Bonadei46399992018-08-22 15:32:38 +0200309 ":fileutils_unittests",
Edward Lemure66572b2018-01-05 15:34:09 +0100310 ":perf_test",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000311 ":rtp_test_utils",
Ilya Nikolaevskiyf2a82872018-08-22 10:32:49 +0200312 ":test_common",
Mirko Bonadei9098b302018-04-06 10:48:10 +0200313 ":test_main",
314 ":test_support",
315 ":test_support_test_artifacts",
316 ":video_test_common",
317 ":video_test_support",
Ilya Nikolaevskiyf2a82872018-08-22 10:32:49 +0200318 "../api:create_simulcast_test_fixture_api",
319 "../api:simulcast_test_fixture_api",
Niels Möllerc6ce9c52018-05-11 11:15:30 +0200320 "../api/video:video_frame_i420",
Mirko Bonadei9098b302018-04-06 10:48:10 +0200321 "../modules/rtp_rtcp:rtp_rtcp",
Ilya Nikolaevskiyf2a82872018-08-22 10:32:49 +0200322 "../modules/video_capture",
323 "../modules/video_coding:simulcast_test_fixture_impl",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000324 "../rtc_base:rtc_base_approved",
Mirko Bonadei9098b302018-04-06 10:48:10 +0200325 "../test:single_threaded_task_queue",
Ilya Nikolaevskiyf2a82872018-08-22 10:32:49 +0200326 "//testing/gmock",
Mirko Bonadei9098b302018-04-06 10:48:10 +0200327 "//testing/gtest",
Karl Wiberg918f50c2018-07-05 11:40:33 +0200328 "//third_party/abseil-cpp/absl/memory",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000329 ]
330 sources = [
Sebastian Jansson09408112018-04-24 14:41:22 +0200331 "direct_transport_unittest.cc",
Ilya Nikolaevskiyf2a82872018-08-22 10:32:49 +0200332 "fake_vp8_encoder_unittest.cc",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000333 "frame_generator_unittest.cc",
334 "rtp_file_reader_unittest.cc",
335 "rtp_file_writer_unittest.cc",
336 "single_threaded_task_queue_unittest.cc",
337 "testsupport/always_passing_unittest.cc",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000338 "testsupport/perf_test_unittest.cc",
Edward Lemuraf8659a2017-09-27 14:46:24 +0200339 "testsupport/test_artifacts_unittest.cc",
Oleh Prypin5ab68542017-09-25 09:18:00 +0000340 "testsupport/y4m_frame_writer_unittest.cc",
341 "testsupport/yuv_frame_reader_unittest.cc",
342 "testsupport/yuv_frame_writer_unittest.cc",
343 ]
344
Oleh Prypin5ab68542017-09-25 09:18:00 +0000345 if (!build_with_chromium && is_clang) {
346 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
347 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
348 }
349
350 data = test_support_unittests_resources
351 if (is_android) {
352 deps += [ "//testing/android/native_test:native_test_support" ]
353 shard_timeout = 900
354 }
355
356 if (is_ios) {
357 deps += [ ":test_support_unittests_bundle_data" ]
358 }
Ilya Nikolaevskiyf2a82872018-08-22 10:32:49 +0200359
Mirko Bonadei9098b302018-04-06 10:48:10 +0200360 if (!is_android && !build_with_chromium) {
361 # This is needed in order to avoid:
362 # undefined symbol: webrtc::videocapturemodule::VideoCaptureImpl::Create
363 deps += [ "../modules/video_capture:video_capture_internal_impl" ]
364 }
Oleh Prypin5ab68542017-09-25 09:18:00 +0000365 }
Oleh Prypin90ce84e2017-09-25 10:27:22 +0200366}
367
mbonadeicd95a4e2017-08-23 23:55:54 -0700368if (is_ios) {
369 rtc_source_set("fileutils_objc") {
mbonadei9c296b32017-09-05 05:11:41 -0700370 visibility = [ ":fileutils" ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700371 sources = [
372 "testsupport/iosfileutils.mm",
373 ]
374 deps = [
375 "..:webrtc_common",
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100376 "../rtc_base:checks",
mbonadeicd95a4e2017-08-23 23:55:54 -0700377 "../rtc_base:rtc_base_approved",
kthelgason36d658d2017-08-24 05:43:45 -0700378 "../sdk:common_objc",
mbonadeicd95a4e2017-08-23 23:55:54 -0700379 ]
380 }
381}
382
mbonadei9452c622017-04-27 12:29:29 -0700383rtc_source_set("fileutils") {
384 testonly = true
Patrik Höglund7696bef2018-03-15 15:05:39 +0100385 visibility = [ "*" ]
mbonadei9452c622017-04-27 12:29:29 -0700386 sources = [
387 "testsupport/fileutils.cc",
388 "testsupport/fileutils.h",
389 ]
mbonadei3edccb92017-06-01 04:47:20 -0700390 deps = [
391 "..:webrtc_common",
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100392 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700393 "../rtc_base:rtc_base_approved",
Niels Möllera12c42a2018-07-25 16:05:48 +0200394 "../rtc_base/system:arch",
Danil Chapovalov431abd92018-06-18 12:54:17 +0200395 "//third_party/abseil-cpp/absl/types:optional",
mbonadei3edccb92017-06-01 04:47:20 -0700396 ]
mbonadei9452c622017-04-27 12:29:29 -0700397 if (is_ios) {
mbonadeicd95a4e2017-08-23 23:55:54 -0700398 deps += [ ":fileutils_objc" ]
mbonadei3edccb92017-06-01 04:47:20 -0700399 }
400 if (is_win) {
ehmaldonadof6a861a2017-07-19 10:40:47 -0700401 deps += [ "../rtc_base:rtc_base" ]
mbonadei9452c622017-04-27 12:29:29 -0700402 }
mbonadei9452c622017-04-27 12:29:29 -0700403}
404
405rtc_source_set("run_test") {
406 testonly = true
mbonadeicd95a4e2017-08-23 23:55:54 -0700407 if (is_mac) {
408 public_deps = [
409 ":run_test_objc",
410 ]
411 } else {
412 public_deps = [
413 ":run_test_generic",
414 ]
415 }
416}
417
418rtc_source_set("run_test_interface") {
mbonadei9452c622017-04-27 12:29:29 -0700419 sources = [
420 "run_test.h",
421 ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700422}
423
424if (is_mac) {
425 rtc_source_set("run_test_objc") {
426 testonly = true
mbonadei9c296b32017-09-05 05:11:41 -0700427 visibility = [ ":run_test" ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700428 sources = [
429 "mac/run_test.mm",
430 ]
mbonadei9c296b32017-09-05 05:11:41 -0700431 deps = [
mbonadeicd95a4e2017-08-23 23:55:54 -0700432 ":run_test_interface",
433 ]
mbonadei9452c622017-04-27 12:29:29 -0700434 }
435}
436
mbonadeicd95a4e2017-08-23 23:55:54 -0700437rtc_source_set("run_test_generic") {
438 testonly = true
mbonadei9c296b32017-09-05 05:11:41 -0700439 visibility = [ ":run_test" ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700440 sources = [
441 "run_test.cc",
442 ]
mbonadei9c296b32017-09-05 05:11:41 -0700443 deps = [
mbonadeicd95a4e2017-08-23 23:55:54 -0700444 ":run_test_interface",
445 ]
446}
447
ehmaldonado37535bf2016-12-05 06:42:45 -0800448rtc_source_set("fileutils_unittests") {
449 testonly = true
kjellandere0629c02017-04-25 04:04:50 -0700450 visibility = [ ":*" ] # Only targets in this file can depend on this.
ehmaldonado37535bf2016-12-05 06:42:45 -0800451 sources = [
452 "testsupport/fileutils_unittest.cc",
453 ]
454 deps = [
455 ":fileutils",
mbonadei3edccb92017-06-01 04:47:20 -0700456 ":test_support",
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100457 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700458 "../rtc_base:rtc_base_approved",
ehmaldonado37535bf2016-12-05 06:42:45 -0800459 "//testing/gtest",
Danil Chapovalov431abd92018-06-18 12:54:17 +0200460 "//third_party/abseil-cpp/absl/types:optional",
ehmaldonado37535bf2016-12-05 06:42:45 -0800461 ]
462}
kjellander0f380d82016-06-01 04:48:26 -0700463
perkj488c5dc2017-02-08 05:55:51 -0800464rtc_source_set("direct_transport") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000465 visibility = [ "*" ]
perkj488c5dc2017-02-08 05:55:51 -0800466 testonly = true
467 sources = [
468 "direct_transport.cc",
469 "direct_transport.h",
perkj488c5dc2017-02-08 05:55:51 -0800470 ]
471 if (!build_with_chromium && is_clang) {
472 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
473 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
474 }
475 deps = [
mbonadei3edccb92017-06-01 04:47:20 -0700476 "..:webrtc_common",
Artem Titov46c4e602018-08-17 14:26:54 +0200477 "../api:simulated_network_api",
perkj488c5dc2017-02-08 05:55:51 -0800478 "../api:transport_api",
Mirko Bonadeia0e1a552017-12-04 10:50:51 +0100479 "../call:call_interfaces",
Artem Titov46c4e602018-08-17 14:26:54 +0200480 "../call:simulated_packet_receiver",
mbonadei3edccb92017-06-01 04:47:20 -0700481 "../modules/rtp_rtcp",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700482 "../rtc_base:rtc_base_approved",
eladalon413ee9a2017-08-22 04:02:52 -0700483 "../rtc_base:sequenced_task_checker",
mbonadei3edccb92017-06-01 04:47:20 -0700484 "../system_wrappers",
Karl Wiberg918f50c2018-07-05 11:40:33 +0200485 "//third_party/abseil-cpp/absl/memory",
perkj488c5dc2017-02-08 05:55:51 -0800486 ]
eladalon413ee9a2017-08-22 04:02:52 -0700487 public_deps = [
488 ":single_threaded_task_queue",
Erik Språng09708512018-03-14 15:16:50 +0100489 "../call:fake_network",
eladalon413ee9a2017-08-22 04:02:52 -0700490 ]
491}
492
493rtc_source_set("single_threaded_task_queue") {
494 testonly = true
495 sources = [
496 "single_threaded_task_queue.cc",
497 "single_threaded_task_queue.h",
498 ]
499 deps = [
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100500 "../rtc_base:checks",
eladalon413ee9a2017-08-22 04:02:52 -0700501 "../rtc_base:rtc_base_approved",
Karl Wiberg918f50c2018-07-05 11:40:33 +0200502 "//third_party/abseil-cpp/absl/memory",
eladalon413ee9a2017-08-22 04:02:52 -0700503 ]
perkj488c5dc2017-02-08 05:55:51 -0800504}
505
Ilya Nikolaevskiyf2a82872018-08-22 10:32:49 +0200506rtc_source_set("fake_video_codecs") {
507 testonly = true
508 visibility = [ "*" ]
509 sources = [
510 "configurable_frame_size_encoder.cc",
511 "configurable_frame_size_encoder.h",
512 "fake_decoder.cc",
513 "fake_decoder.h",
514 "fake_encoder.cc",
515 "fake_encoder.h",
516 "fake_vp8_encoder.cc",
517 "fake_vp8_encoder.h",
518 ]
519 if (!build_with_chromium && is_clang) {
520 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
521 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
522 }
523 deps = [
524 "..:webrtc_common",
525 "../api/video:video_frame_i420",
526 "../api/video_codecs:video_codecs_api",
527 "../common_video:common_video",
528 "../modules/video_coding:video_codec_interface",
529 "../modules/video_coding:video_coding_utility",
530 "../modules/video_coding:webrtc_h264",
531 "../modules/video_coding:webrtc_vp8",
532 "../modules/video_coding:webrtc_vp9",
533 "../rtc_base:checks",
534 "../rtc_base:rtc_base_approved",
535 "../rtc_base:rtc_task_queue",
536 "../rtc_base:sequenced_task_checker",
537 "../system_wrappers",
538 ]
539}
540
ehmaldonado38a21322016-09-02 04:10:34 -0700541rtc_source_set("test_common") {
kjellander0f380d82016-06-01 04:48:26 -0700542 testonly = true
543 sources = [
544 "call_test.cc",
545 "call_test.h",
kjellander0f380d82016-06-01 04:48:26 -0700546 "constants.cc",
547 "constants.h",
kjellander0f380d82016-06-01 04:48:26 -0700548 "drifting_clock.cc",
549 "drifting_clock.h",
Niels Möller4db138e2018-04-19 09:04:13 +0200550 "encoder_proxy_factory.h",
kjellander0f380d82016-06-01 04:48:26 -0700551 "encoder_settings.cc",
552 "encoder_settings.h",
sakal55d932b2016-09-30 06:19:08 -0700553 "fake_videorenderer.h",
Rasmus Brandt0cedc052018-05-31 12:53:00 +0200554 "function_video_decoder_factory.h",
Niels Möller4db138e2018-04-19 09:04:13 +0200555 "function_video_encoder_factory.h",
kjellander0f380d82016-06-01 04:48:26 -0700556 "layer_filtering_transport.cc",
557 "layer_filtering_transport.h",
Danil Chapovalovdd7e2842018-03-09 15:37:03 +0000558 "mock_transport.cc",
kjellander0f380d82016-06-01 04:48:26 -0700559 "mock_transport.h",
kjellander0f380d82016-06-01 04:48:26 -0700560 "null_transport.cc",
561 "null_transport.h",
562 "rtp_rtcp_observer.h",
563 "statistics.cc",
564 "statistics.h",
kjellander0f380d82016-06-01 04:48:26 -0700565 "win/run_loop_win.cc",
566 ]
567 if (!is_win) {
568 sources += [
569 "run_loop.cc",
570 "run_loop.h",
571 ]
572 }
573
kjellandere40a7ee2016-10-16 23:56:12 -0700574 if (!build_with_chromium && is_clang) {
575 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -0700576 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander0f380d82016-06-01 04:48:26 -0700577 }
578
579 deps = [
perkj488c5dc2017-02-08 05:55:51 -0800580 ":direct_transport",
Ilya Nikolaevskiyf2a82872018-08-22 10:32:49 +0200581 ":fake_video_codecs",
Patrik Höglund7696bef2018-03-15 15:05:39 +0100582 ":fileutils",
kjellander0f380d82016-06-01 04:48:26 -0700583 ":rtp_test_utils",
584 ":test_support",
perkjc5726c12017-03-01 03:37:08 -0800585 ":video_test_common",
Patrik Höglundbe214a22018-01-04 12:14:35 +0100586 "../api:libjingle_peerconnection_api",
Artem Titov46c4e602018-08-17 14:26:54 +0200587 "../api:simulated_network_api",
mbonadei3edccb92017-06-01 04:47:20 -0700588 "../api:transport_api",
mbonadei3edccb92017-06-01 04:47:20 -0700589 "../api/audio_codecs:builtin_audio_decoder_factory",
ossueb1fde42017-05-02 06:46:30 -0700590 "../api/audio_codecs:builtin_audio_encoder_factory",
Niels Möllerc6ce9c52018-05-11 11:15:30 +0200591 "../api/video:video_frame",
ilnikd60d06a2017-04-05 03:02:20 -0700592 "../api/video_codecs:video_codecs_api",
kjellander94cee312016-06-10 01:56:57 -0700593 "../audio",
kjellander94cee312016-06-10 01:56:57 -0700594 "../call",
Mirko Bonadeia0e1a552017-12-04 10:50:51 +0100595 "../call:call_interfaces",
Artem Titov4e199e92018-08-20 13:30:39 +0200596 "../call:fake_network",
sprangdb2a9fc2017-08-09 06:42:32 -0700597 "../call:rtp_sender",
Artem Titov4e199e92018-08-20 13:30:39 +0200598 "../call:simulated_network",
Artem Titov46c4e602018-08-17 14:26:54 +0200599 "../call:simulated_packet_receiver",
aleloi440b6d92017-08-22 05:43:23 -0700600 "../call:video_stream_api",
mbonadei3edccb92017-06-01 04:47:20 -0700601 "../logging:rtc_event_log_api",
Qingsi Wang970b0882018-02-01 11:04:46 -0800602 "../logging:rtc_event_log_impl_base",
Emircan Uysaler03e6ec92018-03-09 15:03:26 -0800603 "../media:rtc_internal_video_codecs",
Mirko Bonadeiad627922017-11-30 17:16:21 +0100604 "../media:rtc_media_base",
Artem Titov3faa8322018-03-07 14:44:00 +0100605 "../modules/audio_device",
Paulina Hensman7bd79a02018-03-15 12:44:12 +0100606 "../modules/audio_device:audio_device_impl",
mbonadei3edccb92017-06-01 04:47:20 -0700607 "../modules/audio_device:mock_audio_device",
aleloi10111bc2016-11-17 06:48:48 -0800608 "../modules/audio_mixer:audio_mixer_impl",
aleloidd310712016-11-17 06:28:59 -0800609 "../modules/audio_processing",
Sebastian Jansson50eb4c42018-08-03 13:25:17 +0200610 "../modules/congestion_controller/bbr",
mbonadei3edccb92017-06-01 04:47:20 -0700611 "../modules/rtp_rtcp",
612 "../modules/rtp_rtcp:mock_rtp_rtcp",
Mirko Bonadeib5728d92017-12-06 07:51:33 +0100613 "../modules/rtp_rtcp:rtp_rtcp_format",
charujaincb728ea2017-09-18 03:08:08 -0700614 "../modules/video_coding:video_coding_utility",
mbonadei3edccb92017-06-01 04:47:20 -0700615 "../modules/video_coding:webrtc_h264",
Emircan Uysaler03e6ec92018-03-09 15:03:26 -0800616 "../modules/video_coding:webrtc_multiplex",
Sergio Garcia Murillo43800f92018-06-21 16:16:38 +0200617 "../modules/video_coding:webrtc_vp8",
mbonadei3edccb92017-06-01 04:47:20 -0700618 "../modules/video_coding:webrtc_vp9",
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100619 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700620 "../rtc_base:rtc_base_approved",
Sebastian Jansson50eb4c42018-08-03 13:25:17 +0200621 "../rtc_base/experiments:congestion_controller_experiment",
mbonadei3edccb92017-06-01 04:47:20 -0700622 "../system_wrappers",
Mirko Bonadeia498ae82017-12-06 09:17:14 +0100623 "../system_wrappers:field_trial_api",
Ilya Nikolaevskiy2ffe3e82018-01-17 19:57:24 +0000624 "../system_wrappers:runtime_enabled_features_api",
kjellander94cee312016-06-10 01:56:57 -0700625 "../video",
kjellander0f380d82016-06-01 04:48:26 -0700626 "//testing/gtest",
Karl Wiberg918f50c2018-07-05 11:40:33 +0200627 "//third_party/abseil-cpp/absl/memory",
kjellander0f380d82016-06-01 04:48:26 -0700628 ]
mbonadei148d5a22017-04-28 05:24:50 -0700629 if (!is_android && !build_with_chromium) {
oprypin92220ff2017-03-23 03:40:03 -0700630 deps += [ "../modules/video_capture:video_capture_internal_impl" ]
631 }
kjellander0f380d82016-06-01 04:48:26 -0700632}
633
ehmaldonado38a21322016-09-02 04:10:34 -0700634rtc_source_set("test_renderer") {
mbonadei9c296b32017-09-05 05:11:41 -0700635 public_deps = [
636 ":test_renderer_generic",
637 ]
kjellander0f380d82016-06-01 04:48:26 -0700638 testonly = true
mbonadeicd95a4e2017-08-23 23:55:54 -0700639 if (is_mac) {
mbonadei9c296b32017-09-05 05:11:41 -0700640 public_deps += [ ":test_renderer_objc" ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700641 }
642}
643
644if (is_mac) {
645 rtc_source_set("test_renderer_objc") {
646 testonly = true
mbonadei9c296b32017-09-05 05:11:41 -0700647 visibility = [ ":test_renderer" ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700648 sources = [
649 "mac/video_renderer_mac.h",
650 "mac/video_renderer_mac.mm",
651 ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700652 deps = [
mbonadei9c296b32017-09-05 05:11:41 -0700653 ":test_renderer_generic",
mbonadeicd95a4e2017-08-23 23:55:54 -0700654 "../rtc_base:rtc_base_approved",
655 ]
656 libs = [
657 "Cocoa.framework",
658 "OpenGL.framework",
659 "CoreVideo.framework",
660 ]
661 if (!build_with_chromium && is_clang) {
662 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
663 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
664 }
665 }
666}
667
668rtc_source_set("test_renderer_generic") {
669 testonly = true
mbonadei9c296b32017-09-05 05:11:41 -0700670 visibility = [
671 ":test_renderer",
672 ":test_renderer_objc",
673 ]
kjellander0f380d82016-06-01 04:48:26 -0700674 libs = []
675 sources = [
kjellander0f380d82016-06-01 04:48:26 -0700676 "video_renderer.cc",
677 "video_renderer.h",
678 "win/d3d_renderer.cc",
679 "win/d3d_renderer.h",
680 ]
mbonadeicd95a4e2017-08-23 23:55:54 -0700681 deps = [
682 ":test_support",
683 "..:webrtc_common",
Niels Möllerc6ce9c52018-05-11 11:15:30 +0200684 "../api/video:video_frame",
mbonadeicd95a4e2017-08-23 23:55:54 -0700685 "../common_video",
Mirko Bonadeiad627922017-11-30 17:16:21 +0100686 "../media:rtc_media_base",
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100687 "../rtc_base:checks",
mbonadeicd95a4e2017-08-23 23:55:54 -0700688 "../rtc_base:rtc_base_approved",
689 "//testing/gtest",
690 ]
Joachim Bauch75f18fc2017-12-20 21:25:47 +0100691 if (!(is_linux && rtc_use_x11) && !is_mac && !is_win) {
kjellander0f380d82016-06-01 04:48:26 -0700692 sources += [ "null_platform_renderer.cc" ]
693 }
Joachim Bauch75f18fc2017-12-20 21:25:47 +0100694 if ((is_linux && rtc_use_x11) || is_mac) {
kjellander0f380d82016-06-01 04:48:26 -0700695 sources += [
696 "gl/gl_renderer.cc",
697 "gl/gl_renderer.h",
698 ]
699 }
700
Joachim Bauch75f18fc2017-12-20 21:25:47 +0100701 if (is_linux && rtc_use_x11) {
Edward Lemur84a87c42017-11-07 19:07:31 +0100702 sources += [
703 "linux/glx_renderer.cc",
704 "linux/glx_renderer.h",
705 "linux/video_renderer_linux.cc",
706 ]
kjellander0f380d82016-06-01 04:48:26 -0700707 libs += [
708 "Xext",
709 "X11",
710 "GL",
711 ]
712 }
713 if (is_android) {
714 libs += [
715 "GLESv2",
716 "log",
717 ]
718 }
kjellander0f380d82016-06-01 04:48:26 -0700719
kjellandere40a7ee2016-10-16 23:56:12 -0700720 if (!build_with_chromium && is_clang) {
721 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -0700722 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander0f380d82016-06-01 04:48:26 -0700723 }
kjellander0f380d82016-06-01 04:48:26 -0700724}
kwiberg37e99fd2017-04-10 05:15:48 -0700725
726rtc_source_set("audio_codec_mocks") {
727 testonly = true
728 sources = [
kwiberg2b3aa142017-06-14 03:31:17 -0700729 "mock_audio_decoder.cc",
kwiberg37e99fd2017-04-10 05:15:48 -0700730 "mock_audio_decoder.h",
731 "mock_audio_decoder_factory.h",
ossueb1fde42017-05-02 06:46:30 -0700732 "mock_audio_encoder.cc",
733 "mock_audio_encoder.h",
734 "mock_audio_encoder_factory.h",
735 ]
736
737 deps = [
mbonadei3edccb92017-06-01 04:47:20 -0700738 ":test_support",
kwiberg529662a2017-09-04 05:43:17 -0700739 "../api:array_view",
ossueb1fde42017-05-02 06:46:30 -0700740 "../api/audio_codecs:audio_codecs_api",
mbonadei3edccb92017-06-01 04:47:20 -0700741 "../api/audio_codecs:builtin_audio_decoder_factory",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700742 "../rtc_base:rtc_base_approved",
kwiberg37e99fd2017-04-10 05:15:48 -0700743 ]
744}
sakald7fdb802017-05-26 01:51:53 -0700745
746if (!build_with_chromium && is_android) {
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000747 rtc_android_library("native_test_java") {
sakald7fdb802017-05-26 01:51:53 -0700748 testonly = true
749 java_files = [
750 "android/org/webrtc/native_test/RTCNativeUnitTest.java",
751 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java",
752 ]
753 deps = [
jianjun.zhuc0247402017-07-11 06:20:45 -0700754 "../rtc_base:base_java",
sakald7fdb802017-05-26 01:51:53 -0700755 "//testing/android/native_test:native_test_java",
sakald7fdb802017-05-26 01:51:53 -0700756 ]
757 }
758}