OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 static_library("signaling") { | 5 static_library("signaling") { |
6 sources = [ | 6 sources = [ |
7 "delegating_signal_strategy.cc", | 7 "delegating_signal_strategy.cc", |
8 "delegating_signal_strategy.h", | 8 "delegating_signal_strategy.h", |
9 "iq_sender.cc", | 9 "iq_sender.cc", |
10 "iq_sender.h", | 10 "iq_sender.h", |
11 "jid_util.cc", | 11 "jid_util.cc", |
12 "jid_util.h", | 12 "jid_util.h", |
13 "log_to_server.cc", | 13 "log_to_server.cc", |
14 "log_to_server.h", | 14 "log_to_server.h", |
15 "push_notification_subscriber.cc", | 15 "push_notification_subscriber.cc", |
16 "push_notification_subscriber.h", | 16 "push_notification_subscriber.h", |
17 "server_log_entry.cc", | 17 "server_log_entry.cc", |
18 "server_log_entry.h", | 18 "server_log_entry.h", |
19 "signal_strategy.h", | 19 "signal_strategy.h", |
| 20 "signaling_address.cc", |
| 21 "signaling_address.h", |
20 "xmpp_login_handler.cc", | 22 "xmpp_login_handler.cc", |
21 "xmpp_login_handler.h", | 23 "xmpp_login_handler.h", |
22 "xmpp_signal_strategy.cc", | 24 "xmpp_signal_strategy.cc", |
23 "xmpp_signal_strategy.h", | 25 "xmpp_signal_strategy.h", |
24 "xmpp_stream_parser.cc", | 26 "xmpp_stream_parser.cc", |
25 "xmpp_stream_parser.h", | 27 "xmpp_stream_parser.h", |
26 ] | 28 ] |
27 | 29 |
28 configs += [ | 30 configs += [ |
29 "//build/config/compiler:no_size_t_to_int_warning", | 31 "//build/config/compiler:no_size_t_to_int_warning", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 source_set("unit_tests") { | 74 source_set("unit_tests") { |
73 testonly = true | 75 testonly = true |
74 | 76 |
75 sources = [ | 77 sources = [ |
76 "iq_sender_unittest.cc", | 78 "iq_sender_unittest.cc", |
77 "jid_util_unittest.cc", | 79 "jid_util_unittest.cc", |
78 "log_to_server_unittest.cc", | 80 "log_to_server_unittest.cc", |
79 "push_notification_subscriber_unittest.cc", | 81 "push_notification_subscriber_unittest.cc", |
80 "server_log_entry_unittest.cc", | 82 "server_log_entry_unittest.cc", |
81 "server_log_entry_unittest.h", | 83 "server_log_entry_unittest.h", |
| 84 "signaling_address_unittest.cc", |
82 "xmpp_login_handler_unittest.cc", | 85 "xmpp_login_handler_unittest.cc", |
83 "xmpp_signal_strategy_unittest.cc", | 86 "xmpp_signal_strategy_unittest.cc", |
84 "xmpp_stream_parser_unittest.cc", | 87 "xmpp_stream_parser_unittest.cc", |
85 ] | 88 ] |
86 | 89 |
87 deps = [ | 90 deps = [ |
88 ":test_support", | 91 ":test_support", |
89 "//net:test_support", | 92 "//net:test_support", |
90 "//testing/gmock", | 93 "//testing/gmock", |
91 "//testing/gtest", | 94 "//testing/gtest", |
92 ] | 95 ] |
93 } | 96 } |
OLD | NEW |