| 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 "remoting_bot.cc", | |
| 18 "remoting_bot.h", | |
| 19 "server_log_entry.cc", | 17 "server_log_entry.cc", |
| 20 "server_log_entry.h", | 18 "server_log_entry.h", |
| 21 "signal_strategy.h", | 19 "signal_strategy.h", |
| 22 "xmpp_login_handler.cc", | 20 "xmpp_login_handler.cc", |
| 23 "xmpp_login_handler.h", | 21 "xmpp_login_handler.h", |
| 24 "xmpp_signal_strategy.cc", | 22 "xmpp_signal_strategy.cc", |
| 25 "xmpp_signal_strategy.h", | 23 "xmpp_signal_strategy.h", |
| 26 "xmpp_stream_parser.cc", | 24 "xmpp_stream_parser.cc", |
| 27 "xmpp_stream_parser.h", | 25 "xmpp_stream_parser.h", |
| 28 ] | 26 ] |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "xmpp_signal_strategy_unittest.cc", | 83 "xmpp_signal_strategy_unittest.cc", |
| 86 "xmpp_stream_parser_unittest.cc", | 84 "xmpp_stream_parser_unittest.cc", |
| 87 ] | 85 ] |
| 88 | 86 |
| 89 deps = [ | 87 deps = [ |
| 90 ":test_support", | 88 ":test_support", |
| 91 "//testing/gmock", | 89 "//testing/gmock", |
| 92 "//testing/gtest", | 90 "//testing/gtest", |
| 93 ] | 91 ] |
| 94 } | 92 } |
| OLD | NEW |