| 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 import("//build/config/ui.gni") |
| 7 |
| 8 enable_remoting_host = |
| 9 is_win || (is_linux && (is_chromeos || use_x11)) || is_mac |
| 10 enable_me2me_host = is_win || (is_linux && !is_chromeos && use_x11) || is_mac |
| 6 | 11 |
| 7 # These arguments can be overridden from the command line (see "gn help args"). | 12 # These arguments can be overridden from the command line (see "gn help args"). |
| 8 declare_args() { | 13 declare_args() { |
| 9 # Set this to run the jscompile checks after building the webapp. | 14 # Set this to run the jscompile checks after building the webapp. |
| 10 enable_remoting_jscompile = false | 15 enable_remoting_jscompile = false |
| 11 | 16 |
| 12 # Set this to enable building internal AppRemoting apps. | 17 # Set this to enable building internal AppRemoting apps. |
| 13 enable_internal_app_remoting_targets = false | 18 enable_internal_app_remoting_targets = false |
| 14 } | 19 } |
| 15 | 20 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 36 # The allowed values are dev and prod. | 41 # The allowed values are dev and prod. |
| 37 if (is_debug) { | 42 if (is_debug) { |
| 38 ar_service_environment = "dev" | 43 ar_service_environment = "dev" |
| 39 } else { | 44 } else { |
| 40 # Non-dev builds should default to 'prod'. | 45 # Non-dev builds should default to 'prod'. |
| 41 ar_service_environment = "prod" | 46 ar_service_environment = "prod" |
| 42 } | 47 } |
| 43 | 48 |
| 44 daemon_controller_guid = "655bd819-c08c-4b04-80c2-f160739ff6ef" | 49 daemon_controller_guid = "655bd819-c08c-4b04-80c2-f160739ff6ef" |
| 45 rdp_desktop_session_guid = "6a7699f0-ee43-43e7-aa30-a6738f9bd470" | 50 rdp_desktop_session_guid = "6a7699f0-ee43-43e7-aa30-a6738f9bd470" |
| OLD | NEW |