Fire callbacks in FlushAndStop if AvStreamerProxy isn't running
[chromium-blink-merge.git] / remoting / remoting_options.gni
blobdf1292f4f3a582b747dc290eeb333a1554476025
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
3 # found in the LICENSE file.
5 # These arguments can be overridden from the command line (see "gn help args").
6 declare_args() {
7   # Set this to run the jscompile checks after building the webapp.
8   enable_remoting_jscompile = false
11 # Set this to enable cast mode on the android client.
12 enable_cast = 0
14 # Set this to use GCD instead of the remoting directory service.
15 remoting_use_gcd = 0
17 # Enable the multi-process host on Windows by default.
18 if (is_win) {
19   remoting_multi_process = 1
20 } else {
21   remoting_multi_process = 0
24 remoting_rdp_session = 1
26 branding_path = "../remoting/branding_<(branding)"
28 # The ar_service_environment variable is used to define the target
29 # environment for the app being built.
30 # The allowed values are dev, test, staging, prod, and prod-testing.
31 if (is_debug) {
32   ar_service_environment = "dev"
33 } else {
34   # Non-dev builds should default to 'prod'.
35   ar_service_environment = "prod"