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

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: rebase 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
Index: chrome/chrome_browser.gypi
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi
index a57476469bcd76b12d118f8167facdf2f850620f..271f5278ea278f23f99d3afdc0d8da69a5e4c76c 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': [
@@ -4111,6 +4129,7 @@
}],
['toolkit_uses_gtk == 1', {
'dependencies': [
+ '../build/linux/system.gyp:dbus-glib',
'../build/linux/system.gyp:gconf',
'../build/linux/system.gyp:gtk',
'../build/linux/system.gyp:gtkprint',
« chrome/browser/autofill/address_field.cc ('K') | « chrome/browser/autofill/regular_expressions.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698