| 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_decode_scheduler.cc", | 9 "audio_decode_scheduler.cc", |
| 10 "audio_decode_scheduler.h", | 10 "audio_decode_scheduler.h", |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 "chromium_port_allocator_factory.cc", | 199 "chromium_port_allocator_factory.cc", |
| 200 "chromium_port_allocator_factory.h", | 200 "chromium_port_allocator_factory.h", |
| 201 "chromium_socket_factory.cc", | 201 "chromium_socket_factory.cc", |
| 202 "chromium_socket_factory.h", | 202 "chromium_socket_factory.h", |
| 203 "ice_connection_to_client.cc", | 203 "ice_connection_to_client.cc", |
| 204 "ice_connection_to_client.h", | 204 "ice_connection_to_client.h", |
| 205 "video_frame_pump.cc", | 205 "video_frame_pump.cc", |
| 206 "video_frame_pump.h", | 206 "video_frame_pump.h", |
| 207 "webrtc_audio_module.cc", | 207 "webrtc_audio_module.cc", |
| 208 "webrtc_audio_module.h", | 208 "webrtc_audio_module.h", |
| 209 "webrtc_audio_sink_adapter.cc", |
| 210 "webrtc_audio_sink_adapter.h", |
| 209 "webrtc_audio_source_adapter.cc", | 211 "webrtc_audio_source_adapter.cc", |
| 210 "webrtc_audio_source_adapter.h", | 212 "webrtc_audio_source_adapter.h", |
| 211 "webrtc_audio_stream.cc", | 213 "webrtc_audio_stream.cc", |
| 212 "webrtc_audio_stream.h", | 214 "webrtc_audio_stream.h", |
| 213 "webrtc_connection_to_client.cc", | 215 "webrtc_connection_to_client.cc", |
| 214 "webrtc_connection_to_client.h", | 216 "webrtc_connection_to_client.h", |
| 215 "webrtc_connection_to_host.cc", | 217 "webrtc_connection_to_host.cc", |
| 216 "webrtc_connection_to_host.h", | 218 "webrtc_connection_to_host.h", |
| 217 "webrtc_data_stream_adapter.cc", | 219 "webrtc_data_stream_adapter.cc", |
| 218 "webrtc_data_stream_adapter.h", | 220 "webrtc_data_stream_adapter.h", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 "webrtc_transport_unittest.cc", | 326 "webrtc_transport_unittest.cc", |
| 325 ] | 327 ] |
| 326 | 328 |
| 327 deps = [ | 329 deps = [ |
| 328 ":test_support", | 330 ":test_support", |
| 329 "//net:test_support", | 331 "//net:test_support", |
| 330 "//testing/gmock", | 332 "//testing/gmock", |
| 331 "//testing/gtest", | 333 "//testing/gtest", |
| 332 ] | 334 ] |
| 333 } | 335 } |
| OLD | NEW |