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

Side by Side Diff: remoting/remoting.gyp

Issue 11140031: [Chromoting] Add a Linux command-line app that can register and start a host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build remoting_start_host only on Linux. Created 8 years, 2 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
« no previous file with comments | « remoting/host/setup/start_host.cc ('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 (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 10
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 'process_outputs_as_sources': 1, 266 'process_outputs_as_sources': 1,
267 }, 267 },
268 ], 268 ],
269 'dependencies': [ 269 'dependencies': [
270 'remoting_host_plugin', 270 'remoting_host_plugin',
271 '../breakpad/breakpad.gyp:dump_syms', 271 '../breakpad/breakpad.gyp:dump_syms',
272 ], 272 ],
273 }], # 'linux_dump_symbols==1' 273 }], # 'linux_dump_symbols==1'
274 ], # end of 'conditions' 274 ], # end of 'conditions'
275 }, # end of target 'linux_symbols' 275 }, # end of target 'linux_symbols'
276 {
277 'target_name': 'remoting_start_host',
278 'type': 'executable',
279 'dependencies': [
280 'remoting_host_setup_base',
281 ],
282 'sources': [
283 'host/setup/start_host.cc',
284 ],
285 }, # end of target 'remoting_start_host'
276 ], # end of 'targets' 286 ], # end of 'targets'
277 }], # 'OS=="linux"' 287 }], # 'OS=="linux"'
278 288
279 ['OS=="mac"', { 289 ['OS=="mac"', {
280 'targets': [ 290 'targets': [
281 { 291 {
282 'target_name': 'remoting_host_uninstaller', 292 'target_name': 'remoting_host_uninstaller',
283 'type': 'executable', 293 'type': 'executable',
284 'mac_bundle': 1, 294 'mac_bundle': 1,
285 'variables': { 295 'variables': {
(...skipping 1866 matching lines...) Expand 10 before | Expand all | Expand 10 after
2152 '../base/allocator/allocator.gyp:allocator', 2162 '../base/allocator/allocator.gyp:allocator',
2153 ], 2163 ],
2154 }, 2164 },
2155 ], 2165 ],
2156 ], 2166 ],
2157 }], # end of 'toolkit_uses_gtk == 1' 2167 }], # end of 'toolkit_uses_gtk == 1'
2158 ], # end of 'conditions' 2168 ], # end of 'conditions'
2159 }, # end of target 'remoting_unittests' 2169 }, # end of target 'remoting_unittests'
2160 ], # end of targets 2170 ], # end of targets
2161 } 2171 }
OLDNEW
« no previous file with comments | « remoting/host/setup/start_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698