OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 static_library("protocol") { | 7 static_library("protocol") { |
8 sources = [ | 8 sources = [ |
9 "audio_pump.cc", | 9 "audio_pump.cc", |
10 "audio_pump.h", | 10 "audio_pump.h", |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 "webrtc_connection_to_client.cc", | 205 "webrtc_connection_to_client.cc", |
206 "webrtc_connection_to_client.h", | 206 "webrtc_connection_to_client.h", |
207 "webrtc_connection_to_host.cc", | 207 "webrtc_connection_to_host.cc", |
208 "webrtc_connection_to_host.h", | 208 "webrtc_connection_to_host.h", |
209 "webrtc_data_stream_adapter.cc", | 209 "webrtc_data_stream_adapter.cc", |
210 "webrtc_data_stream_adapter.h", | 210 "webrtc_data_stream_adapter.h", |
211 "webrtc_dummy_video_capturer.cc", | 211 "webrtc_dummy_video_capturer.cc", |
212 "webrtc_dummy_video_capturer.h", | 212 "webrtc_dummy_video_capturer.h", |
213 "webrtc_dummy_video_encoder.cc", | 213 "webrtc_dummy_video_encoder.cc", |
214 "webrtc_dummy_video_encoder.h", | 214 "webrtc_dummy_video_encoder.h", |
| 215 "webrtc_frame_scheduler.h", |
| 216 "webrtc_frame_scheduler_simple.cc", |
| 217 "webrtc_frame_scheduler_simple.h", |
215 "webrtc_transport.cc", | 218 "webrtc_transport.cc", |
216 "webrtc_transport.h", | 219 "webrtc_transport.h", |
217 "webrtc_video_renderer_adapter.cc", | 220 "webrtc_video_renderer_adapter.cc", |
218 "webrtc_video_renderer_adapter.h", | 221 "webrtc_video_renderer_adapter.h", |
219 "webrtc_video_stream.cc", | 222 "webrtc_video_stream.cc", |
220 "webrtc_video_stream.h", | 223 "webrtc_video_stream.h", |
221 ] | 224 ] |
222 | 225 |
223 if (enable_webrtc) { | 226 if (enable_webrtc) { |
224 deps += [ | 227 deps += [ |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 "webrtc_transport_unittest.cc", | 312 "webrtc_transport_unittest.cc", |
310 ] | 313 ] |
311 | 314 |
312 deps = [ | 315 deps = [ |
313 ":test_support", | 316 ":test_support", |
314 "//net:test_support", | 317 "//net:test_support", |
315 "//testing/gmock", | 318 "//testing/gmock", |
316 "//testing/gtest", | 319 "//testing/gtest", |
317 ] | 320 ] |
318 } | 321 } |
OLD | NEW |