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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 "..:webrtc_common", | 151 "..:webrtc_common", |
152 "../api:mock_audio_mixer", | 152 "../api:mock_audio_mixer", |
153 "../logging:rtc_event_log_api", | 153 "../logging:rtc_event_log_api", |
154 "../modules/audio_device:mock_audio_device", | 154 "../modules/audio_device:mock_audio_device", |
155 "../modules/audio_mixer", | 155 "../modules/audio_mixer", |
156 "../modules/bitrate_controller", | 156 "../modules/bitrate_controller", |
157 "../modules/congestion_controller:mock_congestion_controller", | 157 "../modules/congestion_controller:mock_congestion_controller", |
158 "../modules/pacing", | 158 "../modules/pacing", |
159 "../modules/rtp_rtcp", | 159 "../modules/rtp_rtcp", |
160 "../modules/rtp_rtcp:mock_rtp_rtcp", | 160 "../modules/rtp_rtcp:mock_rtp_rtcp", |
| 161 "../modules/utility:mock_process_thread", |
161 "../rtc_base:rtc_base_approved", | 162 "../rtc_base:rtc_base_approved", |
162 "../system_wrappers", | 163 "../system_wrappers", |
163 "../test:audio_codec_mocks", | 164 "../test:audio_codec_mocks", |
164 "../test:direct_transport", | 165 "../test:direct_transport", |
165 "../test:test_common", | 166 "../test:test_common", |
166 "../test:test_support", | 167 "../test:test_support", |
167 "../test:video_test_common", | 168 "../test:video_test_common", |
168 "//testing/gmock", | 169 "//testing/gmock", |
169 "//testing/gtest", | 170 "//testing/gtest", |
170 ] | 171 ] |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 sources = [ | 223 sources = [ |
223 "test/mock_rtp_packet_sink_interface.h", | 224 "test/mock_rtp_packet_sink_interface.h", |
224 ] | 225 ] |
225 deps = [ | 226 deps = [ |
226 ":rtp_interfaces", | 227 ":rtp_interfaces", |
227 "../test:test_support", | 228 "../test:test_support", |
228 "//testing/gmock", | 229 "//testing/gmock", |
229 ] | 230 ] |
230 } | 231 } |
231 } | 232 } |
OLD | NEW |