Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Side by Side Diff: remoting/signaling/BUILD.gn

Issue 2443903004: Add xmllite and xmpp sources to third_party/ (Closed)
Patch Set: Fix GN and sort includes Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698