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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting.gyp
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index 2f7a7f099ea16736e94903af23240886232bd90f..26eb6fc5e4f28fceb77c200c5213fca1a6d22584 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -8,8 +8,19 @@
# duplicated from chrome.gyp
'chromium_code': 1,
+ '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.
+ 'conditions': [
+ # Enable the multi-process host on Windows by default.
+ ['OS=="win"', {
+ 'remoting_multi_process%': 1,
+ }, {
+ 'remoting_multi_process%': 0,
+ }],
+ ],
+ },
+
'remoting_host_linux_clipboard%': 1,
- 'remoting_multi_process%': 0,
+ 'remoting_multi_process%': '<(remoting_multi_process)',
Sergey Ulanov 2013/01/07 20:45:53 Remove this line?
# The |major|, |build| and |patch| versions are inherited from Chrome.
# Since Chrome's |minor| version is always '0', we replace it with a
« 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