| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "pairing_host_authenticator.h", | 122 "pairing_host_authenticator.h", |
| 123 "pairing_registry.cc", | 123 "pairing_registry.cc", |
| 124 "pairing_registry.h", | 124 "pairing_registry.h", |
| 125 "performance_tracker.cc", | 125 "performance_tracker.cc", |
| 126 "performance_tracker.h", | 126 "performance_tracker.h", |
| 127 "port_allocator.cc", | 127 "port_allocator.cc", |
| 128 "port_allocator.h", | 128 "port_allocator.h", |
| 129 "port_allocator_factory.h", | 129 "port_allocator_factory.h", |
| 130 "port_range.cc", | 130 "port_range.cc", |
| 131 "port_range.h", | 131 "port_range.h", |
| 132 "process_stats_stub.h", |
| 132 "pseudotcp_adapter.cc", | 133 "pseudotcp_adapter.cc", |
| 133 "pseudotcp_adapter.h", | 134 "pseudotcp_adapter.h", |
| 134 "pseudotcp_channel_factory.cc", | 135 "pseudotcp_channel_factory.cc", |
| 135 "pseudotcp_channel_factory.h", | 136 "pseudotcp_channel_factory.h", |
| 136 "rejecting_authenticator.cc", | 137 "rejecting_authenticator.cc", |
| 137 "rejecting_authenticator.h", | 138 "rejecting_authenticator.h", |
| 138 "sdp_message.cc", | 139 "sdp_message.cc", |
| 139 "sdp_message.h", | 140 "sdp_message.h", |
| 140 "secure_channel_factory.cc", | 141 "secure_channel_factory.cc", |
| 141 "secure_channel_factory.h", | 142 "secure_channel_factory.h", |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 ] | 346 ] |
| 346 } | 347 } |
| 347 | 348 |
| 348 deps = [ | 349 deps = [ |
| 349 ":test_support", | 350 ":test_support", |
| 350 "//net:test_support", | 351 "//net:test_support", |
| 351 "//testing/gmock", | 352 "//testing/gmock", |
| 352 "//testing/gtest", | 353 "//testing/gtest", |
| 353 ] | 354 ] |
| 354 } | 355 } |
| OLD | NEW |