Chromium Code Reviews| 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_locales.gni") | 10 import("//remoting/remoting_locales.gni") |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 196 "$target_gen_dir/credits.html", | 196 "$target_gen_dir/credits.html", |
| 197 ] | 197 ] |
| 198 | 198 |
| 199 if (enable_pnacl) { | 199 if (enable_pnacl) { |
| 200 pexe_dir = get_label_info( | 200 pexe_dir = get_label_info( |
| 201 "//remoting/client/plugin:remoting_client_plugin_newlib(//build/to olchain/nacl:newlib_pnacl)", | 201 "//remoting/client/plugin:remoting_client_plugin_newlib(//build/to olchain/nacl:newlib_pnacl)", |
| 202 "root_out_dir") | 202 "root_out_dir") |
| 203 | 203 |
| 204 extra_files += [ "$pexe_dir/remoting_client_plugin_newlib.pexe" ] | 204 extra_files += [ "$pexe_dir/remoting_client_plugin_newlib.pexe" ] |
| 205 if (is_debug) { | 205 if (is_debug) { |
| 206 extra_files += [ "$pexe_dir/remoting_client_plugin_newlib.pexe.debug" ] | 206 extra_files += |
| 207 [ "$pexe_dir/exe.unstripped/remoting_client_plugin_newlib.pexe" ] | |
|
Sergey Ulanov
2015/11/04 07:36:23
The build-webapp.py just copies all files into the
Roland McGrath
2015/11/04 20:26:47
I think it's best that the toolchain rule use the
| |
| 207 } | 208 } |
| 208 } | 209 } |
| 209 | 210 |
| 210 inputs = [ rebase_path("crd/manifest.json.jinja2", root_build_dir) ] + | 211 inputs = [ rebase_path("crd/manifest.json.jinja2", root_build_dir) ] + |
| 211 remoting_version_files + | 212 remoting_version_files + |
| 212 rebase_path(remoting_webapp_crd_files, root_build_dir) + | 213 rebase_path(remoting_webapp_crd_files, root_build_dir) + |
| 213 extra_files + dr_generated_html_files | 214 extra_files + dr_generated_html_files |
| 214 | 215 |
| 215 outputs = [ | 216 outputs = [ |
| 216 zip_path, | 217 zip_path, |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 538 args += [ | 539 args += [ |
| 539 "--files_listfile", | 540 "--files_listfile", |
| 540 rebase_path(file_list, root_build_dir), | 541 rebase_path(file_list, root_build_dir), |
| 541 ] | 542 ] |
| 542 args += [ | 543 args += [ |
| 543 "--locales_listfile", | 544 "--locales_listfile", |
| 544 rebase_path(locales_listfile_output, root_build_dir), | 545 rebase_path(locales_listfile_output, root_build_dir), |
| 545 ] | 546 ] |
| 546 } | 547 } |
| 547 } | 548 } |
| OLD | NEW |