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") |
11 | 11 |
12 configs += [ | 12 configs += [ |
13 "//build/config/compiler:no_size_t_to_int_warning", | 13 "//build/config/compiler:no_size_t_to_int_warning", |
14 "//build/config/compiler:wexit_time_destructors", | 14 "//build/config/compiler:wexit_time_destructors", |
15 ] | 15 ] |
16 | 16 |
17 public_deps = [ | 17 public_deps = [ |
18 "//remoting/proto", | 18 "//remoting/proto", |
19 "//third_party/libjingle", | 19 "//third_party/libjingle", |
20 ] | 20 ] |
21 deps = [ | 21 deps = [ |
22 "//base", | 22 "//base", |
23 "//crypto", | 23 "//crypto", |
24 "//jingle:jingle_glue", | 24 "//jingle:jingle_glue", |
25 "//jingle:notifier", | |
26 "//net", | 25 "//net", |
27 "//remoting/base", | 26 "//remoting/base", |
28 "//remoting/codec", | 27 "//remoting/codec", |
| 28 "//remoting/signaling", |
29 ] | 29 ] |
30 } | 30 } |
31 | 31 |
32 source_set("test_support") { | 32 source_set("test_support") { |
33 testonly = true | 33 testonly = true |
34 | 34 |
35 sources = [ | 35 sources = [ |
36 "fake_authenticator.cc", | 36 "fake_authenticator.cc", |
37 "fake_authenticator.h", | 37 "fake_authenticator.h", |
38 "fake_connection_to_host.cc", | 38 "fake_connection_to_host.cc", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "input_event_tracker_unittest.cc", | 72 "input_event_tracker_unittest.cc", |
73 "input_filter_unittest.cc", | 73 "input_filter_unittest.cc", |
74 "jingle_messages_unittest.cc", | 74 "jingle_messages_unittest.cc", |
75 "jingle_session_unittest.cc", | 75 "jingle_session_unittest.cc", |
76 "message_decoder_unittest.cc", | 76 "message_decoder_unittest.cc", |
77 "message_reader_unittest.cc", | 77 "message_reader_unittest.cc", |
78 "monitored_video_stub_unittest.cc", | 78 "monitored_video_stub_unittest.cc", |
79 "mouse_input_filter_unittest.cc", | 79 "mouse_input_filter_unittest.cc", |
80 "negotiating_authenticator_unittest.cc", | 80 "negotiating_authenticator_unittest.cc", |
81 "pairing_registry_unittest.cc", | 81 "pairing_registry_unittest.cc", |
| 82 "port_range_unittest.cc", |
82 "ppapi_module_stub.cc", | 83 "ppapi_module_stub.cc", |
83 "pseudotcp_adapter_unittest.cc", | 84 "pseudotcp_adapter_unittest.cc", |
84 "ssl_hmac_channel_authenticator_unittest.cc", | 85 "ssl_hmac_channel_authenticator_unittest.cc", |
85 "third_party_authenticator_unittest.cc", | 86 "third_party_authenticator_unittest.cc", |
86 "v2_authenticator_unittest.cc", | 87 "v2_authenticator_unittest.cc", |
87 ] | 88 ] |
88 | 89 |
89 deps = [ | 90 deps = [ |
90 ":test_support", | 91 ":test_support", |
91 "//testing/gmock", | 92 "//testing/gmock", |
92 "//testing/gtest", | 93 "//testing/gtest", |
93 ] | 94 ] |
94 } | 95 } |
OLD | NEW |