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 16 matching lines...) Expand all Loading... |
27 "//remoting/base", | 27 "//remoting/base", |
28 "//remoting/codec", | 28 "//remoting/codec", |
29 "//remoting/signaling", | 29 "//remoting/signaling", |
30 ] | 30 ] |
31 | 31 |
32 if (is_nacl) { | 32 if (is_nacl) { |
33 sources -= [ | 33 sources -= [ |
34 "chromium_port_allocator.cc", | 34 "chromium_port_allocator.cc", |
35 "chromium_port_allocator_factory.cc", | 35 "chromium_port_allocator_factory.cc", |
36 "chromium_socket_factory.cc", | 36 "chromium_socket_factory.cc", |
| 37 "webrtc_transport.cc", |
37 ] | 38 ] |
38 } | 39 } |
39 } | 40 } |
40 | 41 |
41 source_set("test_support") { | 42 source_set("test_support") { |
42 testonly = true | 43 testonly = true |
43 | 44 |
44 sources = [ | 45 sources = [ |
45 "fake_authenticator.cc", | 46 "fake_authenticator.cc", |
46 "fake_authenticator.h", | 47 "fake_authenticator.h", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "mouse_input_filter_unittest.cc", | 89 "mouse_input_filter_unittest.cc", |
89 "negotiating_authenticator_unittest.cc", | 90 "negotiating_authenticator_unittest.cc", |
90 "pairing_registry_unittest.cc", | 91 "pairing_registry_unittest.cc", |
91 "port_range_unittest.cc", | 92 "port_range_unittest.cc", |
92 "ppapi_module_stub.cc", | 93 "ppapi_module_stub.cc", |
93 "pseudotcp_adapter_unittest.cc", | 94 "pseudotcp_adapter_unittest.cc", |
94 "quic_channel_factory_unittest.cc", | 95 "quic_channel_factory_unittest.cc", |
95 "ssl_hmac_channel_authenticator_unittest.cc", | 96 "ssl_hmac_channel_authenticator_unittest.cc", |
96 "third_party_authenticator_unittest.cc", | 97 "third_party_authenticator_unittest.cc", |
97 "v2_authenticator_unittest.cc", | 98 "v2_authenticator_unittest.cc", |
| 99 "webrtc_transport_unittest.cc", |
98 ] | 100 ] |
99 | 101 |
100 deps = [ | 102 deps = [ |
101 ":test_support", | 103 ":test_support", |
102 "//testing/gmock", | 104 "//testing/gmock", |
103 "//testing/gtest", | 105 "//testing/gtest", |
104 ] | 106 ] |
105 } | 107 } |
OLD | NEW |