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

Unified Diff: ui/file_manager/BUILD.gn

Issue 607413005: Add ui/file_manager/BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/BUILD.gn
diff --git a/ui/file_manager/BUILD.gn b/ui/file_manager/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..8dd03ff035b1dd81a654876372673aa8e2813806
--- /dev/null
+++ b/ui/file_manager/BUILD.gn
@@ -0,0 +1,29 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//tools/grit/grit_rule.gni")
+
+grit("resources") {
+ source = "file_manager_resources.grd"
+ outputs = [
+ "grit/file_manager_resources.h",
+ "grit/file_manager_resources_map.cc",
+ "grit/file_manager_resources_map.h",
+ "file_manager_resources.pak",
+ "file_manager_resources.rc",
+ ]
+}
+
+component("file_manager") {
+ sources = [
+ "file_manager_export.h",
+ "file_manager_resource_util.cc",
+ "file_manager_resource_util.h",
+ ]
+ deps = [
+ "//base",
+ ":resources"
+ ]
+ defines = [ "FILE_MANAGER_IMPLEMENTATION" ]
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698