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

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

Issue 533743004: Fix Chrome linker errors in GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « remoting/client/plugin/BUILD.gn ('k') | third_party/libjingle/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("protocol") { 5 static_library("protocol") {
6 sources = [ 6 sources = [
7 "audio_reader.cc", 7 "audio_reader.cc",
8 "audio_reader.h", 8 "audio_reader.h",
9 "audio_stub.h", 9 "audio_stub.h",
10 "audio_writer.cc", 10 "audio_writer.cc",
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 "../signaling/log_to_server.cc", 129 "../signaling/log_to_server.cc",
130 "../signaling/log_to_server.h", 130 "../signaling/log_to_server.h",
131 "../signaling/server_log_entry.cc", 131 "../signaling/server_log_entry.cc",
132 "../signaling/server_log_entry.h", 132 "../signaling/server_log_entry.h",
133 "../signaling/signal_strategy.h", 133 "../signaling/signal_strategy.h",
134 "../signaling/xmpp_signal_strategy.cc", 134 "../signaling/xmpp_signal_strategy.cc",
135 "../signaling/xmpp_signal_strategy.h", 135 "../signaling/xmpp_signal_strategy.h",
136 ] 136 ]
137 137
138 configs += [ "//build/config/compiler:wexit_time_destructors" ] 138 configs += [ "//build/config/compiler:wexit_time_destructors" ]
139 # TODO(GYP) Remove when WebRTC/jingle is converted.
140 configs += [
141 "//content:webrtc_stub_config",
142 "//content:libjingle_stub_config",
143 ]
144 139
145 deps = [ 140 deps = [
146 "//base", 141 "//base",
147 "//crypto", 142 "//crypto",
143 "//jingle:jingle_glue",
144 "//jingle:notifier",
148 "//net", 145 "//net",
149 "//remoting/base", 146 "//remoting/base",
150 #'../jingle/jingle.gyp:jingle_glue', TODO(GYP) 147 "//third_party/libjingle",
151 #'../jingle/jingle.gyp:notifier', TODO(GYP)
152 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP)
153 ] 148 ]
154 149
155 forward_dependent_configs_from = [ 150 forward_dependent_configs_from = [
156 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP) 151 "//third_party/libjingle",
157 ] 152 ]
158 # TODO(GYP) Remove when jingle is converted.
159 direct_dependent_configs = [ "//content:libjingle_stub_config" ]
160 } 153 }
OLDNEW
« no previous file with comments | « remoting/client/plugin/BUILD.gn ('k') | third_party/libjingle/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698