Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1006)

Side by Side Diff: ui/file_manager/BUILD.gn

Issue 2808993003: Build ZIP archiver in ui/file_manager. (Closed)
Patch Set: Fix indentation and add some comments. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 grit("resources") { 7 grit("resources") {
8 source = "file_manager_resources.grd" 8 source = "file_manager_resources.grd"
9 outputs = [ 9 outputs = [
10 "grit/file_manager_resources.h", 10 "grit/file_manager_resources.h",
11 "grit/file_manager_resources_map.cc", 11 "grit/file_manager_resources_map.cc",
12 "grit/file_manager_resources_map.h", 12 "grit/file_manager_resources_map.h",
13 "file_manager_resources.pak", 13 "file_manager_resources.pak",
14 "file_manager_resources.rc", 14 "file_manager_resources.rc",
15 ] 15 ]
16 pexe = "$root_gen_dir/ui/file_manager/zip_archiver_pnacl.pexe.js"
17 grit_flags = [
18 "-E",
19 "pexe=" + rebase_path(pexe, root_build_dir),
20 ]
21 deps = [
22 "//ui/file_manager/zip_archiver/:zip_archiver(//build/toolchain/nacl:newlib_ pnacl)",
23 ]
16 } 24 }
17 25
18 component("file_manager") { 26 component("file_manager") {
19 sources = [ 27 sources = [
20 "file_manager_export.h", 28 "file_manager_export.h",
21 "file_manager_resource_util.cc", 29 "file_manager_resource_util.cc",
22 "file_manager_resource_util.h", 30 "file_manager_resource_util.h",
23 ] 31 ]
24 public_deps = [ 32 public_deps = [
25 ":resources", 33 ":resources",
26 "//base", 34 "//base",
27 ] 35 ]
28 defines = [ "FILE_MANAGER_IMPLEMENTATION" ] 36 defines = [ "FILE_MANAGER_IMPLEMENTATION" ]
29 } 37 }
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/file_manager_resources.grd » ('j') | ui/file_manager/file_manager_resources.grd » ('J')

Powered by Google App Engine
This is Rietveld 408576698