| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 "video_frame_pump.cc", | 203 "video_frame_pump.cc", |
| 204 "video_frame_pump.h", | 204 "video_frame_pump.h", |
| 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", |
| 214 "webrtc_dummy_video_encoder.h", |
| 213 "webrtc_transport.cc", | 215 "webrtc_transport.cc", |
| 214 "webrtc_transport.h", | 216 "webrtc_transport.h", |
| 215 "webrtc_video_encoder_factory.cc", | |
| 216 "webrtc_video_encoder_factory.h", | |
| 217 "webrtc_video_renderer_adapter.cc", | 217 "webrtc_video_renderer_adapter.cc", |
| 218 "webrtc_video_renderer_adapter.h", | 218 "webrtc_video_renderer_adapter.h", |
| 219 "webrtc_video_stream.cc", | 219 "webrtc_video_stream.cc", |
| 220 "webrtc_video_stream.h", | 220 "webrtc_video_stream.h", |
| 221 ] | 221 ] |
| 222 | 222 |
| 223 if (enable_webrtc) { | 223 if (enable_webrtc) { |
| 224 deps += [ | 224 deps += [ |
| 225 "//third_party/libjingle:libjingle_webrtc", | 225 "//third_party/libjingle:libjingle_webrtc", |
| 226 "//third_party/webrtc/libjingle/xmllite", | 226 "//third_party/webrtc/libjingle/xmllite", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 "webrtc_transport_unittest.cc", | 309 "webrtc_transport_unittest.cc", |
| 310 ] | 310 ] |
| 311 | 311 |
| 312 deps = [ | 312 deps = [ |
| 313 ":test_support", | 313 ":test_support", |
| 314 "//net:test_support", | 314 "//net:test_support", |
| 315 "//testing/gmock", | 315 "//testing/gmock", |
| 316 "//testing/gtest", | 316 "//testing/gtest", |
| 317 ] | 317 ] |
| 318 } | 318 } |
| OLD | NEW |