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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 "../modules/bitrate_controller", | 157 "../modules/bitrate_controller", |
158 "../modules/congestion_controller:mock_congestion_controller", | 158 "../modules/congestion_controller:mock_congestion_controller", |
159 "../modules/pacing", | 159 "../modules/pacing", |
160 "../modules/rtp_rtcp", | 160 "../modules/rtp_rtcp", |
161 "../modules/rtp_rtcp:mock_rtp_rtcp", | 161 "../modules/rtp_rtcp:mock_rtp_rtcp", |
162 "../modules/utility:mock_process_thread", | 162 "../modules/utility:mock_process_thread", |
163 "../rtc_base:rtc_base_approved", | 163 "../rtc_base:rtc_base_approved", |
164 "../system_wrappers", | 164 "../system_wrappers", |
165 "../test:audio_codec_mocks", | 165 "../test:audio_codec_mocks", |
166 "../test:direct_transport", | 166 "../test:direct_transport", |
| 167 "../test:single_threaded_task_queue", |
167 "../test:test_common", | 168 "../test:test_common", |
168 "../test:test_support", | 169 "../test:test_support", |
169 "../test:video_test_common", | 170 "../test:video_test_common", |
170 "//testing/gmock", | 171 "//testing/gmock", |
171 "//testing/gtest", | 172 "//testing/gtest", |
172 ] | 173 ] |
173 if (!build_with_chromium && is_clang) { | 174 if (!build_with_chromium && is_clang) { |
174 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 175 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
175 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 176 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
176 } | 177 } |
(...skipping 20 matching lines...) Expand all Loading... |
197 "../logging:rtc_event_log_api", | 198 "../logging:rtc_event_log_api", |
198 "../modules/audio_coding", | 199 "../modules/audio_coding", |
199 "../modules/audio_mixer:audio_mixer_impl", | 200 "../modules/audio_mixer:audio_mixer_impl", |
200 "../modules/rtp_rtcp", | 201 "../modules/rtp_rtcp", |
201 "../rtc_base:rtc_base_approved", | 202 "../rtc_base:rtc_base_approved", |
202 "../system_wrappers", | 203 "../system_wrappers", |
203 "../system_wrappers:metrics_default", | 204 "../system_wrappers:metrics_default", |
204 "../test:direct_transport", | 205 "../test:direct_transport", |
205 "../test:fake_audio_device", | 206 "../test:fake_audio_device", |
206 "../test:field_trial", | 207 "../test:field_trial", |
| 208 "../test:single_threaded_task_queue", |
207 "../test:test_common", | 209 "../test:test_common", |
208 "../test:test_support", | 210 "../test:test_support", |
209 "../test:video_test_common", | 211 "../test:video_test_common", |
210 "../video", | 212 "../video", |
211 "../voice_engine", | 213 "../voice_engine", |
212 "//testing/gtest", | 214 "//testing/gtest", |
213 ] | 215 ] |
214 if (!build_with_chromium && is_clang) { | 216 if (!build_with_chromium && is_clang) { |
215 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 217 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
216 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 218 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
217 } | 219 } |
218 } | 220 } |
219 | 221 |
220 # TODO(eladalon): This should be moved, as with the TODO for |rtp_interfaces|. | 222 # TODO(eladalon): This should be moved, as with the TODO for |rtp_interfaces|. |
221 rtc_source_set("mock_rtp_interfaces") { | 223 rtc_source_set("mock_rtp_interfaces") { |
222 testonly = true | 224 testonly = true |
223 | 225 |
224 sources = [ | 226 sources = [ |
225 "test/mock_rtp_packet_sink_interface.h", | 227 "test/mock_rtp_packet_sink_interface.h", |
226 ] | 228 ] |
227 deps = [ | 229 deps = [ |
228 ":rtp_interfaces", | 230 ":rtp_interfaces", |
229 "../test:test_support", | 231 "../test:test_support", |
230 "//testing/gmock", | 232 "//testing/gmock", |
231 ] | 233 ] |
232 } | 234 } |
233 } | 235 } |
OLD | NEW |