| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "spake2_authenticator_unittest.cc", | 116 "spake2_authenticator_unittest.cc", |
| 117 "ssl_hmac_channel_authenticator_unittest.cc", | 117 "ssl_hmac_channel_authenticator_unittest.cc", |
| 118 "third_party_authenticator_unittest.cc", | 118 "third_party_authenticator_unittest.cc", |
| 119 "v2_authenticator_unittest.cc", | 119 "v2_authenticator_unittest.cc", |
| 120 "video_frame_pump_unittest.cc", | 120 "video_frame_pump_unittest.cc", |
| 121 "webrtc_transport_unittest.cc", | 121 "webrtc_transport_unittest.cc", |
| 122 ] | 122 ] |
| 123 | 123 |
| 124 deps = [ | 124 deps = [ |
| 125 ":test_support", | 125 ":test_support", |
| 126 "//net:test_support", |
| 126 "//testing/gmock", | 127 "//testing/gmock", |
| 127 "//testing/gtest", | 128 "//testing/gtest", |
| 128 ] | 129 ] |
| 129 } | 130 } |
| OLD | NEW |