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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 | 457 |
458 deps = [ | 458 deps = [ |
459 ":video_codecs_test_framework", | 459 ":video_codecs_test_framework", |
460 ":video_coding_videoprocessor_integration_test", | 460 ":video_coding_videoprocessor_integration_test", |
461 ":webrtc_h264", | 461 ":webrtc_h264", |
462 ":webrtc_vp8", | 462 ":webrtc_vp8", |
463 ":webrtc_vp9", | 463 ":webrtc_vp9", |
464 "../../api:video_frame_api", | 464 "../../api:video_frame_api", |
465 "../../common_video:common_video", | 465 "../../common_video:common_video", |
466 "../../rtc_base:rtc_base_approved", | 466 "../../rtc_base:rtc_base_approved", |
| 467 "../../test:field_trial", |
467 "../../test:test_support", | 468 "../../test:test_support", |
468 "../../test:video_test_common", | 469 "../../test:video_test_common", |
469 "../video_capture", | 470 "../video_capture", |
470 ] | 471 ] |
471 | 472 |
472 if (is_ios || is_mac) { | 473 if (is_ios || is_mac) { |
473 deps += [ ":objc_codec_test" ] | 474 deps += [ ":objc_codec_test" ] |
474 } | 475 } |
475 | 476 |
476 if (rtc_use_h264) { | 477 if (rtc_use_h264) { |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 } | 641 } |
641 | 642 |
642 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 643 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
643 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 644 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
644 if (!build_with_chromium && is_clang) { | 645 if (!build_with_chromium && is_clang) { |
645 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 646 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
646 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 647 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
647 } | 648 } |
648 } | 649 } |
649 } | 650 } |
OLD | NEW |