| 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 16 matching lines...) Expand all Loading... |
| 27 "xmpp_stream_parser.h", | 27 "xmpp_stream_parser.h", |
| 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", | |
| 38 "//third_party/libjingle_xmpp", | 37 "//third_party/libjingle_xmpp", |
| 38 "//third_party/webrtc_overrides", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 deps = [ | 41 deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//crypto", | 43 "//crypto", |
| 44 "//jingle:jingle_glue", | 44 "//jingle:jingle_glue", |
| 45 "//net", | 45 "//net", |
| 46 "//remoting/base", | 46 "//remoting/base", |
| 47 ] | 47 ] |
| 48 | 48 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "xmpp_signal_strategy_unittest.cc", | 85 "xmpp_signal_strategy_unittest.cc", |
| 86 "xmpp_stream_parser_unittest.cc", | 86 "xmpp_stream_parser_unittest.cc", |
| 87 ] | 87 ] |
| 88 | 88 |
| 89 deps = [ | 89 deps = [ |
| 90 ":test_support", | 90 ":test_support", |
| 91 "//testing/gmock", | 91 "//testing/gmock", |
| 92 "//testing/gtest", | 92 "//testing/gtest", |
| 93 ] | 93 ] |
| 94 } | 94 } |
| OLD | NEW |