[Telemetry] Fix telemetry's find_dependencies_unittest
[chromium-blink-merge.git] / remoting / remoting_options.gypi
blob037fddc9fef406c469744ca32aa7a5a83c0fe142
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     'variables': {
19       'conditions': [
20         # Enable the multi-process host on Windows by default.
21         ['OS=="win"', {
22           'remoting_multi_process%': 1,
23         }, {
24           'remoting_multi_process%': 0,
25         }],
26       ],
27     },
28     'remoting_multi_process%': '<(remoting_multi_process)',
30     'remoting_rdp_session%': 1,
32     'branding_path': '../remoting/branding_<(branding)',
34     # The ar_service_environment variable is used to define the target
35     # environment for the app being built.
36     # The allowed values are dev, test, staging, prod, and prod-testing.
37     'conditions': [
38       ['buildtype == "Dev"', {
39         'ar_service_environment%': 'dev',
40       }, {  # buildtype != 'Dev'
41         # Non-dev builds should default to 'prod'.
42         'ar_service_environment%': 'prod',
43       }],
44     ],  # conditions
46   },