| 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("//build/config/chrome_build.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/util/version.gni") | 9 import("//build/util/version.gni") |
| 10 import("//remoting/remoting_enable.gni") |
| 10 import("//remoting/remoting_locales.gni") | 11 import("//remoting/remoting_locales.gni") |
| 11 import("//remoting/remoting_options.gni") | 12 import("//remoting/remoting_options.gni") |
| 12 import("//remoting/remoting_version.gni") | 13 import("//remoting/remoting_version.gni") |
| 13 import("//remoting/webapp/files.gni") | 14 import("//remoting/webapp/files.gni") |
| 14 import("//third_party/closure_compiler/closure_args.gni") | 15 import("//third_party/closure_compiler/closure_args.gni") |
| 15 | 16 |
| 16 # The base remoting directory that is used as the root directory for file | 17 # The base remoting directory that is used as the root directory for file |
| 17 # references. Many of the scripts rely on the files being specified relative | 18 # references. Many of the scripts rely on the files being specified relative |
| 18 # to this directory. | 19 # to this directory. |
| 19 remoting_dir = "//remoting" | 20 remoting_dir = "//remoting" |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 args += [ | 291 args += [ |
| 291 "--locales_listfile", | 292 "--locales_listfile", |
| 292 rebase_path(locales_listfile_output, root_build_dir), | 293 rebase_path(locales_listfile_output, root_build_dir), |
| 293 ] | 294 ] |
| 294 args += [ | 295 args += [ |
| 295 "--use_gcd", | 296 "--use_gcd", |
| 296 "$remoting_use_gcd", | 297 "$remoting_use_gcd", |
| 297 ] | 298 ] |
| 298 } | 299 } |
| 299 } | 300 } |
| OLD | NEW |