OLD | NEW |
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, |
(...skipping 18 matching lines...) Expand all Loading... |
29 ], | 29 ], |
30 }, | 30 }, |
31 'remoting_multi_process%': '<(remoting_multi_process)', | 31 'remoting_multi_process%': '<(remoting_multi_process)', |
32 | 32 |
33 'remoting_rdp_session%': 1, | 33 'remoting_rdp_session%': 1, |
34 | 34 |
35 'branding_path': '../remoting/branding_<(branding)', | 35 'branding_path': '../remoting/branding_<(branding)', |
36 | 36 |
37 # The ar_service_environment variable is used to define the target | 37 # The ar_service_environment variable is used to define the target |
38 # environment for the app being built. | 38 # environment for the app being built. |
39 # The allowed values are dev, test, staging, prod, and prod-testing. | 39 # The allowed values are dev and prod. |
40 'conditions': [ | 40 'conditions': [ |
41 ['buildtype == "Dev"', { | 41 ['buildtype == "Dev"', { |
42 'ar_service_environment%': 'dev', | 42 'ar_service_environment%': 'dev', |
43 }, { # buildtype != 'Dev' | 43 }, { # buildtype != 'Dev' |
44 # Non-dev builds should default to 'prod'. | 44 # Non-dev builds should default to 'prod'. |
45 'ar_service_environment%': 'prod', | 45 'ar_service_environment%': 'prod', |
46 }], | 46 }], |
47 ], # conditions | 47 ], # conditions |
48 | 48 |
49 }, | 49 }, |
50 } | 50 } |
OLD | NEW |