| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 visibility = [ "//webrtc:video_engine_tests" ] | 81 visibility = [ "//webrtc:video_engine_tests" ] |
| 82 } | 82 } |
| 83 sources = [ | 83 sources = [ |
| 84 "bitrate_allocator_unittest.cc", | 84 "bitrate_allocator_unittest.cc", |
| 85 "bitrate_estimator_tests.cc", | 85 "bitrate_estimator_tests.cc", |
| 86 "call_unittest.cc", | 86 "call_unittest.cc", |
| 87 "flexfec_receive_stream_unittest.cc", | 87 "flexfec_receive_stream_unittest.cc", |
| 88 ] | 88 ] |
| 89 deps = [ | 89 deps = [ |
| 90 ":call", | 90 ":call", |
| 91 "../api:mock_audio_mixer", |
| 91 "../base:rtc_base_approved", | 92 "../base:rtc_base_approved", |
| 92 "../logging:rtc_event_log_api", | 93 "../logging:rtc_event_log_api", |
| 93 "../modules/audio_device:mock_audio_device", | 94 "../modules/audio_device:mock_audio_device", |
| 94 "../modules/audio_mixer", | 95 "../modules/audio_mixer", |
| 95 "../modules/bitrate_controller", | 96 "../modules/bitrate_controller", |
| 96 "../modules/congestion_controller:mock_congestion_controller", | 97 "../modules/congestion_controller:mock_congestion_controller", |
| 97 "../modules/pacing", | 98 "../modules/pacing", |
| 98 "../modules/rtp_rtcp", | 99 "../modules/rtp_rtcp", |
| 99 "../modules/rtp_rtcp:mock_rtp_rtcp", | 100 "../modules/rtp_rtcp:mock_rtp_rtcp", |
| 100 "../system_wrappers", | 101 "../system_wrappers", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 "//testing/gtest", | 147 "//testing/gtest", |
| 147 "//webrtc/test:field_trial", | 148 "//webrtc/test:field_trial", |
| 148 "//webrtc/test:test_common", | 149 "//webrtc/test:test_common", |
| 149 ] | 150 ] |
| 150 if (!build_with_chromium && is_clang) { | 151 if (!build_with_chromium && is_clang) { |
| 151 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 152 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 152 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 153 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 153 } | 154 } |
| 154 } | 155 } |
| 155 } | 156 } |
| OLD | NEW |