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

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

Issue 2273383002: Cleaning up remoting GN build files. Condense the sources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning up remoting GN build files. Condense the sources. Created 4 years, 3 months 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
« remoting/remoting_options.gni ('K') | « remoting/remoting_srcs.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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 }
OLDNEW
« remoting/remoting_options.gni ('K') | « remoting/remoting_srcs.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698