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

Side by Side Diff: remoting/remoting_options.gypi

Issue 1231153002: Add VR desktop activity structure (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add cardboard desktop activity into conditional case Created 5 years, 5 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
« no previous file with comments | « remoting/remoting_android.gypi ('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 '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%': 0, 10 'run_jscompile%': 0,
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 14
15 # Set this to use GCD instead of the remoting directory service. 15 # Set this to use GCD instead of the remoting directory service.
16 'remoting_use_gcd%': 0, 16 'remoting_use_gcd%': 0,
17 17
18 # Set this to enable Android Chromoting Cardboard Activity.
19 'enable_cardboard%': 0,
20
18 'variables': { 21 'variables': {
19 'conditions': [ 22 'conditions': [
20 # Enable the multi-process host on Windows by default. 23 # Enable the multi-process host on Windows by default.
21 ['OS=="win"', { 24 ['OS=="win"', {
22 'remoting_multi_process%': 1, 25 'remoting_multi_process%': 1,
23 }, { 26 }, {
24 'remoting_multi_process%': 0, 27 'remoting_multi_process%': 0,
25 }], 28 }],
26 ], 29 ],
27 }, 30 },
(...skipping 10 matching lines...) Expand all
38 ['buildtype == "Dev"', { 41 ['buildtype == "Dev"', {
39 'ar_service_environment%': 'dev', 42 'ar_service_environment%': 'dev',
40 }, { # buildtype != 'Dev' 43 }, { # buildtype != 'Dev'
41 # Non-dev builds should default to 'prod'. 44 # Non-dev builds should default to 'prod'.
42 'ar_service_environment%': 'prod', 45 'ar_service_environment%': 'prod',
43 }], 46 }],
44 ], # conditions 47 ], # conditions
45 48
46 }, 49 },
47 } 50 }
OLDNEW
« no previous file with comments | « remoting/remoting_android.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698