OLD | NEW |
(Empty) | |
| 1 # Copyright 2017 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. |
| 4 |
| 5 import("//build/config/features.gni") |
| 6 |
| 7 copy("zip_archiver") { |
| 8 pexe_dir = get_label_info( |
| 9 "//ui/file_manager/zip_archiver/zip_archiver/cpp:zip_archiver_pnacl(//buil
d/toolchain/nacl:newlib_pnacl)", |
| 10 "root_out_dir") |
| 11 |
| 12 sources = [ |
| 13 "$pexe_dir/zip_archiver_pnacl.pexe", |
| 14 ] |
| 15 |
| 16 outputs = [ |
| 17 "$root_gen_dir/ui/file_manager/{{source_file_part}}.js", |
| 18 ] |
| 19 |
| 20 deps = [ |
| 21 "//ui/file_manager/zip_archiver/cpp:zip_archiver_pnacl(//build/toolchain/nac
l:newlib_pnacl)", |
| 22 ] |
| 23 } |
OLD | NEW |