Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 | 6 |
| 7 # These arguments can be overridden from the command line (see "gn help args"). | 7 # These arguments can be overridden from the command line (see "gn help args"). |
| 8 declare_args() { | 8 declare_args() { |
| 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 enable_remoting_jscompile = false | 10 enable_remoting_jscompile = false |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 33 | 33 |
| 34 # The ar_service_environment variable is used to define the target | 34 # The ar_service_environment variable is used to define the target |
| 35 # environment for the app being built. | 35 # environment for the app being built. |
| 36 # The allowed values are dev and prod. | 36 # The allowed values are dev and prod. |
| 37 if (is_debug) { | 37 if (is_debug) { |
| 38 ar_service_environment = "dev" | 38 ar_service_environment = "dev" |
| 39 } else { | 39 } else { |
| 40 # Non-dev builds should default to 'prod'. | 40 # Non-dev builds should default to 'prod'. |
| 41 ar_service_environment = "prod" | 41 ar_service_environment = "prod" |
| 42 } | 42 } |
| 43 | |
| 44 daemon_controller_guid = "655bd819-c08c-4b04-80c2-f160739ff6ef" | |
| 45 rdp_desktop_session_guid = "6a7699f0-ee43-43e7-aa30-a6738f9bd470" | |
|
joedow
2016/08/25 17:33:11
These are windows only so they could be set behind
| |
| OLD | NEW |