| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 } | 86 } |
| 87 sources = [ | 87 sources = [ |
| 88 "bitrate_allocator_unittest.cc", | 88 "bitrate_allocator_unittest.cc", |
| 89 "bitrate_estimator_tests.cc", | 89 "bitrate_estimator_tests.cc", |
| 90 "call_unittest.cc", | 90 "call_unittest.cc", |
| 91 "flexfec_receive_stream_unittest.cc", | 91 "flexfec_receive_stream_unittest.cc", |
| 92 "rtx_receive_stream_unittest.cc", | 92 "rtx_receive_stream_unittest.cc", |
| 93 ] | 93 ] |
| 94 deps = [ | 94 deps = [ |
| 95 ":call", | 95 ":call", |
| 96 "../api:mock_audio_mixer", |
| 96 "../base:rtc_base_approved", | 97 "../base:rtc_base_approved", |
| 97 "../logging:rtc_event_log_api", | 98 "../logging:rtc_event_log_api", |
| 98 "../modules/audio_device:mock_audio_device", | 99 "../modules/audio_device:mock_audio_device", |
| 99 "../modules/audio_mixer", | 100 "../modules/audio_mixer", |
| 100 "../modules/bitrate_controller", | 101 "../modules/bitrate_controller", |
| 101 "../modules/congestion_controller:mock_congestion_controller", | 102 "../modules/congestion_controller:mock_congestion_controller", |
| 102 "../modules/pacing", | 103 "../modules/pacing", |
| 103 "../modules/rtp_rtcp", | 104 "../modules/rtp_rtcp", |
| 104 "../modules/rtp_rtcp:mock_rtp_rtcp", | 105 "../modules/rtp_rtcp:mock_rtp_rtcp", |
| 105 "../system_wrappers", | 106 "../system_wrappers", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "//testing/gtest", | 152 "//testing/gtest", |
| 152 "//webrtc/test:field_trial", | 153 "//webrtc/test:field_trial", |
| 153 "//webrtc/test:test_common", | 154 "//webrtc/test:test_common", |
| 154 ] | 155 ] |
| 155 if (!build_with_chromium && is_clang) { | 156 if (!build_with_chromium && is_clang) { |
| 156 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 157 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 157 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 158 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 158 } | 159 } |
| 159 } | 160 } |
| 160 } | 161 } |
| OLD | NEW |