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

Unified Diff: chrome/chrome_browser.gypi

Issue 7891020: Make autofill regular expressions unicode again. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove extra gyp change Created 9 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/browser/autofill/regular_expressions.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_browser.gypi
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi
index a57476469bcd76b12d118f8167facdf2f850620f..e632f3d470f188495a73468897512284ad72f956 100644
--- a/chrome/chrome_browser.gypi
+++ b/chrome/chrome_browser.gypi
@@ -152,6 +152,8 @@
'browser/autofill/autofill_metrics.h',
'browser/autofill/autofill_profile.cc',
'browser/autofill/autofill_profile.h',
+ 'browser/autofill/autofill_regex_constants.cc.utf8',
+ 'browser/autofill/autofill_regex_constants.h',
'browser/autofill/autofill_regexes.cc',
'browser/autofill/autofill_regexes.h',
'browser/autofill/autofill_scanner.cc',
@@ -3843,7 +3845,23 @@
'<(grit_out_dir)/grit/theme_resources_map.cc',
'<(grit_out_dir)/grit/theme_resources_large_map.cc',
'<(grit_out_dir)/grit/theme_resources_standard_map.cc',
+
+ # This file is generated by the autofill_regexes action.
+ '<(INTERMEDIATE_DIR)/autofill_regex_constants.cc',
],
+ 'actions': [{
+ 'action_name': 'autofill_regexes',
+ 'inputs': [
+ '<(DEPTH)/build/escape_unicode.py',
+ 'browser/autofill/autofill_regex_constants.cc.utf8',
+ ],
+ 'outputs': [
+ '<(INTERMEDIATE_DIR)/autofill_regex_constants.cc',
+ ],
+ 'action': ['python', '<(DEPTH)/build/escape_unicode.py',
+ '-o', '<(INTERMEDIATE_DIR)',
+ 'browser/autofill/autofill_regex_constants.cc.utf8'],
+ }],
'conditions': [
['debug_devtools==1', {
'defines': [
« no previous file with comments | « chrome/browser/autofill/regular_expressions.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698