| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 deps = [ | 296 deps = [ |
| 297 ":video_codecs_test_framework", | 297 ":video_codecs_test_framework", |
| 298 ":video_coding", | 298 ":video_coding", |
| 299 ":webrtc_vp8", | 299 ":webrtc_vp8", |
| 300 "../..:webrtc_common", | 300 "../..:webrtc_common", |
| 301 "../../base:rtc_base_approved", | 301 "../../base:rtc_base_approved", |
| 302 "../../system_wrappers:field_trial_default", | 302 "../../system_wrappers:field_trial_default", |
| 303 "../../system_wrappers:metrics_default", | 303 "../../system_wrappers:metrics_default", |
| 304 "../../system_wrappers:system_wrappers", | 304 "../../system_wrappers:system_wrappers", |
| 305 "../../test:test_support", | 305 "../../test:test_support", |
| 306 "../../test:video_test_common", |
| 307 "../../test:video_test_support", |
| 308 "../video_capture", |
| 306 "//third_party/gflags", | 309 "//third_party/gflags", |
| 307 ] | 310 ] |
| 308 } # video_quality_measurement | 311 } # video_quality_measurement |
| 309 | 312 |
| 310 rtc_source_set("video_codecs_test_framework") { | 313 rtc_source_set("video_codecs_test_framework") { |
| 311 testonly = true | 314 testonly = true |
| 312 sources = [ | 315 sources = [ |
| 313 "codecs/test/mock/mock_packet_manipulator.h", | 316 "codecs/test/mock/mock_packet_manipulator.h", |
| 314 "codecs/test/packet_manipulator.cc", | 317 "codecs/test/packet_manipulator.cc", |
| 315 "codecs/test/packet_manipulator.h", | 318 "codecs/test/packet_manipulator.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 327 } | 330 } |
| 328 | 331 |
| 329 deps = [ | 332 deps = [ |
| 330 ":video_coding", | 333 ":video_coding", |
| 331 ":video_coding_utility", | 334 ":video_coding_utility", |
| 332 "../..:webrtc_common", | 335 "../..:webrtc_common", |
| 333 "../../base:rtc_base_approved", | 336 "../../base:rtc_base_approved", |
| 334 "../../common_video:common_video", | 337 "../../common_video:common_video", |
| 335 "../../system_wrappers:system_wrappers", | 338 "../../system_wrappers:system_wrappers", |
| 336 "../../test:test_support", | 339 "../../test:test_support", |
| 340 "../../test:video_test_support", |
| 337 ] | 341 ] |
| 338 } | 342 } |
| 339 | 343 |
| 340 rtc_source_set("video_coding_modules_tests") { | 344 rtc_source_set("video_coding_modules_tests") { |
| 341 testonly = true | 345 testonly = true |
| 342 sources = [ | 346 sources = [ |
| 343 "codecs/test/videoprocessor_integrationtest.cc", | 347 "codecs/test/videoprocessor_integrationtest.cc", |
| 344 "codecs/vp8/test/vp8_impl_unittest.cc", | 348 "codecs/vp8/test/vp8_impl_unittest.cc", |
| 345 ] | 349 ] |
| 346 deps = [ | 350 deps = [ |
| 347 ":video_codecs_test_framework", | 351 ":video_codecs_test_framework", |
| 348 ":video_coding", | 352 ":video_coding", |
| 349 ":webrtc_h264", | 353 ":webrtc_h264", |
| 350 ":webrtc_vp8", | 354 ":webrtc_vp8", |
| 351 ":webrtc_vp9", | 355 ":webrtc_vp9", |
| 352 "../..:webrtc_common", | 356 "../..:webrtc_common", |
| 353 "../../api:video_frame_api", | 357 "../../api:video_frame_api", |
| 354 "../../base:rtc_base_approved", | 358 "../../base:rtc_base_approved", |
| 355 "../../common_video:common_video", | 359 "../../common_video:common_video", |
| 356 "../../media:rtc_media_base", | 360 "../../media:rtc_media_base", |
| 357 "../../test:test_support", | 361 "../../test:test_support", |
| 358 "../../test:video_test_common", | 362 "../../test:video_test_common", |
| 363 "../../test:video_test_support", |
| 364 "../video_capture", |
| 359 ] | 365 ] |
| 360 if (rtc_use_h264) { | 366 if (rtc_use_h264) { |
| 361 defines = [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] | 367 defines = [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] |
| 362 } | 368 } |
| 363 if (!build_with_chromium && is_clang) { | 369 if (!build_with_chromium && is_clang) { |
| 364 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 370 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 365 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 371 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 366 } | 372 } |
| 367 } | 373 } |
| 368 | 374 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 "../../api:video_frame_api", | 430 "../../api:video_frame_api", |
| 425 "../../base:rtc_base", | 431 "../../base:rtc_base", |
| 426 "../../base:rtc_base_approved", | 432 "../../base:rtc_base_approved", |
| 427 "../../base:rtc_task_queue", | 433 "../../base:rtc_task_queue", |
| 428 "../../common_video:common_video", | 434 "../../common_video:common_video", |
| 429 "../../system_wrappers:metrics_default", | 435 "../../system_wrappers:metrics_default", |
| 430 "../../system_wrappers:system_wrappers", | 436 "../../system_wrappers:system_wrappers", |
| 431 "../../test:field_trial", | 437 "../../test:field_trial", |
| 432 "../../test:test_support", | 438 "../../test:test_support", |
| 433 "../../test:video_test_common", | 439 "../../test:video_test_common", |
| 440 "../../test:video_test_support", |
| 434 "../rtp_rtcp:rtp_rtcp", | 441 "../rtp_rtcp:rtp_rtcp", |
| 435 "//testing/gmock", | 442 "//testing/gmock", |
| 436 ] | 443 ] |
| 437 if (rtc_build_libvpx) { | 444 if (rtc_build_libvpx) { |
| 438 deps += [ rtc_libvpx_dir ] | 445 deps += [ rtc_libvpx_dir ] |
| 439 } | 446 } |
| 440 if (is_win) { | 447 if (is_win) { |
| 441 cflags = [ | 448 cflags = [ |
| 442 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 449 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
| 443 "/wd4373", # virtual function override. | 450 "/wd4373", # virtual function override. |
| 444 ] | 451 ] |
| 445 } | 452 } |
| 446 | 453 |
| 447 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 454 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
| 448 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 455 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 449 if (!build_with_chromium && is_clang) { | 456 if (!build_with_chromium && is_clang) { |
| 450 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 457 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 451 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 458 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 452 } | 459 } |
| 453 } | 460 } |
| 454 } | 461 } |
| OLD | NEW |