| 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_source_adapter.cc", |
| 210 "webrtc_audio_source_adapter.h", |
| 211 "webrtc_audio_stream.cc", |
| 212 "webrtc_audio_stream.h", |
| 209 "webrtc_connection_to_client.cc", | 213 "webrtc_connection_to_client.cc", |
| 210 "webrtc_connection_to_client.h", | 214 "webrtc_connection_to_client.h", |
| 211 "webrtc_connection_to_host.cc", | 215 "webrtc_connection_to_host.cc", |
| 212 "webrtc_connection_to_host.h", | 216 "webrtc_connection_to_host.h", |
| 213 "webrtc_data_stream_adapter.cc", | 217 "webrtc_data_stream_adapter.cc", |
| 214 "webrtc_data_stream_adapter.h", | 218 "webrtc_data_stream_adapter.h", |
| 215 "webrtc_dummy_video_capturer.cc", | 219 "webrtc_dummy_video_capturer.cc", |
| 216 "webrtc_dummy_video_capturer.h", | 220 "webrtc_dummy_video_capturer.h", |
| 217 "webrtc_dummy_video_encoder.cc", | 221 "webrtc_dummy_video_encoder.cc", |
| 218 "webrtc_dummy_video_encoder.h", | 222 "webrtc_dummy_video_encoder.h", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 "webrtc_transport_unittest.cc", | 321 "webrtc_transport_unittest.cc", |
| 318 ] | 322 ] |
| 319 | 323 |
| 320 deps = [ | 324 deps = [ |
| 321 ":test_support", | 325 ":test_support", |
| 322 "//net:test_support", | 326 "//net:test_support", |
| 323 "//testing/gmock", | 327 "//testing/gmock", |
| 324 "//testing/gtest", | 328 "//testing/gtest", |
| 325 ] | 329 ] |
| 326 } | 330 } |
| OLD | NEW |