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

Unified Diff: components/resources/BUILD.gn

Issue 601733002: Rename component_resources.h to components_resources.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: output_name hack 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 | « components/pdf/renderer/pdf_resource_util.cc ('k') | components/resources/components_resources.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/resources/BUILD.gn
diff --git a/components/resources/BUILD.gn b/components/resources/BUILD.gn
index 28d17552611985b4bf76b485ede65634b374613c..b6e027cd1bae5e8fce1b19709432dfa066a9ab47 100644
--- a/components/resources/BUILD.gn
+++ b/components/resources/BUILD.gn
@@ -16,9 +16,11 @@ group("resources") {
# (generate_components_resources action)
grit("components_resources") {
source = "components_resources.grd"
+ # TODO(hashimoto): Remove this line.
brettw 2015/08/12 17:08:10 These aren't very useful TODOs. I just came across
+ output_name = "components_resources_new"
outputs = [
- "grit/component_resources.h",
- "component_resources.pak",
+ "grit/components_resources.h",
+ "components_resources.pak",
]
}
@@ -26,9 +28,11 @@ grit("components_resources") {
# (generate_scaled_components_resources action)
grit("components_scaled_resources") {
source = "components_scaled_resources.grd"
+ # TODO(hashimoto): Remove this line.
+ output_name = "components_scaled_resources_new"
outputs = [
- "grit/component_scaled_resources.h",
- "component_resources_100_percent.pak",
- "component_resources_200_percent.pak",
+ "grit/components_scaled_resources.h",
+ "components_resources_100_percent.pak",
+ "components_resources_200_percent.pak",
]
}
« no previous file with comments | « components/pdf/renderer/pdf_resource_util.cc ('k') | components/resources/components_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698