| 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 "authenticator_test_base.h", | 91 "authenticator_test_base.h", |
| 92 "capture_scheduler_unittest.cc", | 92 "capture_scheduler_unittest.cc", |
| 93 "channel_multiplexer_unittest.cc", | 93 "channel_multiplexer_unittest.cc", |
| 94 "channel_socket_adapter_unittest.cc", | 94 "channel_socket_adapter_unittest.cc", |
| 95 "chromium_socket_factory_unittest.cc", | 95 "chromium_socket_factory_unittest.cc", |
| 96 "client_video_dispatcher_unittest.cc", | 96 "client_video_dispatcher_unittest.cc", |
| 97 "clipboard_echo_filter_unittest.cc", | 97 "clipboard_echo_filter_unittest.cc", |
| 98 "clipboard_filter_unittest.cc", | 98 "clipboard_filter_unittest.cc", |
| 99 "connection_tester.cc", | 99 "connection_tester.cc", |
| 100 "connection_tester.h", | 100 "connection_tester.h", |
| 101 "connection_unittest.cc", |
| 101 "content_description_unittest.cc", | 102 "content_description_unittest.cc", |
| 102 "ice_connection_to_client_unittest.cc", | |
| 103 "ice_transport_unittest.cc", | 103 "ice_transport_unittest.cc", |
| 104 "input_event_tracker_unittest.cc", | 104 "input_event_tracker_unittest.cc", |
| 105 "input_filter_unittest.cc", | 105 "input_filter_unittest.cc", |
| 106 "jingle_messages_unittest.cc", | 106 "jingle_messages_unittest.cc", |
| 107 "jingle_session_unittest.cc", | 107 "jingle_session_unittest.cc", |
| 108 "message_decoder_unittest.cc", | 108 "message_decoder_unittest.cc", |
| 109 "message_reader_unittest.cc", | 109 "message_reader_unittest.cc", |
| 110 "monitored_video_stub_unittest.cc", | 110 "monitored_video_stub_unittest.cc", |
| 111 "mouse_input_filter_unittest.cc", | 111 "mouse_input_filter_unittest.cc", |
| 112 "negotiating_authenticator_unittest.cc", | 112 "negotiating_authenticator_unittest.cc", |
| 113 "pairing_registry_unittest.cc", | 113 "pairing_registry_unittest.cc", |
| 114 "port_range_unittest.cc", | 114 "port_range_unittest.cc", |
| 115 "ppapi_module_stub.cc", | 115 "ppapi_module_stub.cc", |
| 116 "pseudotcp_adapter_unittest.cc", | 116 "pseudotcp_adapter_unittest.cc", |
| 117 "session_config_unittest.cc", | 117 "session_config_unittest.cc", |
| 118 "ssl_hmac_channel_authenticator_unittest.cc", | 118 "ssl_hmac_channel_authenticator_unittest.cc", |
| 119 "third_party_authenticator_unittest.cc", | 119 "third_party_authenticator_unittest.cc", |
| 120 "v2_authenticator_unittest.cc", | 120 "v2_authenticator_unittest.cc", |
| 121 "video_frame_pump_unittest.cc", | 121 "video_frame_pump_unittest.cc", |
| 122 "webrtc_connection_to_client_unittest.cc", | 122 "webrtc_connection_to_client_unittest.cc", |
| 123 "webrtc_transport_unittest.cc", | 123 "webrtc_transport_unittest.cc", |
| 124 ] | 124 ] |
| 125 | 125 |
| 126 deps = [ | 126 deps = [ |
| 127 ":test_support", | 127 ":test_support", |
| 128 "//testing/gmock", | 128 "//testing/gmock", |
| 129 "//testing/gtest", | 129 "//testing/gtest", |
| 130 ] | 130 ] |
| 131 } | 131 } |
| OLD | NEW |