| 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", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 configs += [ | 30 configs += [ |
| 31 "//build/config/compiler:no_size_t_to_int_warning", | 31 "//build/config/compiler:no_size_t_to_int_warning", |
| 32 "//build/config/compiler:wexit_time_destructors", | 32 "//build/config/compiler:wexit_time_destructors", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 public_deps = [ | 35 public_deps = [ |
| 36 "//remoting/proto", | 36 "//remoting/proto", |
| 37 "//third_party/libjingle", | 37 "//third_party/libjingle", |
| 38 "//third_party/webrtc/libjingle/xmllite", | 38 "//third_party/libjingle_xmpp/xmllite", |
| 39 "//third_party/webrtc/libjingle/xmpp", | 39 "//third_party/libjingle_xmpp/xmpp", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 deps = [ | 42 deps = [ |
| 43 "//base", | 43 "//base", |
| 44 "//crypto", | 44 "//crypto", |
| 45 "//jingle:jingle_glue", | 45 "//jingle:jingle_glue", |
| 46 "//net", | 46 "//net", |
| 47 "//remoting/base", | 47 "//remoting/base", |
| 48 ] | 48 ] |
| 49 | 49 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "xmpp_signal_strategy_unittest.cc", | 86 "xmpp_signal_strategy_unittest.cc", |
| 87 "xmpp_stream_parser_unittest.cc", | 87 "xmpp_stream_parser_unittest.cc", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 deps = [ | 90 deps = [ |
| 91 ":test_support", | 91 ":test_support", |
| 92 "//testing/gmock", | 92 "//testing/gmock", |
| 93 "//testing/gtest", | 93 "//testing/gtest", |
| 94 ] | 94 ] |
| 95 } | 95 } |
| OLD | NEW |