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