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

Unified Diff: chrome/common/BUILD.gn

Issue 411543005: Encode all grit outputs in .gn files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git log 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
Index: chrome/common/BUILD.gn
diff --git a/chrome/common/BUILD.gn b/chrome/common/BUILD.gn
index 8be371e456198dc7aea003b4a1985c9a7711131e..316493e8161ad685a30729994b50935e3c2b9ce2 100644
--- a/chrome/common/BUILD.gn
+++ b/chrome/common/BUILD.gn
@@ -14,12 +14,20 @@ gypi_values = exec_script(
# (generate_common_resources action)
grit("resources") {
source = "common_resources.grd"
+ outputs = [
+ "grit/common_resources.h",
+ "common_resources.pak",
+ ]
}
# GYP version: chrome/chrome_resources.gyp:chrome_resources
# (generate_extensions_api_resources action)
grit("extensions_api_resources") {
source = "extensions_api_resources.grd"
+ outputs = [
+ "grit/extensions_api_resources.h",
+ "extensions_api_resources.pak",
+ ]
}
# GYP version: chrome/chrome_common.gyp:common

Powered by Google App Engine
This is Rietveld 408576698