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 if (enable_nacl) { | |
8 copy("zip_archiver") { | |
9 pexe_dir = get_label_info( | |
10 "//ui/file_manager/zip_archiver/zip_archiver/cpp:zip_archiver_pnacl(//bu ild/toolchain/nacl:newlib_pnacl)", | |
11 "root_out_dir") | |
12 | |
13 sources = [ | |
14 "$pexe_dir/zip_archiver_pnacl.pexe", | |
15 ] | |
16 | |
17 outputs = [ | |
18 "$pexe_dir/../gen/ui/file_manager/{{source_file_part}}.js", | |
hashimoto
2017/04/12 07:59:43
1. Why do we need to copy this file once, instead
takise
2017/04/12 09:30:00
This is actually a really tricky workaround which
| |
19 ] | |
20 | |
21 deps = [ | |
22 "//ui/file_manager/zip_archiver/cpp:zip_archiver_pnacl", | |
23 ] | |
24 } | |
25 } | |
OLD | NEW |