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

Unified Diff: chrome/chrome.gyp

Issue 210022: Adding a GYP variable to indicate if a build wants Title Case strings or not.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 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 | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
===================================================================
--- chrome/chrome.gyp (revision 26734)
+++ chrome/chrome.gyp (working copy)
@@ -214,6 +214,11 @@
'-D', '<(chrome_build)',
'-E', '<(branded_env)',
],
+ 'conditions': [
+ ['use_titlecase_in_grd_files==1', {
+ 'action': ['-D', 'use_titlecase'],
+ }],
+ ],
'message': 'Generating resources from <(RULE_INPUT_PATH)',
},
],
@@ -294,6 +299,9 @@
['chromeos==1', {
'action': ['-D', 'chromeos'],
}],
+ ['use_titlecase_in_grd_files==1', {
+ 'action': ['-D', 'use_titlecase'],
+ }],
],
'message': 'Generating resources from <(RULE_INPUT_PATH)',
},
@@ -348,6 +356,9 @@
['chromeos==1', {
'action': ['-D', 'chromeos'],
}],
+ ['use_titlecase_in_grd_files==1', {
+ 'action': ['-D', 'use_titlecase'],
+ }],
],
'message': 'Generating resources from <(input_path)',
},
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698