| 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 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 329 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 330 } | 330 } |
| 331 | 331 |
| 332 deps = [ | 332 deps = [ |
| 333 ":video_coding", | 333 ":video_coding", |
| 334 ":video_coding_utility", | 334 ":video_coding_utility", |
| 335 ":webrtc_vp8", | 335 ":webrtc_vp8", |
| 336 "../..:webrtc_common", | 336 "../..:webrtc_common", |
| 337 "../../api/video_codecs:video_codecs_api", | 337 "../../api/video_codecs:video_codecs_api", |
| 338 "../../base:rtc_base_approved", | 338 "../../base:rtc_base_approved", |
| 339 "../../base:rtc_task_queue", |
| 340 "../../base:sequenced_task_checker", |
| 339 "../../common_video:common_video", | 341 "../../common_video:common_video", |
| 340 "../../system_wrappers:system_wrappers", | 342 "../../system_wrappers:system_wrappers", |
| 341 "../../test:test_support", | 343 "../../test:test_support", |
| 342 "../../test:video_test_common", | 344 "../../test:video_test_common", |
| 343 "../../test:video_test_support", | 345 "../../test:video_test_support", |
| 344 ] | 346 ] |
| 345 } | 347 } |
| 346 | 348 |
| 347 rtc_source_set("video_coding_videoprocessor_integration_test") { | 349 rtc_source_set("video_coding_videoprocessor_integration_test") { |
| 348 testonly = true | 350 testonly = true |
| 349 | 351 |
| 350 sources = [ | 352 sources = [ |
| 351 "codecs/test/videoprocessor_integrationtest.h", | 353 "codecs/test/videoprocessor_integrationtest.h", |
| 352 ] | 354 ] |
| 353 | 355 |
| 354 deps = [ | 356 deps = [ |
| 355 ":video_codecs_test_framework", | 357 ":video_codecs_test_framework", |
| 356 ":video_coding", | 358 ":video_coding", |
| 357 ":video_coding_utility", | 359 ":video_coding_utility", |
| 358 ":webrtc_h264", | 360 ":webrtc_h264", |
| 359 ":webrtc_vp8", | 361 ":webrtc_vp8", |
| 360 ":webrtc_vp9", | 362 ":webrtc_vp9", |
| 361 "../..:webrtc_common", | 363 "../..:webrtc_common", |
| 362 "../../base:rtc_base_approved", | 364 "../../base:rtc_base_approved", |
| 365 "../../base:rtc_task_queue", |
| 363 "../../media:rtc_media", | 366 "../../media:rtc_media", |
| 367 "../../system_wrappers:system_wrappers", |
| 364 "../../test:test_support", | 368 "../../test:test_support", |
| 365 "../../test:video_test_support", | 369 "../../test:video_test_support", |
| 366 ] | 370 ] |
| 367 | 371 |
| 368 if (is_android) { | 372 if (is_android) { |
| 369 sources += [ | 373 sources += [ |
| 370 "codecs/test/android_test_initializer.cc", | 374 "codecs/test/android_test_initializer.cc", |
| 371 "codecs/test/android_test_initializer.h", | 375 "codecs/test/android_test_initializer.h", |
| 372 ] | 376 ] |
| 373 | 377 |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 } | 585 } |
| 582 | 586 |
| 583 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 587 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
| 584 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 588 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 585 if (!build_with_chromium && is_clang) { | 589 if (!build_with_chromium && is_clang) { |
| 586 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 590 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 587 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 591 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 588 } | 592 } |
| 589 } | 593 } |
| 590 } | 594 } |
| OLD | NEW |