| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 ":webrtc_vp8", | 342 ":webrtc_vp8", |
| 343 "../..:webrtc_common", | 343 "../..:webrtc_common", |
| 344 "../../rtc_base:rtc_base_approved", | 344 "../../rtc_base:rtc_base_approved", |
| 345 "../../system_wrappers:field_trial_default", | 345 "../../system_wrappers:field_trial_default", |
| 346 "../../system_wrappers:metrics_default", | 346 "../../system_wrappers:metrics_default", |
| 347 "../../system_wrappers:system_wrappers", | 347 "../../system_wrappers:system_wrappers", |
| 348 "../../test:test_support", | 348 "../../test:test_support", |
| 349 "../../test:video_test_common", | 349 "../../test:video_test_common", |
| 350 "../../test:video_test_support", | 350 "../../test:video_test_support", |
| 351 "../video_capture", | 351 "../video_capture", |
| 352 "//third_party/gflags", | |
| 353 ] | 352 ] |
| 354 } # video_quality_measurement | 353 } # video_quality_measurement |
| 355 | 354 |
| 356 rtc_source_set("video_codecs_test_framework") { | 355 rtc_source_set("video_codecs_test_framework") { |
| 357 testonly = true | 356 testonly = true |
| 358 sources = [ | 357 sources = [ |
| 359 "codecs/test/mock/mock_packet_manipulator.h", | 358 "codecs/test/mock/mock_packet_manipulator.h", |
| 360 "codecs/test/packet_manipulator.cc", | 359 "codecs/test/packet_manipulator.cc", |
| 361 "codecs/test/packet_manipulator.h", | 360 "codecs/test/packet_manipulator.h", |
| 362 "codecs/test/predictive_packet_manipulator.cc", | 361 "codecs/test/predictive_packet_manipulator.cc", |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 } | 636 } |
| 638 | 637 |
| 639 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 638 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
| 640 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 639 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 641 if (!build_with_chromium && is_clang) { | 640 if (!build_with_chromium && is_clang) { |
| 642 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 641 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 643 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 642 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 644 } | 643 } |
| 645 } | 644 } |
| 646 } | 645 } |
| OLD | NEW |