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

Unified Diff: ui/resources/BUILD.gn

Issue 411543005: Encode all grit outputs in .gn files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « ui/keyboard/BUILD.gn ('k') | ui/strings/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/resources/BUILD.gn
diff --git a/ui/resources/BUILD.gn b/ui/resources/BUILD.gn
index a0584d647399d1131211e7ac91c733ad8d9bf63c..e4dbd9386e0d6e5f0e5308a65388cfe2fab04290 100644
--- a/ui/resources/BUILD.gn
+++ b/ui/resources/BUILD.gn
@@ -17,16 +17,33 @@ group("resources") {
grit("ui_resources_grd") {
visibility = ":resources"
source = "ui_resources.grd"
+ outputs = [
+ "grit/ui_resources.h",
+ "grit/ui_resources_map.cc",
+ "grit/ui_resources_map.h",
+ "ui_resources_100_percent.pak",
+ "ui_resources_200_percent.pak",
+ ]
}
grit("ui_unscaled_resources_grd") {
visibility = ":resources"
source = "ui_unscaled_resources.grd"
+ outputs = [
+ "grit/ui_unscaled_resources.h",
+ "ui_unscaled_resources.rc",
+ ]
}
grit("webui_resources_grd") {
visibility = ":resources"
source = "../webui/resources/webui_resources.grd"
+ outputs = [
+ "grit/webui_resources.h",
+ "grit/webui_resources_map.cc",
+ "grit/webui_resources_map.h",
+ "webui_resources.pak",
+ ]
}
if (!is_mac) {
« no previous file with comments | « ui/keyboard/BUILD.gn ('k') | ui/strings/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698