| 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, |
| 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 Loading... |
| 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 } |
| OLD | NEW |