Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: remoting/remoting_options.gni

Issue 1356173002: Removing deprecated environments from App Remoting build files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/remoting_options.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # These arguments can be overridden from the command line (see "gn help args"). 5 # These arguments can be overridden from the command line (see "gn help args").
6 declare_args() { 6 declare_args() {
7 # Set this to run the jscompile checks after building the webapp. 7 # Set this to run the jscompile checks after building the webapp.
8 enable_remoting_jscompile = false 8 enable_remoting_jscompile = false
9 9
10 # Set this to enable building internal AppRemoting apps. 10 # Set this to enable building internal AppRemoting apps.
(...skipping 12 matching lines...) Expand all
23 } else { 23 } else {
24 remoting_multi_process = 0 24 remoting_multi_process = 0
25 } 25 }
26 26
27 remoting_rdp_session = 1 27 remoting_rdp_session = 1
28 28
29 branding_path = "../remoting/branding_<(branding)" 29 branding_path = "../remoting/branding_<(branding)"
30 30
31 # The ar_service_environment variable is used to define the target 31 # The ar_service_environment variable is used to define the target
32 # environment for the app being built. 32 # environment for the app being built.
33 # The allowed values are dev, test, staging, prod, and prod-testing. 33 # The allowed values are dev and prod.
34 if (is_debug) { 34 if (is_debug) {
35 ar_service_environment = "dev" 35 ar_service_environment = "dev"
36 } else { 36 } else {
37 # Non-dev builds should default to 'prod'. 37 # Non-dev builds should default to 'prod'.
38 ar_service_environment = "prod" 38 ar_service_environment = "prod"
39 } 39 }
OLDNEW
« no previous file with comments | « no previous file | remoting/remoting_options.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698