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_reader.cc", | 9 "audio_reader.cc", |
10 "audio_reader.h", | 10 "audio_reader.h", |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 "video_frame_pump.cc", | 201 "video_frame_pump.cc", |
202 "video_frame_pump.h", | 202 "video_frame_pump.h", |
203 "webrtc_connection_to_client.cc", | 203 "webrtc_connection_to_client.cc", |
204 "webrtc_connection_to_client.h", | 204 "webrtc_connection_to_client.h", |
205 "webrtc_connection_to_host.cc", | 205 "webrtc_connection_to_host.cc", |
206 "webrtc_connection_to_host.h", | 206 "webrtc_connection_to_host.h", |
207 "webrtc_data_stream_adapter.cc", | 207 "webrtc_data_stream_adapter.cc", |
208 "webrtc_data_stream_adapter.h", | 208 "webrtc_data_stream_adapter.h", |
209 "webrtc_dummy_video_capturer.cc", | 209 "webrtc_dummy_video_capturer.cc", |
210 "webrtc_dummy_video_capturer.h", | 210 "webrtc_dummy_video_capturer.h", |
| 211 "webrtc_dummy_video_encoder.cc", |
| 212 "webrtc_dummy_video_encoder.h", |
211 "webrtc_transport.cc", | 213 "webrtc_transport.cc", |
212 "webrtc_transport.h", | 214 "webrtc_transport.h", |
213 "webrtc_video_encoder_factory.cc", | |
214 "webrtc_video_encoder_factory.h", | |
215 "webrtc_video_renderer_adapter.cc", | 215 "webrtc_video_renderer_adapter.cc", |
216 "webrtc_video_renderer_adapter.h", | 216 "webrtc_video_renderer_adapter.h", |
217 "webrtc_video_stream.cc", | 217 "webrtc_video_stream.cc", |
218 "webrtc_video_stream.h", | 218 "webrtc_video_stream.h", |
219 ] | 219 ] |
220 | 220 |
221 if (enable_webrtc) { | 221 if (enable_webrtc) { |
222 deps += [ | 222 deps += [ |
223 "//third_party/libjingle:libjingle_webrtc", | 223 "//third_party/libjingle:libjingle_webrtc", |
224 "//third_party/webrtc/libjingle/xmllite", | 224 "//third_party/webrtc/libjingle/xmllite", |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 "webrtc_transport_unittest.cc", | 306 "webrtc_transport_unittest.cc", |
307 ] | 307 ] |
308 | 308 |
309 deps = [ | 309 deps = [ |
310 ":test_support", | 310 ":test_support", |
311 "//net:test_support", | 311 "//net:test_support", |
312 "//testing/gmock", | 312 "//testing/gmock", |
313 "//testing/gtest", | 313 "//testing/gtest", |
314 ] | 314 ] |
315 } | 315 } |
OLD | NEW |