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

Side by Side Diff: remoting/remoting_host.gypi

Issue 965633002: Add remoting and PPAPI tests to GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'includes': [ 6 'includes': [
7 'remoting_enable.gypi', 7 'remoting_enable.gypi',
8 ], 8 ],
9 9
10 'conditions': [ 10 'conditions': [
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 '../third_party/libjingle/libjingle.gyp:libpeerconnection', 204 '../third_party/libjingle/libjingle.gyp:libpeerconnection',
205 ], 205 ],
206 'sources': [ 206 'sources': [
207 '<@(remoting_cast_sources)', 207 '<@(remoting_cast_sources)',
208 ], 208 ],
209 }], 209 }],
210 ], 210 ],
211 }, # end of target 'remoting_host' 211 }, # end of target 'remoting_host'
212 212
213 { 213 {
214 # GN version: //remoting/host/native_messaging
214 'target_name': 'remoting_native_messaging_base', 215 'target_name': 'remoting_native_messaging_base',
215 'type': 'static_library', 216 'type': 'static_library',
216 'variables': { 'enable_wexit_time_destructors': 1, }, 217 'variables': { 'enable_wexit_time_destructors': 1, },
217 'dependencies': [ 218 'dependencies': [
218 '../base/base.gyp:base', 219 '../base/base.gyp:base',
219 ], 220 ],
220 'sources': [ 221 'sources': [
222 # Note: sources list duplicated in GN build.
221 'host/native_messaging/native_messaging_pipe.cc', 223 'host/native_messaging/native_messaging_pipe.cc',
222 'host/native_messaging/native_messaging_pipe.h', 224 'host/native_messaging/native_messaging_pipe.h',
223 'host/native_messaging/native_messaging_reader.cc', 225 'host/native_messaging/native_messaging_reader.cc',
224 'host/native_messaging/native_messaging_reader.h', 226 'host/native_messaging/native_messaging_reader.h',
225 'host/native_messaging/native_messaging_writer.cc', 227 'host/native_messaging/native_messaging_writer.cc',
226 'host/native_messaging/native_messaging_writer.h', 228 'host/native_messaging/native_messaging_writer.h',
227 'host/native_messaging/pipe_messaging_channel.cc', 229 'host/native_messaging/pipe_messaging_channel.cc',
228 'host/native_messaging/pipe_messaging_channel.h', 230 'host/native_messaging/pipe_messaging_channel.h',
229 ], 231 ],
230 }, # end of target 'remoting_native_messaging_base' 232 }, # end of target 'remoting_native_messaging_base'
231 233
232 { 234 {
235 # GN version: //remoting/host/setup
233 'target_name': 'remoting_host_setup_base', 236 'target_name': 'remoting_host_setup_base',
234 'type': 'static_library', 237 'type': 'static_library',
235 'variables': { 'enable_wexit_time_destructors': 1, }, 238 'variables': { 'enable_wexit_time_destructors': 1, },
236 'dependencies': [ 239 'dependencies': [
237 '../base/base.gyp:base', 240 '../base/base.gyp:base',
238 '../google_apis/google_apis.gyp:google_apis', 241 '../google_apis/google_apis.gyp:google_apis',
239 'remoting_host', 242 'remoting_host',
240 ], 243 ],
241 'defines': [ 244 'defines': [
242 'VERSION=<(version_full)', 245 'VERSION=<(version_full)',
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 # Dummy target for chromeos==1 738 # Dummy target for chromeos==1
736 'target_name': 'remoting_it2me_native_messaging_host', 739 'target_name': 'remoting_it2me_native_messaging_host',
737 'type': 'executable', 740 'type': 'executable',
738 }, 741 },
739 ], # targets 742 ], # targets
740 }], # end of chromeos==0 743 }], # end of chromeos==0
741 ], # end of conditions 744 ], # end of conditions
742 }], # end of OS!="win" and enable_remoting_host==1 745 }], # end of OS!="win" and enable_remoting_host==1
743 ], # end of 'conditions' 746 ], # end of 'conditions'
744 } 747 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698