| 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", |
| 8 "delegating_signal_strategy.h", |
| 7 "iq_sender.cc", | 9 "iq_sender.cc", |
| 8 "iq_sender.h", | 10 "iq_sender.h", |
| 9 "jid_util.cc", | 11 "jid_util.cc", |
| 10 "jid_util.h", | 12 "jid_util.h", |
| 11 "log_to_server.cc", | 13 "log_to_server.cc", |
| 12 "log_to_server.h", | 14 "log_to_server.h", |
| 13 "push_notification_subscriber.cc", | 15 "push_notification_subscriber.cc", |
| 14 "push_notification_subscriber.h", | 16 "push_notification_subscriber.h", |
| 15 "server_log_entry.cc", | 17 "server_log_entry.cc", |
| 16 "server_log_entry.h", | 18 "server_log_entry.h", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 "xmpp_signal_strategy_unittest.cc", | 84 "xmpp_signal_strategy_unittest.cc", |
| 83 "xmpp_stream_parser_unittest.cc", | 85 "xmpp_stream_parser_unittest.cc", |
| 84 ] | 86 ] |
| 85 | 87 |
| 86 deps = [ | 88 deps = [ |
| 87 ":test_support", | 89 ":test_support", |
| 88 "//testing/gmock", | 90 "//testing/gmock", |
| 89 "//testing/gtest", | 91 "//testing/gtest", |
| 90 ] | 92 ] |
| 91 } | 93 } |
| OLD | NEW |