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

Side by Side Diff: remoting/remoting_options.gypi

Issue 1007153003: Added support for enabling GCD, or not, at build time. (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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 # Set this to run the jscompile checks after building the webapp. 9 # Set this to run the jscompile checks after building the webapp.
10 'run_jscompile%': 1, 10 'run_jscompile%': 1,
11 11
12 # Set this to enable cast mode on the android client. 12 # Set this to enable cast mode on the android client.
13 'enable_cast%': 0, 13 'enable_cast%': 0,
14
15 # Set this to use GCD instead of the remoting directory service.
16 'remoting_use_gcd%': 0,
14 17
15 'variables': { 18 'variables': {
16 'conditions': [ 19 'conditions': [
17 # Enable the multi-process host on Windows by default. 20 # Enable the multi-process host on Windows by default.
18 ['OS=="win"', { 21 ['OS=="win"', {
19 'remoting_multi_process%': 1, 22 'remoting_multi_process%': 1,
20 }, { 23 }, {
21 'remoting_multi_process%': 0, 24 'remoting_multi_process%': 0,
22 }], 25 }],
23 ], 26 ],
24 }, 27 },
25 'remoting_multi_process%': '<(remoting_multi_process)', 28 'remoting_multi_process%': '<(remoting_multi_process)',
26 29
27 'remoting_rdp_session%': 1, 30 'remoting_rdp_session%': 1,
28 31
29 'branding_path': '../remoting/branding_<(branding)', 32 'branding_path': '../remoting/branding_<(branding)',
30 33
31 'conditions': [ 34 'conditions': [
32 ['OS=="win"', { 35 ['OS=="win"', {
33 # Java is not available on Windows bots, so we need to disable 36 # Java is not available on Windows bots, so we need to disable
34 # JScompile checks. 37 # JScompile checks.
35 'run_jscompile': 0, 38 'run_jscompile': 0,
36 }], 39 }],
37 ], 40 ],
38 }, 41 },
39 42
40 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698