| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 | 55 |
| 56 source_set("unit_tests") { | 56 source_set("unit_tests") { |
| 57 testonly = true | 57 testonly = true |
| 58 | 58 |
| 59 sources = [ | 59 sources = [ |
| 60 "authenticator_test_base.cc", | 60 "authenticator_test_base.cc", |
| 61 "authenticator_test_base.h", | 61 "authenticator_test_base.h", |
| 62 "channel_multiplexer_unittest.cc", | 62 "channel_multiplexer_unittest.cc", |
| 63 "channel_socket_adapter_unittest.cc", |
| 63 "chromium_socket_factory_unittest.cc", | 64 "chromium_socket_factory_unittest.cc", |
| 64 "client_video_dispatcher_unittest.cc", | 65 "client_video_dispatcher_unittest.cc", |
| 65 "clipboard_echo_filter_unittest.cc", | 66 "clipboard_echo_filter_unittest.cc", |
| 66 "clipboard_filter_unittest.cc", | 67 "clipboard_filter_unittest.cc", |
| 67 "connection_tester.cc", | 68 "connection_tester.cc", |
| 68 "connection_tester.h", | 69 "connection_tester.h", |
| 69 "connection_to_client_unittest.cc", | 70 "connection_to_client_unittest.cc", |
| 70 "content_description_unittest.cc", | 71 "content_description_unittest.cc", |
| 71 "input_event_tracker_unittest.cc", | 72 "input_event_tracker_unittest.cc", |
| 72 "input_filter_unittest.cc", | 73 "input_filter_unittest.cc", |
| 73 "jingle_messages_unittest.cc", | 74 "jingle_messages_unittest.cc", |
| 74 "jingle_session_unittest.cc", | 75 "jingle_session_unittest.cc", |
| 75 "message_decoder_unittest.cc", | 76 "message_decoder_unittest.cc", |
| 76 "message_reader_unittest.cc", | 77 "message_reader_unittest.cc", |
| 77 "monitored_video_stub_unittest.cc", | 78 "monitored_video_stub_unittest.cc", |
| 78 "mouse_input_filter_unittest.cc", | 79 "mouse_input_filter_unittest.cc", |
| 79 "negotiating_authenticator_unittest.cc", | 80 "negotiating_authenticator_unittest.cc", |
| 80 "pairing_registry_unittest.cc", | 81 "pairing_registry_unittest.cc", |
| 81 "ppapi_module_stub.cc", | 82 "ppapi_module_stub.cc", |
| 83 "pseudotcp_adapter_unittest.cc", |
| 82 "ssl_hmac_channel_authenticator_unittest.cc", | 84 "ssl_hmac_channel_authenticator_unittest.cc", |
| 83 "third_party_authenticator_unittest.cc", | 85 "third_party_authenticator_unittest.cc", |
| 84 "v2_authenticator_unittest.cc", | 86 "v2_authenticator_unittest.cc", |
| 85 ] | 87 ] |
| 86 | 88 |
| 87 deps = [ | 89 deps = [ |
| 88 ":test_support", | 90 ":test_support", |
| 89 "//testing/gmock", | 91 "//testing/gmock", |
| 90 "//testing/gtest", | 92 "//testing/gtest", |
| 91 ] | 93 ] |
| 92 } | 94 } |
| OLD | NEW |