OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("../webrtc.gni") | 9 import("../webrtc.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 "vcm_capturer.h", | 45 "vcm_capturer.h", |
46 "video_capturer.h", | 46 "video_capturer.h", |
47 ] | 47 ] |
48 | 48 |
49 if (!build_with_chromium && is_clang) { | 49 if (!build_with_chromium && is_clang) { |
50 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 50 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
51 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 51 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
52 } | 52 } |
53 | 53 |
54 deps = [ | 54 deps = [ |
55 ":video_test_support", | |
56 "../common_video", | 55 "../common_video", |
57 "../modules/video_capture:video_capture_module", | 56 "../modules/video_capture:video_capture_module", |
58 ] | 57 ] |
59 } | 58 } |
60 | 59 |
61 rtc_source_set("rtp_test_utils") { | 60 rtc_source_set("rtp_test_utils") { |
62 testonly = true | 61 testonly = true |
63 sources = [ | 62 sources = [ |
64 "rtcp_packet_parser.cc", | 63 "rtcp_packet_parser.cc", |
65 "rtcp_packet_parser.h", | 64 "rtcp_packet_parser.h", |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 if (is_android) { | 284 if (is_android) { |
286 deps += [ "//testing/android/native_test:native_test_support" ] | 285 deps += [ "//testing/android/native_test:native_test_support" ] |
287 shard_timeout = 900 | 286 shard_timeout = 900 |
288 } | 287 } |
289 | 288 |
290 if (is_ios) { | 289 if (is_ios) { |
291 deps += [ ":test_support_unittests_bundle_data" ] | 290 deps += [ ":test_support_unittests_bundle_data" ] |
292 } | 291 } |
293 | 292 |
294 deps += [ | 293 deps += [ |
| 294 ":direct_transport", |
295 ":fileutils_unittests", | 295 ":fileutils_unittests", |
296 ":test_common", | 296 ":test_common", |
297 ":test_main", | 297 ":test_main", |
298 ":video_test_common", | 298 ":video_test_common", |
| 299 ":video_test_support", |
299 "../modules/video_capture", | 300 "../modules/video_capture", |
300 "//testing/gmock", | 301 "//testing/gmock", |
301 "//testing/gtest", | 302 "//testing/gtest", |
302 "//third_party/gflags", | 303 "//third_party/gflags", |
303 ] | 304 ] |
304 } | 305 } |
305 rtc_source_set("fileutils_unittests") { | 306 rtc_source_set("fileutils_unittests") { |
306 testonly = true | 307 testonly = true |
307 sources = [ | 308 sources = [ |
308 "testsupport/fileutils_unittest.cc", | 309 "testsupport/fileutils_unittest.cc", |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 if (!build_with_chromium && is_clang) { | 390 if (!build_with_chromium && is_clang) { |
390 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 391 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
391 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 392 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
392 } | 393 } |
393 | 394 |
394 deps = [ | 395 deps = [ |
395 ":direct_transport", | 396 ":direct_transport", |
396 ":fake_audio_device", | 397 ":fake_audio_device", |
397 ":rtp_test_utils", | 398 ":rtp_test_utils", |
398 ":test_support", | 399 ":test_support", |
| 400 ":video_test_common", |
399 "..:webrtc_common", | 401 "..:webrtc_common", |
400 "../audio", | 402 "../audio", |
401 "../base:rtc_base_approved", | 403 "../base:rtc_base_approved", |
402 "../call", | 404 "../call", |
403 "../modules/audio_mixer:audio_mixer_impl", | 405 "../modules/audio_mixer:audio_mixer_impl", |
404 "../modules/audio_processing", | 406 "../modules/audio_processing", |
405 "../video", | 407 "../video", |
406 "//testing/gmock", | 408 "//testing/gmock", |
407 "//testing/gtest", | 409 "//testing/gtest", |
408 ] | 410 ] |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 | 470 |
469 public_configs = [ ":test_renderer_exported_config" ] | 471 public_configs = [ ":test_renderer_exported_config" ] |
470 | 472 |
471 if (!build_with_chromium && is_clang) { | 473 if (!build_with_chromium && is_clang) { |
472 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 474 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
473 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 475 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
474 } | 476 } |
475 | 477 |
476 deps = [ | 478 deps = [ |
477 ":test_support", | 479 ":test_support", |
478 ":video_test_common", | |
479 "../modules/media_file", | 480 "../modules/media_file", |
480 "//testing/gtest", | 481 "//testing/gtest", |
481 ] | 482 ] |
482 } | 483 } |
OLD | NEW |