Roll src/third_party/WebKit b41a10f:afd8afd (svn 202201:202202)
[chromium-blink-merge.git] / remoting / remoting_options.gypi
blob0da85c74722e434819571dde2e1675645b57b713
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
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
9     # Set this to run the jscompile checks after building the webapp.
10     'run_jscompile%': 0,
12     # Set this to enable cast mode on the android client.
13     'enable_cast%': 0,
15     # Set this to use GCD instead of the remoting directory service.
16     'remoting_use_gcd%': 0,
18     # Set this to enable Android Chromoting Cardboard Activity.
19     'enable_cardboard%': 0,
21     'variables': {
22       'conditions': [
23         # Enable the multi-process host on Windows by default.
24         ['OS=="win"', {
25           'remoting_multi_process%': 1,
26         }, {
27           'remoting_multi_process%': 0,
28         }],
29       ],
30     },
31     'remoting_multi_process%': '<(remoting_multi_process)',
33     'remoting_rdp_session%': 1,
35     'branding_path': '../remoting/branding_<(branding)',
37     # The ar_service_environment variable is used to define the target
38     # environment for the app being built.
39     # The allowed values are dev, test, staging, prod, and prod-testing.
40     'conditions': [
41       ['buildtype == "Dev"', {
42         'ar_service_environment%': 'dev',
43       }, {  # buildtype != 'Dev'
44         # Non-dev builds should default to 'prod'.
45         'ar_service_environment%': 'prod',
46       }],
47     ],  # conditions
49   },