| 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("//remoting/remoting_srcs.gni") | 5 import("//remoting/remoting_srcs.gni") |
| 6 | 6 |
| 7 source_set("protocol") { | 7 source_set("protocol") { |
| 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, | 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, |
| 9 ".", | 9 ".", |
| 10 "//remoting") | 10 "//remoting") |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "authenticator_test_base.cc", | 69 "authenticator_test_base.cc", |
| 70 "authenticator_test_base.h", | 70 "authenticator_test_base.h", |
| 71 "channel_multiplexer_unittest.cc", | 71 "channel_multiplexer_unittest.cc", |
| 72 "channel_socket_adapter_unittest.cc", | 72 "channel_socket_adapter_unittest.cc", |
| 73 "chromium_socket_factory_unittest.cc", | 73 "chromium_socket_factory_unittest.cc", |
| 74 "client_video_dispatcher_unittest.cc", | 74 "client_video_dispatcher_unittest.cc", |
| 75 "clipboard_echo_filter_unittest.cc", | 75 "clipboard_echo_filter_unittest.cc", |
| 76 "clipboard_filter_unittest.cc", | 76 "clipboard_filter_unittest.cc", |
| 77 "connection_tester.cc", | 77 "connection_tester.cc", |
| 78 "connection_tester.h", | 78 "connection_tester.h", |
| 79 "connection_to_client_unittest.cc", | |
| 80 "content_description_unittest.cc", | 79 "content_description_unittest.cc", |
| 80 "ice_connection_to_client_unittest.cc", |
| 81 "input_event_tracker_unittest.cc", | 81 "input_event_tracker_unittest.cc", |
| 82 "input_filter_unittest.cc", | 82 "input_filter_unittest.cc", |
| 83 "jingle_messages_unittest.cc", | 83 "jingle_messages_unittest.cc", |
| 84 "jingle_session_unittest.cc", | 84 "jingle_session_unittest.cc", |
| 85 "message_decoder_unittest.cc", | 85 "message_decoder_unittest.cc", |
| 86 "message_reader_unittest.cc", | 86 "message_reader_unittest.cc", |
| 87 "monitored_video_stub_unittest.cc", | 87 "monitored_video_stub_unittest.cc", |
| 88 "mouse_input_filter_unittest.cc", | 88 "mouse_input_filter_unittest.cc", |
| 89 "negotiating_authenticator_unittest.cc", | 89 "negotiating_authenticator_unittest.cc", |
| 90 "pairing_registry_unittest.cc", | 90 "pairing_registry_unittest.cc", |
| 91 "port_range_unittest.cc", | 91 "port_range_unittest.cc", |
| 92 "ppapi_module_stub.cc", | 92 "ppapi_module_stub.cc", |
| 93 "pseudotcp_adapter_unittest.cc", | 93 "pseudotcp_adapter_unittest.cc", |
| 94 "quic_channel_factory_unittest.cc", | 94 "quic_channel_factory_unittest.cc", |
| 95 "ssl_hmac_channel_authenticator_unittest.cc", | 95 "ssl_hmac_channel_authenticator_unittest.cc", |
| 96 "third_party_authenticator_unittest.cc", | 96 "third_party_authenticator_unittest.cc", |
| 97 "v2_authenticator_unittest.cc", | 97 "v2_authenticator_unittest.cc", |
| 98 ] | 98 ] |
| 99 | 99 |
| 100 deps = [ | 100 deps = [ |
| 101 ":test_support", | 101 ":test_support", |
| 102 "//testing/gmock", | 102 "//testing/gmock", |
| 103 "//testing/gtest", | 103 "//testing/gtest", |
| 104 ] | 104 ] |
| 105 } | 105 } |
| OLD | NEW |