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") | 5 import("//remoting/remoting_srcs.gni") |
6 | 6 |
7 source_set("signaling") { | 7 source_set("signaling") { |
8 sources = rebase_path(remoting_srcs_gypi_values.remoting_signaling_sources, | 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_signaling_sources, |
9 ".", | 9 ".", |
10 "//remoting") | 10 "//remoting") |
11 | 11 |
12 configs += [ | 12 configs += [ |
13 "//build/config/compiler:no_size_t_to_int_warning", | 13 "//build/config/compiler:no_size_t_to_int_warning", |
14 "//build/config/compiler:wexit_time_destructors", | 14 "//build/config/compiler:wexit_time_destructors", |
15 ] | 15 ] |
16 | 16 |
17 public_deps = [ | 17 public_deps = [ |
18 "//remoting/proto", | 18 "//remoting/proto", |
19 "//third_party/libjingle", | 19 "//third_party/libjingle", |
| 20 "//third_party/webrtc/libjingle/xmllite", |
| 21 "//third_party/webrtc/libjingle/xmpp", |
20 ] | 22 ] |
21 | 23 |
22 deps = [ | 24 deps = [ |
23 "//base", | 25 "//base", |
24 "//crypto", | 26 "//crypto", |
25 "//jingle:jingle_glue", | 27 "//jingle:jingle_glue", |
26 "//net", | 28 "//net", |
27 "//remoting/base", | 29 "//remoting/base", |
28 ] | 30 ] |
29 | 31 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 "xmpp_signal_strategy_unittest.cc", | 68 "xmpp_signal_strategy_unittest.cc", |
67 "xmpp_stream_parser_unittest.cc", | 69 "xmpp_stream_parser_unittest.cc", |
68 ] | 70 ] |
69 | 71 |
70 deps = [ | 72 deps = [ |
71 ":test_support", | 73 ":test_support", |
72 "//testing/gmock", | 74 "//testing/gmock", |
73 "//testing/gtest", | 75 "//testing/gtest", |
74 ] | 76 ] |
75 } | 77 } |
OLD | NEW |