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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 "rejecting_authenticator.cc", | 139 "rejecting_authenticator.cc", |
140 "rejecting_authenticator.h", | 140 "rejecting_authenticator.h", |
141 "sdp_message.cc", | 141 "sdp_message.cc", |
142 "sdp_message.h", | 142 "sdp_message.h", |
143 "secure_channel_factory.cc", | 143 "secure_channel_factory.cc", |
144 "secure_channel_factory.h", | 144 "secure_channel_factory.h", |
145 "session.h", | 145 "session.h", |
146 "session_config.cc", | 146 "session_config.cc", |
147 "session_config.h", | 147 "session_config.h", |
148 "session_manager.h", | 148 "session_manager.h", |
| 149 "session_plugin.h", |
149 "socket_util.cc", | 150 "socket_util.cc", |
150 "socket_util.h", | 151 "socket_util.h", |
151 "spake2_authenticator.cc", | 152 "spake2_authenticator.cc", |
152 "spake2_authenticator.h", | 153 "spake2_authenticator.h", |
153 "ssl_hmac_channel_authenticator.cc", | 154 "ssl_hmac_channel_authenticator.cc", |
154 "ssl_hmac_channel_authenticator.h", | 155 "ssl_hmac_channel_authenticator.h", |
155 "stream_channel_factory.h", | 156 "stream_channel_factory.h", |
156 "stream_message_pipe_adapter.cc", | 157 "stream_message_pipe_adapter.cc", |
157 "stream_message_pipe_adapter.h", | 158 "stream_message_pipe_adapter.h", |
158 "third_party_authenticator_base.cc", | 159 "third_party_authenticator_base.cc", |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 "webrtc_transport_unittest.cc", | 335 "webrtc_transport_unittest.cc", |
335 ] | 336 ] |
336 | 337 |
337 deps = [ | 338 deps = [ |
338 ":test_support", | 339 ":test_support", |
339 "//net:test_support", | 340 "//net:test_support", |
340 "//testing/gmock", | 341 "//testing/gmock", |
341 "//testing/gtest", | 342 "//testing/gtest", |
342 ] | 343 ] |
343 } | 344 } |
OLD | NEW |