| 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_enable.gni") |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "jscomp_error=duplicate", | 76 "jscomp_error=duplicate", |
| 77 "jscomp_error=misplacedTypeAnnotation", | 77 "jscomp_error=misplacedTypeAnnotation", |
| 78 ] | 78 ] |
| 79 | 79 |
| 80 args = rebase_path(js_files, root_build_dir) | 80 args = rebase_path(js_files, root_build_dir) |
| 81 args += [ | 81 args += [ |
| 82 "--no_single_file", | 82 "--no_single_file", |
| 83 "--out_file", | 83 "--out_file", |
| 84 rebase_path(target_jscompile_stamp, root_build_dir), | 84 rebase_path(target_jscompile_stamp, root_build_dir), |
| 85 "--closure_args", | 85 "--closure_args", |
| 86 ] + closure_args + extra_closure_args | 86 ] + default_closure_args + extra_closure_args |
| 87 args += [ "--externs" ] + rebase_path(externs, root_build_dir) | 87 args += [ "--externs" ] + rebase_path(externs, root_build_dir) |
| 88 } | 88 } |
| 89 } | 89 } |
| 90 | 90 |
| 91 action(target_name) { | 91 action(target_name) { |
| 92 html_template_file = invoker.html_template_file | 92 html_template_file = invoker.html_template_file |
| 93 html_template_include_files = invoker.html_template_include_files | 93 html_template_include_files = invoker.html_template_include_files |
| 94 js_files = invoker.js_files | 94 js_files = invoker.js_files |
| 95 html_output = invoker.html_output | 95 html_output = invoker.html_output |
| 96 exclude_js = invoker.exclude_js | 96 exclude_js = invoker.exclude_js |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 args += [ | 291 args += [ |
| 292 "--locales_listfile", | 292 "--locales_listfile", |
| 293 rebase_path(locales_listfile_output, root_build_dir), | 293 rebase_path(locales_listfile_output, root_build_dir), |
| 294 ] | 294 ] |
| 295 args += [ | 295 args += [ |
| 296 "--use_gcd", | 296 "--use_gcd", |
| 297 "$remoting_use_gcd", | 297 "$remoting_use_gcd", |
| 298 ] | 298 ] |
| 299 } | 299 } |
| 300 } | 300 } |
| OLD | NEW |