| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "jingle_session_unittest.cc", | 104 "jingle_session_unittest.cc", |
| 105 "message_decoder_unittest.cc", | 105 "message_decoder_unittest.cc", |
| 106 "message_reader_unittest.cc", | 106 "message_reader_unittest.cc", |
| 107 "monitored_video_stub_unittest.cc", | 107 "monitored_video_stub_unittest.cc", |
| 108 "mouse_input_filter_unittest.cc", | 108 "mouse_input_filter_unittest.cc", |
| 109 "negotiating_authenticator_unittest.cc", | 109 "negotiating_authenticator_unittest.cc", |
| 110 "pairing_registry_unittest.cc", | 110 "pairing_registry_unittest.cc", |
| 111 "port_range_unittest.cc", | 111 "port_range_unittest.cc", |
| 112 "ppapi_module_stub.cc", | 112 "ppapi_module_stub.cc", |
| 113 "pseudotcp_adapter_unittest.cc", | 113 "pseudotcp_adapter_unittest.cc", |
| 114 "quic_channel_factory_unittest.cc", | |
| 115 "session_config_unittest.cc", | 114 "session_config_unittest.cc", |
| 116 "ssl_hmac_channel_authenticator_unittest.cc", | 115 "ssl_hmac_channel_authenticator_unittest.cc", |
| 117 "third_party_authenticator_unittest.cc", | 116 "third_party_authenticator_unittest.cc", |
| 118 "v2_authenticator_unittest.cc", | 117 "v2_authenticator_unittest.cc", |
| 119 "video_frame_pump_unittest.cc", | 118 "video_frame_pump_unittest.cc", |
| 120 "webrtc_transport_unittest.cc", | 119 "webrtc_transport_unittest.cc", |
| 121 ] | 120 ] |
| 122 | 121 |
| 123 deps = [ | 122 deps = [ |
| 124 ":test_support", | 123 ":test_support", |
| 125 "//testing/gmock", | 124 "//testing/gmock", |
| 126 "//testing/gtest", | 125 "//testing/gtest", |
| 127 ] | 126 ] |
| 128 } | 127 } |
| OLD | NEW |