| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "channel_multiplexer_unittest.cc", | 96 "channel_multiplexer_unittest.cc", |
| 97 "channel_socket_adapter_unittest.cc", | 97 "channel_socket_adapter_unittest.cc", |
| 98 "chromium_socket_factory_unittest.cc", | 98 "chromium_socket_factory_unittest.cc", |
| 99 "client_video_dispatcher_unittest.cc", | 99 "client_video_dispatcher_unittest.cc", |
| 100 "clipboard_echo_filter_unittest.cc", | 100 "clipboard_echo_filter_unittest.cc", |
| 101 "clipboard_filter_unittest.cc", | 101 "clipboard_filter_unittest.cc", |
| 102 "connection_tester.cc", | 102 "connection_tester.cc", |
| 103 "connection_tester.h", | 103 "connection_tester.h", |
| 104 "connection_unittest.cc", | 104 "connection_unittest.cc", |
| 105 "content_description_unittest.cc", | 105 "content_description_unittest.cc", |
| 106 "http_ice_config_request_unittest.cc", |
| 106 "ice_transport_unittest.cc", | 107 "ice_transport_unittest.cc", |
| 107 "input_event_tracker_unittest.cc", | 108 "input_event_tracker_unittest.cc", |
| 108 "input_filter_unittest.cc", | 109 "input_filter_unittest.cc", |
| 109 "jingle_messages_unittest.cc", | 110 "jingle_messages_unittest.cc", |
| 110 "jingle_session_unittest.cc", | 111 "jingle_session_unittest.cc", |
| 111 "message_decoder_unittest.cc", | 112 "message_decoder_unittest.cc", |
| 112 "message_reader_unittest.cc", | 113 "message_reader_unittest.cc", |
| 113 "monitored_video_stub_unittest.cc", | 114 "monitored_video_stub_unittest.cc", |
| 114 "mouse_input_filter_unittest.cc", | 115 "mouse_input_filter_unittest.cc", |
| 115 "negotiating_authenticator_unittest.cc", | 116 "negotiating_authenticator_unittest.cc", |
| 116 "pairing_registry_unittest.cc", | 117 "pairing_registry_unittest.cc", |
| 117 "port_range_unittest.cc", | 118 "port_range_unittest.cc", |
| 118 "ppapi_module_stub.cc", | 119 "ppapi_module_stub.cc", |
| 119 "pseudotcp_adapter_unittest.cc", | 120 "pseudotcp_adapter_unittest.cc", |
| 120 "session_config_unittest.cc", | 121 "session_config_unittest.cc", |
| 121 "ssl_hmac_channel_authenticator_unittest.cc", | 122 "ssl_hmac_channel_authenticator_unittest.cc", |
| 122 "third_party_authenticator_unittest.cc", | 123 "third_party_authenticator_unittest.cc", |
| 123 "v2_authenticator_unittest.cc", | 124 "v2_authenticator_unittest.cc", |
| 124 "video_frame_pump_unittest.cc", | 125 "video_frame_pump_unittest.cc", |
| 125 "webrtc_transport_unittest.cc", | 126 "webrtc_transport_unittest.cc", |
| 126 ] | 127 ] |
| 127 | 128 |
| 128 deps = [ | 129 deps = [ |
| 129 ":test_support", | 130 ":test_support", |
| 130 "//testing/gmock", | 131 "//testing/gmock", |
| 131 "//testing/gtest", | 132 "//testing/gtest", |
| 132 ] | 133 ] |
| 133 } | 134 } |
| OLD | NEW |