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

Side by Side Diff: remoting/remoting.gyp

Issue 9705065: Introducing the WorkerProcessLauncher class implementing the common logic for spawning a worker pro… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR feedback Created 8 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 | Annotate | Revision Log
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 'variables': { 6 'variables': {
7 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 # Use consistent strings across all platforms. Note that the plugin name 10 # Use consistent strings across all platforms. Note that the plugin name
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 'sources': [ 215 'sources': [
216 'base/scoped_sc_handle_win.h', 216 'base/scoped_sc_handle_win.h',
217 'host/chromoting_messages.cc', 217 'host/chromoting_messages.cc',
218 'host/chromoting_messages.h', 218 'host/chromoting_messages.h',
219 'host/host_service.rc', 219 'host/host_service.rc',
220 'host/host_service_resource.h', 220 'host/host_service_resource.h',
221 'host/host_service_win.cc', 221 'host/host_service_win.cc',
222 'host/host_service_win.h', 222 'host/host_service_win.h',
223 'host/sas_injector.h', 223 'host/sas_injector.h',
224 'host/sas_injector_win.cc', 224 'host/sas_injector_win.cc',
225 'host/worker_process_launcher.cc',
226 'host/worker_process_launcher.h',
225 'host/wts_console_monitor_win.h', 227 'host/wts_console_monitor_win.h',
226 'host/wts_console_observer_win.h', 228 'host/wts_console_observer_win.h',
227 'host/wts_session_process_launcher_win.cc', 229 'host/wts_session_process_launcher_win.cc',
228 'host/wts_session_process_launcher_win.h', 230 'host/wts_session_process_launcher_win.h',
229 ], 231 ],
230 'msvs_settings': { 232 'msvs_settings': {
231 'VCLinkerTool': { 233 'VCLinkerTool': {
232 'AdditionalDependencies': [ 234 'AdditionalDependencies': [
233 'wtsapi32.lib', 235 'wtsapi32.lib',
234 ], 236 ],
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
1070 '../base/allocator/allocator.gyp:allocator', 1072 '../base/allocator/allocator.gyp:allocator',
1071 ], 1073 ],
1072 }, 1074 },
1073 ], 1075 ],
1074 ], 1076 ],
1075 }], 1077 }],
1076 ], # end of 'conditions' 1078 ], # end of 'conditions'
1077 }, # end of target 'remoting_unittests' 1079 }, # end of target 'remoting_unittests'
1078 ], # end of targets 1080 ], # end of targets
1079 } 1081 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698