| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "message_decoder.h", | 97 "message_decoder.h", |
| 98 "message_pipe.h", | 98 "message_pipe.h", |
| 99 "message_reader.cc", | 99 "message_reader.cc", |
| 100 "message_reader.h", | 100 "message_reader.h", |
| 101 "message_serialization.cc", | 101 "message_serialization.cc", |
| 102 "message_serialization.h", | 102 "message_serialization.h", |
| 103 "monitored_video_stub.cc", | 103 "monitored_video_stub.cc", |
| 104 "monitored_video_stub.h", | 104 "monitored_video_stub.h", |
| 105 "mouse_input_filter.cc", | 105 "mouse_input_filter.cc", |
| 106 "mouse_input_filter.h", | 106 "mouse_input_filter.h", |
| 107 "name_value_map.h", | |
| 108 "negotiating_authenticator_base.cc", | 107 "negotiating_authenticator_base.cc", |
| 109 "negotiating_authenticator_base.h", | 108 "negotiating_authenticator_base.h", |
| 110 "negotiating_client_authenticator.cc", | 109 "negotiating_client_authenticator.cc", |
| 111 "negotiating_client_authenticator.h", | 110 "negotiating_client_authenticator.h", |
| 112 "negotiating_host_authenticator.cc", | 111 "negotiating_host_authenticator.cc", |
| 113 "negotiating_host_authenticator.h", | 112 "negotiating_host_authenticator.h", |
| 114 "network_settings.h", | 113 "network_settings.h", |
| 115 "p2p_datagram_socket.h", | 114 "p2p_datagram_socket.h", |
| 116 "p2p_stream_socket.h", | 115 "p2p_stream_socket.h", |
| 117 "pairing_authenticator_base.cc", | 116 "pairing_authenticator_base.cc", |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 ] | 344 ] |
| 346 } | 345 } |
| 347 | 346 |
| 348 deps = [ | 347 deps = [ |
| 349 ":test_support", | 348 ":test_support", |
| 350 "//net:test_support", | 349 "//net:test_support", |
| 351 "//testing/gmock", | 350 "//testing/gmock", |
| 352 "//testing/gtest", | 351 "//testing/gtest", |
| 353 ] | 352 ] |
| 354 } | 353 } |
| OLD | NEW |