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

Side by Side Diff: remoting/remoting_options.gni

Issue 1132133008: [Chromoting] Run jscompile over JS for HTML files (GN-only) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/webapp/build_template.gni » ('j') | remoting/webapp/build_template.gni » ('J')
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 # Set this to run the jscompile checks after building the webapp. 5 # Set this to run the jscompile checks after building the webapp.
6 run_jscompile = 0 6 run_jscompile = false
7 7
8 # Set this to enable cast mode on the android client. 8 # Set this to enable cast mode on the android client.
9 enable_cast = 0 9 enable_cast = 0
10 10
11 # Set this to use GCD instead of the remoting directory service. 11 # Set this to use GCD instead of the remoting directory service.
12 remoting_use_gcd = 0 12 remoting_use_gcd = 0
13 13
14 # Enable the multi-process host on Windows by default. 14 # Enable the multi-process host on Windows by default.
15 if (is_win) { 15 if (is_win) {
16 remoting_multi_process = 1 16 remoting_multi_process = 1
17 } else { 17 } else {
18 remoting_multi_process = 0 18 remoting_multi_process = 0
19 } 19 }
20 20
21 remoting_rdp_session = 1 21 remoting_rdp_session = 1
22 22
23 branding_path = "../remoting/branding_<(branding)" 23 branding_path = "../remoting/branding_<(branding)"
24 24
25 # The ar_service_environment variable is used to define the target 25 # The ar_service_environment variable is used to define the target
26 # environment for the app being built. 26 # environment for the app being built.
27 # The allowed values are dev, test, staging, prod, and prod-testing. 27 # The allowed values are dev, test, staging, prod, and prod-testing.
28 if (is_debug) { 28 if (is_debug) {
29 ar_service_environment = "dev" 29 ar_service_environment = "dev"
30 } else { 30 } else {
31 # Non-dev builds should default to 'prod'. 31 # Non-dev builds should default to 'prod'.
32 ar_service_environment = "prod" 32 ar_service_environment = "prod"
33 } 33 }
OLDNEW
« no previous file with comments | « no previous file | remoting/webapp/build_template.gni » ('j') | remoting/webapp/build_template.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698