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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 rtc_source_set("video_codecs_test_framework") { | 304 rtc_source_set("video_codecs_test_framework") { |
305 testonly = true | 305 testonly = true |
306 sources = [ | 306 sources = [ |
307 "codecs/test/mock/mock_packet_manipulator.h", | 307 "codecs/test/mock/mock_packet_manipulator.h", |
308 "codecs/test/packet_manipulator.cc", | 308 "codecs/test/packet_manipulator.cc", |
309 "codecs/test/packet_manipulator.h", | 309 "codecs/test/packet_manipulator.h", |
310 "codecs/test/predictive_packet_manipulator.cc", | 310 "codecs/test/predictive_packet_manipulator.cc", |
311 "codecs/test/predictive_packet_manipulator.h", | 311 "codecs/test/predictive_packet_manipulator.h", |
312 "codecs/test/stats.cc", | 312 "codecs/test/stats.cc", |
313 "codecs/test/stats.h", | 313 "codecs/test/stats.h", |
314 "codecs/test/video_codec_test.cc", | |
315 "codecs/test/video_codec_test.h", | |
316 "codecs/test/videoprocessor.cc", | 314 "codecs/test/videoprocessor.cc", |
317 "codecs/test/videoprocessor.h", | 315 "codecs/test/videoprocessor.h", |
318 ] | 316 ] |
319 | 317 |
320 if (!build_with_chromium && is_clang) { | 318 if (!build_with_chromium && is_clang) { |
321 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 319 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
322 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 320 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
323 } | 321 } |
324 | 322 |
325 deps = [ | 323 deps = [ |
326 ":video_coding", | 324 ":video_coding", |
327 ":video_coding_utility", | 325 ":video_coding_utility", |
328 "../..:webrtc_common", | 326 "../..:webrtc_common", |
329 "../../base:rtc_base_approved", | 327 "../../base:rtc_base_approved", |
330 "../../common_video:common_video", | 328 "../../common_video:common_video", |
331 "../../system_wrappers:system_wrappers", | 329 "../../system_wrappers:system_wrappers", |
332 "../../test:test_support", | 330 "../../test:test_support", |
333 "../../test:video_test_common", | |
334 "../../test:video_test_support", | 331 "../../test:video_test_support", |
335 ] | 332 ] |
336 } | 333 } |
337 | 334 |
338 rtc_source_set("video_coding_videoprocessor_integration_test") { | 335 rtc_source_set("video_coding_videoprocessor_integration_test") { |
339 testonly = true | 336 testonly = true |
340 | 337 |
341 sources = [ | 338 sources = [ |
342 "codecs/test/videoprocessor_integrationtest.h", | 339 "codecs/test/videoprocessor_integrationtest.h", |
343 ] | 340 ] |
(...skipping 30 matching lines...) Expand all Loading... |
374 "../../media:rtc_media_base", | 371 "../../media:rtc_media_base", |
375 "../../sdk:webrtc_h264_video_toolbox", | 372 "../../sdk:webrtc_h264_video_toolbox", |
376 ] | 373 ] |
377 } | 374 } |
378 } | 375 } |
379 | 376 |
380 rtc_source_set("video_coding_modules_tests") { | 377 rtc_source_set("video_coding_modules_tests") { |
381 testonly = true | 378 testonly = true |
382 | 379 |
383 sources = [ | 380 sources = [ |
384 "codecs/h264/test/h264_impl_unittest.cc", | |
385 "codecs/test/videoprocessor_integrationtest.cc", | 381 "codecs/test/videoprocessor_integrationtest.cc", |
386 "codecs/vp8/test/vp8_impl_unittest.cc", | 382 "codecs/vp8/test/vp8_impl_unittest.cc", |
387 "codecs/vp9/test/vp9_impl_unittest.cc", | 383 "codecs/vp9/test/vp9_impl_unittest.cc", |
388 ] | 384 ] |
389 | 385 |
390 deps = [ | 386 deps = [ |
391 ":video_codecs_test_framework", | |
392 ":video_coding_videoprocessor_integration_test", | 387 ":video_coding_videoprocessor_integration_test", |
393 ":webrtc_h264", | |
394 ":webrtc_vp8", | 388 ":webrtc_vp8", |
395 ":webrtc_vp9", | 389 ":webrtc_vp9", |
396 "../../api:video_frame_api", | 390 "../../api:video_frame_api", |
397 "../../base:rtc_base_approved", | 391 "../../base:rtc_base_approved", |
398 "../../common_video:common_video", | 392 "../../common_video:common_video", |
399 "../../test:test_support", | 393 "../../test:test_support", |
400 "../../test:video_test_common", | 394 "../../test:video_test_common", |
401 "../video_capture", | 395 "../video_capture", |
402 ] | 396 ] |
403 | 397 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 } | 552 } |
559 | 553 |
560 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 554 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
561 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 555 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
562 if (!build_with_chromium && is_clang) { | 556 if (!build_with_chromium && is_clang) { |
563 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 557 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
564 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 558 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
565 } | 559 } |
566 } | 560 } |
567 } | 561 } |
OLD | NEW |