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 | 10 |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 deps = [ | 329 deps = [ |
330 ":video_coding", | 330 ":video_coding", |
331 ":video_coding_utility", | 331 ":video_coding_utility", |
332 "../..:webrtc_common", | 332 "../..:webrtc_common", |
333 "../../base:rtc_base_approved", | 333 "../../base:rtc_base_approved", |
334 "../../common_video:common_video", | 334 "../../common_video:common_video", |
335 "../../system_wrappers:system_wrappers", | 335 "../../system_wrappers:system_wrappers", |
336 "../../test:test_support", | 336 "../../test:test_support", |
337 ] | 337 ] |
338 } | 338 } |
| 339 |
| 340 rtc_source_set("video_coding_modules_tests") { |
| 341 testonly = true |
| 342 sources = [ |
| 343 "codecs/test/videoprocessor_integrationtest.cc", |
| 344 "codecs/vp8/test/vp8_impl_unittest.cc", |
| 345 ] |
| 346 deps = [ |
| 347 ":video_codecs_test_framework", |
| 348 ":video_coding", |
| 349 ":webrtc_h264", |
| 350 ":webrtc_vp8", |
| 351 ":webrtc_vp9", |
| 352 "../..:webrtc_common", |
| 353 "../../api:video_frame_api", |
| 354 "../../base:rtc_base_approved", |
| 355 "../../common_video:common_video", |
| 356 "../../media:rtc_media_base", |
| 357 "../../test:test_support", |
| 358 "../../test:video_test_common", |
| 359 ] |
| 360 if (rtc_use_h264) { |
| 361 defines = [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] |
| 362 } |
| 363 if (!build_with_chromium && is_clang) { |
| 364 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 365 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 366 } |
| 367 } |
| 368 |
339 rtc_source_set("video_coding_unittests") { | 369 rtc_source_set("video_coding_unittests") { |
340 testonly = true | 370 testonly = true |
341 sources = [ | 371 sources = [ |
342 "codecs/test/packet_manipulator_unittest.cc", | 372 "codecs/test/packet_manipulator_unittest.cc", |
343 "codecs/test/stats_unittest.cc", | 373 "codecs/test/stats_unittest.cc", |
344 "codecs/test/videoprocessor_unittest.cc", | 374 "codecs/test/videoprocessor_unittest.cc", |
345 "codecs/vp8/default_temporal_layers_unittest.cc", | 375 "codecs/vp8/default_temporal_layers_unittest.cc", |
346 "codecs/vp8/reference_picture_selection_unittest.cc", | 376 "codecs/vp8/reference_picture_selection_unittest.cc", |
347 "codecs/vp8/screenshare_layers_unittest.cc", | 377 "codecs/vp8/screenshare_layers_unittest.cc", |
348 "codecs/vp8/simulcast_encoder_adapter_unittest.cc", | 378 "codecs/vp8/simulcast_encoder_adapter_unittest.cc", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 } | 445 } |
416 | 446 |
417 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 447 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
418 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 448 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
419 if (!build_with_chromium && is_clang) { | 449 if (!build_with_chromium && is_clang) { |
420 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 450 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
421 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 451 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
422 } | 452 } |
423 } | 453 } |
424 } | 454 } |
OLD | NEW |