| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "capture_scheduler.cc", | 197 "capture_scheduler.cc", |
| 198 "capture_scheduler.h", | 198 "capture_scheduler.h", |
| 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", |
| 208 "webrtc_audio_module.h", |
| 207 "webrtc_connection_to_client.cc", | 209 "webrtc_connection_to_client.cc", |
| 208 "webrtc_connection_to_client.h", | 210 "webrtc_connection_to_client.h", |
| 209 "webrtc_connection_to_host.cc", | 211 "webrtc_connection_to_host.cc", |
| 210 "webrtc_connection_to_host.h", | 212 "webrtc_connection_to_host.h", |
| 211 "webrtc_data_stream_adapter.cc", | 213 "webrtc_data_stream_adapter.cc", |
| 212 "webrtc_data_stream_adapter.h", | 214 "webrtc_data_stream_adapter.h", |
| 213 "webrtc_dummy_video_capturer.cc", | 215 "webrtc_dummy_video_capturer.cc", |
| 214 "webrtc_dummy_video_capturer.h", | 216 "webrtc_dummy_video_capturer.h", |
| 215 "webrtc_dummy_video_encoder.cc", | 217 "webrtc_dummy_video_encoder.cc", |
| 216 "webrtc_dummy_video_encoder.h", | 218 "webrtc_dummy_video_encoder.h", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 "webrtc_transport_unittest.cc", | 317 "webrtc_transport_unittest.cc", |
| 316 ] | 318 ] |
| 317 | 319 |
| 318 deps = [ | 320 deps = [ |
| 319 ":test_support", | 321 ":test_support", |
| 320 "//net:test_support", | 322 "//net:test_support", |
| 321 "//testing/gmock", | 323 "//testing/gmock", |
| 322 "//testing/gtest", | 324 "//testing/gtest", |
| 323 ] | 325 ] |
| 324 } | 326 } |
| OLD | NEW |