| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "jingle_session_unittest.cc", | 76 "jingle_session_unittest.cc", |
| 77 "message_decoder_unittest.cc", | 77 "message_decoder_unittest.cc", |
| 78 "message_reader_unittest.cc", | 78 "message_reader_unittest.cc", |
| 79 "monitored_video_stub_unittest.cc", | 79 "monitored_video_stub_unittest.cc", |
| 80 "mouse_input_filter_unittest.cc", | 80 "mouse_input_filter_unittest.cc", |
| 81 "negotiating_authenticator_unittest.cc", | 81 "negotiating_authenticator_unittest.cc", |
| 82 "pairing_registry_unittest.cc", | 82 "pairing_registry_unittest.cc", |
| 83 "port_range_unittest.cc", | 83 "port_range_unittest.cc", |
| 84 "ppapi_module_stub.cc", | 84 "ppapi_module_stub.cc", |
| 85 "pseudotcp_adapter_unittest.cc", | 85 "pseudotcp_adapter_unittest.cc", |
| 86 "quic_channel_factory_unittest.cc", |
| 86 "ssl_hmac_channel_authenticator_unittest.cc", | 87 "ssl_hmac_channel_authenticator_unittest.cc", |
| 87 "third_party_authenticator_unittest.cc", | 88 "third_party_authenticator_unittest.cc", |
| 88 "v2_authenticator_unittest.cc", | 89 "v2_authenticator_unittest.cc", |
| 89 ] | 90 ] |
| 90 | 91 |
| 91 deps = [ | 92 deps = [ |
| 92 ":test_support", | 93 ":test_support", |
| 93 "//testing/gmock", | 94 "//testing/gmock", |
| 94 "//testing/gtest", | 95 "//testing/gtest", |
| 95 ] | 96 ] |
| 96 } | 97 } |
| OLD | NEW |