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

Side by Side Diff: remoting/remoting.gyp

Issue 11773027: Enable the multi-process host on Windows by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « no previous file | 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
11 'variables': {
Sergey Ulanov 2013/01/07 20:45:53 Variables inside variables? I think it's better to
alexeypa (please no reviews) 2013/01/07 21:02:30 This is a way to create an overridable variable th
Sergey Ulanov 2013/01/08 00:29:11 Ah, right, makes sense.
12 'conditions': [
13 # Enable the multi-process host on Windows by default.
14 ['OS=="win"', {
15 'remoting_multi_process%': 1,
16 }, {
17 'remoting_multi_process%': 0,
18 }],
19 ],
20 },
21
11 'remoting_host_linux_clipboard%': 1, 22 'remoting_host_linux_clipboard%': 1,
12 'remoting_multi_process%': 0, 23 'remoting_multi_process%': '<(remoting_multi_process)',
Sergey Ulanov 2013/01/07 20:45:53 Remove this line?
13 24
14 # The |major|, |build| and |patch| versions are inherited from Chrome. 25 # The |major|, |build| and |patch| versions are inherited from Chrome.
15 # Since Chrome's |minor| version is always '0', we replace it with a 26 # Since Chrome's |minor| version is always '0', we replace it with a
16 # Chromoting-specific patch version. 27 # Chromoting-specific patch version.
17 # Note that we check both the |chrome_version_path| file and the 28 # Note that we check both the |chrome_version_path| file and the
18 # |remoting_version_path| so that we can override the Chrome version 29 # |remoting_version_path| so that we can override the Chrome version
19 # numbers if needed. 30 # numbers if needed.
20 'version_py_path': '../chrome/tools/build/version.py', 31 'version_py_path': '../chrome/tools/build/version.py',
21 'remoting_version_path': '../remoting/VERSION', 32 'remoting_version_path': '../remoting/VERSION',
22 'chrome_version_path': '../chrome/VERSION', 33 'chrome_version_path': '../chrome/VERSION',
(...skipping 2349 matching lines...) Expand 10 before | Expand all | Expand 10 after
2372 '../base/allocator/allocator.gyp:allocator', 2383 '../base/allocator/allocator.gyp:allocator',
2373 ], 2384 ],
2374 }, 2385 },
2375 ], 2386 ],
2376 ], 2387 ],
2377 }], # end of 'toolkit_uses_gtk == 1' 2388 }], # end of 'toolkit_uses_gtk == 1'
2378 ], # end of 'conditions' 2389 ], # end of 'conditions'
2379 }, # end of target 'remoting_unittests' 2390 }, # end of target 'remoting_unittests'
2380 ], # end of targets 2391 ], # end of targets
2381 } 2392 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698