| 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 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 | 7 |
| 8 static_library("protocol") { | 8 static_library("protocol") { |
| 9 sources = [ | 9 sources = [ |
| 10 "audio_decode_scheduler.cc", | 10 "audio_decode_scheduler.cc", |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "port_allocator.h", | 131 "port_allocator.h", |
| 132 "port_allocator_factory.h", | 132 "port_allocator_factory.h", |
| 133 "port_range.cc", | 133 "port_range.cc", |
| 134 "port_range.h", | 134 "port_range.h", |
| 135 "pseudotcp_adapter.cc", | 135 "pseudotcp_adapter.cc", |
| 136 "pseudotcp_adapter.h", | 136 "pseudotcp_adapter.h", |
| 137 "pseudotcp_channel_factory.cc", | 137 "pseudotcp_channel_factory.cc", |
| 138 "pseudotcp_channel_factory.h", | 138 "pseudotcp_channel_factory.h", |
| 139 "rejecting_authenticator.cc", | 139 "rejecting_authenticator.cc", |
| 140 "rejecting_authenticator.h", | 140 "rejecting_authenticator.h", |
| 141 "sdp_message.cc", |
| 142 "sdp_message.h", |
| 141 "secure_channel_factory.cc", | 143 "secure_channel_factory.cc", |
| 142 "secure_channel_factory.h", | 144 "secure_channel_factory.h", |
| 143 "session.h", | 145 "session.h", |
| 144 "session_config.cc", | 146 "session_config.cc", |
| 145 "session_config.h", | 147 "session_config.h", |
| 146 "session_manager.h", | 148 "session_manager.h", |
| 147 "socket_util.cc", | 149 "socket_util.cc", |
| 148 "socket_util.h", | 150 "socket_util.h", |
| 149 "spake2_authenticator.cc", | 151 "spake2_authenticator.cc", |
| 150 "spake2_authenticator.h", | 152 "spake2_authenticator.h", |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 "jingle_session_unittest.cc", | 314 "jingle_session_unittest.cc", |
| 313 "message_decoder_unittest.cc", | 315 "message_decoder_unittest.cc", |
| 314 "message_reader_unittest.cc", | 316 "message_reader_unittest.cc", |
| 315 "monitored_video_stub_unittest.cc", | 317 "monitored_video_stub_unittest.cc", |
| 316 "mouse_input_filter_unittest.cc", | 318 "mouse_input_filter_unittest.cc", |
| 317 "negotiating_authenticator_unittest.cc", | 319 "negotiating_authenticator_unittest.cc", |
| 318 "pairing_registry_unittest.cc", | 320 "pairing_registry_unittest.cc", |
| 319 "port_range_unittest.cc", | 321 "port_range_unittest.cc", |
| 320 "ppapi_module_stub.cc", | 322 "ppapi_module_stub.cc", |
| 321 "pseudotcp_adapter_unittest.cc", | 323 "pseudotcp_adapter_unittest.cc", |
| 324 "sdp_message_unittest.cc", |
| 322 "session_config_unittest.cc", | 325 "session_config_unittest.cc", |
| 323 "spake2_authenticator_unittest.cc", | 326 "spake2_authenticator_unittest.cc", |
| 324 "ssl_hmac_channel_authenticator_unittest.cc", | 327 "ssl_hmac_channel_authenticator_unittest.cc", |
| 325 "third_party_authenticator_unittest.cc", | 328 "third_party_authenticator_unittest.cc", |
| 326 "v2_authenticator_unittest.cc", | 329 "v2_authenticator_unittest.cc", |
| 327 "validating_authenticator_unittest.cc", | 330 "validating_authenticator_unittest.cc", |
| 328 "video_frame_pump_unittest.cc", | 331 "video_frame_pump_unittest.cc", |
| 329 "webrtc_audio_source_adapter_unittest.cc", | 332 "webrtc_audio_source_adapter_unittest.cc", |
| 330 "webrtc_frame_scheduler_unittest.cc", | 333 "webrtc_frame_scheduler_unittest.cc", |
| 331 "webrtc_transport_unittest.cc", | 334 "webrtc_transport_unittest.cc", |
| 332 ] | 335 ] |
| 333 | 336 |
| 334 deps = [ | 337 deps = [ |
| 335 ":test_support", | 338 ":test_support", |
| 336 "//net:test_support", | 339 "//net:test_support", |
| 337 "//testing/gmock", | 340 "//testing/gmock", |
| 338 "//testing/gtest", | 341 "//testing/gtest", |
| 339 ] | 342 ] |
| 340 } | 343 } |
| OLD | NEW |