| 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_srcs.gni") | 6 import("//remoting/remoting_srcs.gni") |
| 7 | 7 |
| 8 source_set("protocol") { | 8 source_set("protocol") { |
| 9 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, | 9 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, |
| 10 ".", | 10 ".", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "channel_multiplexer_unittest.cc", | 91 "channel_multiplexer_unittest.cc", |
| 92 "channel_socket_adapter_unittest.cc", | 92 "channel_socket_adapter_unittest.cc", |
| 93 "chromium_socket_factory_unittest.cc", | 93 "chromium_socket_factory_unittest.cc", |
| 94 "client_video_dispatcher_unittest.cc", | 94 "client_video_dispatcher_unittest.cc", |
| 95 "clipboard_echo_filter_unittest.cc", | 95 "clipboard_echo_filter_unittest.cc", |
| 96 "clipboard_filter_unittest.cc", | 96 "clipboard_filter_unittest.cc", |
| 97 "connection_tester.cc", | 97 "connection_tester.cc", |
| 98 "connection_tester.h", | 98 "connection_tester.h", |
| 99 "content_description_unittest.cc", | 99 "content_description_unittest.cc", |
| 100 "ice_connection_to_client_unittest.cc", | 100 "ice_connection_to_client_unittest.cc", |
| 101 "ice_transport_unittest.cc", |
| 101 "input_event_tracker_unittest.cc", | 102 "input_event_tracker_unittest.cc", |
| 102 "input_filter_unittest.cc", | 103 "input_filter_unittest.cc", |
| 103 "jingle_messages_unittest.cc", | 104 "jingle_messages_unittest.cc", |
| 104 "jingle_session_unittest.cc", | 105 "jingle_session_unittest.cc", |
| 105 "message_decoder_unittest.cc", | 106 "message_decoder_unittest.cc", |
| 106 "message_reader_unittest.cc", | 107 "message_reader_unittest.cc", |
| 107 "monitored_video_stub_unittest.cc", | 108 "monitored_video_stub_unittest.cc", |
| 108 "mouse_input_filter_unittest.cc", | 109 "mouse_input_filter_unittest.cc", |
| 109 "negotiating_authenticator_unittest.cc", | 110 "negotiating_authenticator_unittest.cc", |
| 110 "pairing_registry_unittest.cc", | 111 "pairing_registry_unittest.cc", |
| 111 "port_range_unittest.cc", | 112 "port_range_unittest.cc", |
| 112 "ppapi_module_stub.cc", | 113 "ppapi_module_stub.cc", |
| 113 "pseudotcp_adapter_unittest.cc", | 114 "pseudotcp_adapter_unittest.cc", |
| 114 "session_config_unittest.cc", | 115 "session_config_unittest.cc", |
| 115 "ssl_hmac_channel_authenticator_unittest.cc", | 116 "ssl_hmac_channel_authenticator_unittest.cc", |
| 116 "third_party_authenticator_unittest.cc", | 117 "third_party_authenticator_unittest.cc", |
| 117 "v2_authenticator_unittest.cc", | 118 "v2_authenticator_unittest.cc", |
| 118 "video_frame_pump_unittest.cc", | 119 "video_frame_pump_unittest.cc", |
| 119 "webrtc_connection_to_client_unittest.cc", | 120 "webrtc_connection_to_client_unittest.cc", |
| 120 "webrtc_transport_unittest.cc", | 121 "webrtc_transport_unittest.cc", |
| 121 ] | 122 ] |
| 122 | 123 |
| 123 deps = [ | 124 deps = [ |
| 124 ":test_support", | 125 ":test_support", |
| 125 "//testing/gmock", | 126 "//testing/gmock", |
| 126 "//testing/gtest", | 127 "//testing/gtest", |
| 127 ] | 128 ] |
| 128 } | 129 } |
| OLD | NEW |