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 # Keep in sync with 'remoting_webapp' target in remoting/remoting_client.gypi. | 5 # Keep in sync with 'remoting_webapp' target in remoting/remoting_client.gypi. |
6 | 6 |
| 7 import("//build/config/chrome_build.gni") |
7 import("//remoting/remoting_locales.gni") | 8 import("//remoting/remoting_locales.gni") |
8 import("//remoting/remoting_options.gni") | 9 import("//remoting/remoting_options.gni") |
9 import("//remoting/remoting_version.gni") | 10 import("//remoting/remoting_version.gni") |
10 import("//remoting/webapp/files.gni") | 11 import("//remoting/webapp/files.gni") |
11 | 12 |
12 # The base remoting directory that is used as the root directory for file | 13 # The base remoting directory that is used as the root directory for file |
13 # references. Many of the scripts rely on the files being specified relative | 14 # references. Many of the scripts rely on the files being specified relative |
14 # to this directory. | 15 # to this directory. |
15 remoting_dir = "//remoting" | 16 remoting_dir = "//remoting" |
16 | 17 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 args += [ | 98 args += [ |
98 "--locales_listfile", | 99 "--locales_listfile", |
99 listfile_rel, | 100 listfile_rel, |
100 ] | 101 ] |
101 args += [ | 102 args += [ |
102 "--use_gcd", | 103 "--use_gcd", |
103 "$remoting_use_gcd", | 104 "$remoting_use_gcd", |
104 ] | 105 ] |
105 } | 106 } |
106 } | 107 } |
OLD | NEW |