| 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("//remoting/remoting_options.gni") | 6 import("//remoting/remoting_options.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 | 8 |
| 9 static_library("protocol") { | 9 static_library("protocol") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "pairing_host_authenticator.h", | 121 "pairing_host_authenticator.h", |
| 122 "pairing_registry.cc", | 122 "pairing_registry.cc", |
| 123 "pairing_registry.h", | 123 "pairing_registry.h", |
| 124 "performance_tracker.cc", | 124 "performance_tracker.cc", |
| 125 "performance_tracker.h", | 125 "performance_tracker.h", |
| 126 "port_allocator.cc", | 126 "port_allocator.cc", |
| 127 "port_allocator.h", | 127 "port_allocator.h", |
| 128 "port_allocator_factory.h", | 128 "port_allocator_factory.h", |
| 129 "port_range.cc", | 129 "port_range.cc", |
| 130 "port_range.h", | 130 "port_range.h", |
| 131 "process_stats_dispatcher.cc", |
| 132 "process_stats_dispatcher.h", |
| 131 "process_stats_stub.h", | 133 "process_stats_stub.h", |
| 132 "pseudotcp_adapter.cc", | 134 "pseudotcp_adapter.cc", |
| 133 "pseudotcp_adapter.h", | 135 "pseudotcp_adapter.h", |
| 134 "pseudotcp_channel_factory.cc", | 136 "pseudotcp_channel_factory.cc", |
| 135 "pseudotcp_channel_factory.h", | 137 "pseudotcp_channel_factory.h", |
| 136 "rejecting_authenticator.cc", | 138 "rejecting_authenticator.cc", |
| 137 "rejecting_authenticator.h", | 139 "rejecting_authenticator.h", |
| 138 "sdp_message.cc", | 140 "sdp_message.cc", |
| 139 "sdp_message.h", | 141 "sdp_message.h", |
| 140 "secure_channel_factory.cc", | 142 "secure_channel_factory.cc", |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 static_library("test_support") { | 261 static_library("test_support") { |
| 260 testonly = true | 262 testonly = true |
| 261 | 263 |
| 262 sources = [ | 264 sources = [ |
| 263 "fake_authenticator.cc", | 265 "fake_authenticator.cc", |
| 264 "fake_authenticator.h", | 266 "fake_authenticator.h", |
| 265 "fake_connection_to_host.cc", | 267 "fake_connection_to_host.cc", |
| 266 "fake_connection_to_host.h", | 268 "fake_connection_to_host.h", |
| 267 "fake_datagram_socket.cc", | 269 "fake_datagram_socket.cc", |
| 268 "fake_datagram_socket.h", | 270 "fake_datagram_socket.h", |
| 271 "fake_process_stats_stub.cc", |
| 272 "fake_process_stats_stub.h", |
| 269 "fake_session.cc", | 273 "fake_session.cc", |
| 270 "fake_session.h", | 274 "fake_session.h", |
| 271 "fake_stream_socket.cc", | 275 "fake_stream_socket.cc", |
| 272 "fake_stream_socket.h", | 276 "fake_stream_socket.h", |
| 273 "fake_video_renderer.cc", | 277 "fake_video_renderer.cc", |
| 274 "fake_video_renderer.h", | 278 "fake_video_renderer.h", |
| 275 "protocol_mock_objects.cc", | 279 "protocol_mock_objects.cc", |
| 276 "protocol_mock_objects.h", | 280 "protocol_mock_objects.h", |
| 277 ] | 281 ] |
| 278 | 282 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 ] | 349 ] |
| 346 } | 350 } |
| 347 | 351 |
| 348 deps = [ | 352 deps = [ |
| 349 ":test_support", | 353 ":test_support", |
| 350 "//net:test_support", | 354 "//net:test_support", |
| 351 "//testing/gmock", | 355 "//testing/gmock", |
| 352 "//testing/gtest", | 356 "//testing/gtest", |
| 353 ] | 357 ] |
| 354 } | 358 } |
| OLD | NEW |