| 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 import("//remoting/remoting_srcs.gni") | |
| 6 | |
| 7 static_library("signaling") { | 5 static_library("signaling") { |
| 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_signaling_sources, | 6 sources = [ |
| 9 ".", | 7 "iq_sender.cc", |
| 10 "//remoting") | 8 "iq_sender.h", |
| 9 "jid_util.cc", |
| 10 "jid_util.h", |
| 11 "log_to_server.cc", |
| 12 "log_to_server.h", |
| 13 "push_notification_subscriber.cc", |
| 14 "push_notification_subscriber.h", |
| 15 "server_log_entry.cc", |
| 16 "server_log_entry.h", |
| 17 "signal_strategy.h", |
| 18 "xmpp_login_handler.cc", |
| 19 "xmpp_login_handler.h", |
| 20 "xmpp_signal_strategy.cc", |
| 21 "xmpp_signal_strategy.h", |
| 22 "xmpp_stream_parser.cc", |
| 23 "xmpp_stream_parser.h", |
| 24 ] |
| 11 | 25 |
| 12 configs += [ | 26 configs += [ |
| 13 "//build/config/compiler:no_size_t_to_int_warning", | 27 "//build/config/compiler:no_size_t_to_int_warning", |
| 14 "//build/config/compiler:wexit_time_destructors", | 28 "//build/config/compiler:wexit_time_destructors", |
| 15 ] | 29 ] |
| 16 | 30 |
| 17 public_deps = [ | 31 public_deps = [ |
| 18 "//remoting/proto", | 32 "//remoting/proto", |
| 19 "//third_party/libjingle", | 33 "//third_party/libjingle", |
| 20 "//third_party/webrtc/libjingle/xmllite", | 34 "//third_party/webrtc/libjingle/xmllite", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "xmpp_signal_strategy_unittest.cc", | 82 "xmpp_signal_strategy_unittest.cc", |
| 69 "xmpp_stream_parser_unittest.cc", | 83 "xmpp_stream_parser_unittest.cc", |
| 70 ] | 84 ] |
| 71 | 85 |
| 72 deps = [ | 86 deps = [ |
| 73 ":test_support", | 87 ":test_support", |
| 74 "//testing/gmock", | 88 "//testing/gmock", |
| 75 "//testing/gtest", | 89 "//testing/gtest", |
| 76 ] | 90 ] |
| 77 } | 91 } |
| OLD | NEW |