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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 'browser/autofill/autofill_field.cc', 145 'browser/autofill/autofill_field.cc',
146 'browser/autofill/autofill_field.h', 146 'browser/autofill/autofill_field.h',
147 'browser/autofill/autofill_ie_toolbar_import_win.cc', 147 'browser/autofill/autofill_ie_toolbar_import_win.cc',
148 'browser/autofill/autofill_ie_toolbar_import_win.h', 148 'browser/autofill/autofill_ie_toolbar_import_win.h',
149 'browser/autofill/autofill_manager.cc', 149 'browser/autofill/autofill_manager.cc',
150 'browser/autofill/autofill_manager.h', 150 'browser/autofill/autofill_manager.h',
151 'browser/autofill/autofill_metrics.cc', 151 'browser/autofill/autofill_metrics.cc',
152 'browser/autofill/autofill_metrics.h', 152 'browser/autofill/autofill_metrics.h',
153 'browser/autofill/autofill_profile.cc', 153 'browser/autofill/autofill_profile.cc',
154 'browser/autofill/autofill_profile.h', 154 'browser/autofill/autofill_profile.h',
155 'browser/autofill/autofill_regex_constants.cc.utf8',
156 'browser/autofill/autofill_regex_constants.h',
155 'browser/autofill/autofill_regexes.cc', 157 'browser/autofill/autofill_regexes.cc',
156 'browser/autofill/autofill_regexes.h', 158 'browser/autofill/autofill_regexes.h',
157 'browser/autofill/autofill_scanner.cc', 159 'browser/autofill/autofill_scanner.cc',
158 'browser/autofill/autofill_scanner.h', 160 'browser/autofill/autofill_scanner.h',
159 'browser/autofill/autofill_type.cc', 161 'browser/autofill/autofill_type.cc',
160 'browser/autofill/autofill_type.h', 162 'browser/autofill/autofill_type.h',
161 'browser/autofill/autofill_xml_parser.cc', 163 'browser/autofill/autofill_xml_parser.cc',
162 'browser/autofill/autofill_xml_parser.h', 164 'browser/autofill/autofill_xml_parser.h',
163 'browser/autofill/contact_info.cc', 165 'browser/autofill/contact_info.cc',
164 'browser/autofill/contact_info.h', 166 'browser/autofill/contact_info.h',
(...skipping 3671 matching lines...) Expand 10 before | Expand all | Expand 10 after
3836 'browser/webdata/web_intents_table.h', 3838 'browser/webdata/web_intents_table.h',
3837 3839
3838 # These files are generated by GRIT. 3840 # These files are generated by GRIT.
3839 '<(grit_out_dir)/grit/component_extension_resources_map.cc', 3841 '<(grit_out_dir)/grit/component_extension_resources_map.cc',
3840 '<(grit_out_dir)/grit/devtools_frontend_resources_map.cc', 3842 '<(grit_out_dir)/grit/devtools_frontend_resources_map.cc',
3841 '<(grit_out_dir)/grit/devtools_resources_map.cc', 3843 '<(grit_out_dir)/grit/devtools_resources_map.cc',
3842 '<(grit_out_dir)/grit/shared_resources_map.cc', 3844 '<(grit_out_dir)/grit/shared_resources_map.cc',
3843 '<(grit_out_dir)/grit/theme_resources_map.cc', 3845 '<(grit_out_dir)/grit/theme_resources_map.cc',
3844 '<(grit_out_dir)/grit/theme_resources_large_map.cc', 3846 '<(grit_out_dir)/grit/theme_resources_large_map.cc',
3845 '<(grit_out_dir)/grit/theme_resources_standard_map.cc', 3847 '<(grit_out_dir)/grit/theme_resources_standard_map.cc',
3848
3849 # This file is generated by the autofill_regexes action.
3850 '<(INTERMEDIATE_DIR)/autofill_regex_constants.cc',
3846 ], 3851 ],
3852 'actions': [{
3853 'action_name': 'autofill_regexes',
3854 'inputs': [
3855 '<(DEPTH)/build/escape_unicode.py',
3856 'browser/autofill/autofill_regex_constants.cc.utf8',
3857 ],
3858 'outputs': [
3859 '<(INTERMEDIATE_DIR)/autofill_regex_constants.cc',
3860 ],
3861 'action': ['python', '<(DEPTH)/build/escape_unicode.py',
3862 '-o', '<(INTERMEDIATE_DIR)',
3863 'browser/autofill/autofill_regex_constants.cc.utf8'],
3864 }],
3847 'conditions': [ 3865 'conditions': [
3848 ['debug_devtools==1', { 3866 ['debug_devtools==1', {
3849 'defines': [ 3867 'defines': [
3850 'DEBUG_DEVTOOLS=1', 3868 'DEBUG_DEVTOOLS=1',
3851 ], 3869 ],
3852 }], 3870 }],
3853 ['configuration_policy==0', { 3871 ['configuration_policy==0', {
3854 'sources!': [ 3872 'sources!': [
3855 'browser/ui/webui/options/options_managed_banner_handler.cc', 3873 'browser/ui/webui/options/options_managed_banner_handler.cc',
3856 ], 3874 ],
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
4104 ['webui_dialogs == 1', { 4122 ['webui_dialogs == 1', {
4105 'sources/': [ 4123 'sources/': [
4106 ['exclude', '^browser/ui/gtk/certificate_viewer.cc'], 4124 ['exclude', '^browser/ui/gtk/certificate_viewer.cc'],
4107 ['exclude', '^browser/ui/gtk/certificate_viewer.h'], 4125 ['exclude', '^browser/ui/gtk/certificate_viewer.h'],
4108 ['exclude', '^browser/ui/gtk/hung_renderer_dialog_gtk.cc'], 4126 ['exclude', '^browser/ui/gtk/hung_renderer_dialog_gtk.cc'],
4109 ['exclude', '^browser/ui/gtk/hung_renderer_dialog_gtk.h'], 4127 ['exclude', '^browser/ui/gtk/hung_renderer_dialog_gtk.h'],
4110 ], 4128 ],
4111 }], 4129 }],
4112 ['toolkit_uses_gtk == 1', { 4130 ['toolkit_uses_gtk == 1', {
4113 'dependencies': [ 4131 'dependencies': [
4132 '../build/linux/system.gyp:dbus-glib',
4114 '../build/linux/system.gyp:gconf', 4133 '../build/linux/system.gyp:gconf',
4115 '../build/linux/system.gyp:gtk', 4134 '../build/linux/system.gyp:gtk',
4116 '../build/linux/system.gyp:gtkprint', 4135 '../build/linux/system.gyp:gtkprint',
4117 '../build/linux/system.gyp:ssl', 4136 '../build/linux/system.gyp:ssl',
4118 '../build/linux/system.gyp:x11', 4137 '../build/linux/system.gyp:x11',
4119 '../third_party/undoview/undoview.gyp:undoview', 4138 '../third_party/undoview/undoview.gyp:undoview',
4120 ], 4139 ],
4121 'link_settings': { 4140 'link_settings': {
4122 'libraries': [ 4141 'libraries': [
4123 # For dlsym() in 'browser/zygote_main_linux.cc' 4142 # For dlsym() in 'browser/zygote_main_linux.cc'
(...skipping 926 matching lines...) Expand 10 before | Expand all | Expand 10 after
5050 # weak imports in dependents, who still must #include 5069 # weak imports in dependents, who still must #include
5051 # closure_blocks_leopard_compat.h to get weak imports. 5070 # closure_blocks_leopard_compat.h to get weak imports.
5052 'type': 'none', 5071 'type': 'none',
5053 }], 5072 }],
5054 ], 5073 ],
5055 }, 5074 },
5056 ], 5075 ],
5057 }], 5076 }],
5058 ], 5077 ],
5059 } 5078 }
OLDNEW
« 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