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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
303 deps = [ | 303 deps = [ |
304 ":video_coding", | 304 ":video_coding", |
305 ":video_coding_utility", | 305 ":video_coding_utility", |
306 "../..:webrtc_common", | 306 "../..:webrtc_common", |
307 "../../base:rtc_base_approved", | 307 "../../base:rtc_base_approved", |
308 "../../common_video:common_video", | 308 "../../common_video:common_video", |
309 "../../system_wrappers:system_wrappers", | 309 "../../system_wrappers:system_wrappers", |
310 "../../test:test_support", | 310 "../../test:test_support", |
311 ] | 311 ] |
312 } | 312 } |
313 | |
314 rtc_source_set("video_coding_modules_tests") { | |
stefan-webrtc
2017/01/26 14:39:27
video_coding_tests? More similar to video_coding_t
| |
315 testonly = true | |
316 sources = [ | |
317 "codecs/test/videoprocessor_integrationtest.cc", | |
318 "codecs/vp8/test/vp8_impl_unittest.cc", | |
319 ] | |
320 deps = [ | |
321 ":video_codecs_test_framework", | |
322 ":video_coding", | |
323 ":webrtc_h264", | |
324 ":webrtc_vp8", | |
325 ":webrtc_vp9", | |
326 "../..:webrtc_common", | |
327 "../../api:video_frame_api", | |
328 "../../base:rtc_base_approved", | |
329 "../../common_video:common_video", | |
330 "../../media:rtc_media_base", | |
331 "../../test:test_support", | |
332 "../../test:video_test_common", | |
333 ] | |
334 if (rtc_use_h264) { | |
335 defines = [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] | |
336 } | |
337 if (!build_with_chromium && is_clang) { | |
338 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | |
339 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | |
340 } | |
341 } | |
342 | |
313 rtc_source_set("video_coding_unittests") { | 343 rtc_source_set("video_coding_unittests") { |
314 testonly = true | 344 testonly = true |
315 sources = [ | 345 sources = [ |
316 "codecs/test/packet_manipulator_unittest.cc", | 346 "codecs/test/packet_manipulator_unittest.cc", |
317 "codecs/test/stats_unittest.cc", | 347 "codecs/test/stats_unittest.cc", |
318 "codecs/test/videoprocessor_unittest.cc", | 348 "codecs/test/videoprocessor_unittest.cc", |
319 "codecs/vp8/default_temporal_layers_unittest.cc", | 349 "codecs/vp8/default_temporal_layers_unittest.cc", |
320 "codecs/vp8/reference_picture_selection_unittest.cc", | 350 "codecs/vp8/reference_picture_selection_unittest.cc", |
321 "codecs/vp8/screenshare_layers_unittest.cc", | 351 "codecs/vp8/screenshare_layers_unittest.cc", |
322 "codecs/vp8/simulcast_encoder_adapter_unittest.cc", | 352 "codecs/vp8/simulcast_encoder_adapter_unittest.cc", |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
388 } | 418 } |
389 | 419 |
390 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 420 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
391 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 421 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
392 if (!build_with_chromium && is_clang) { | 422 if (!build_with_chromium && is_clang) { |
393 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 423 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
394 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 424 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
395 } | 425 } |
396 } | 426 } |
397 } | 427 } |
OLD | NEW |