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

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: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/autofill/regular_expressions.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after
5050 # weak imports in dependents, who still must #include 5068 # weak imports in dependents, who still must #include
5051 # closure_blocks_leopard_compat.h to get weak imports. 5069 # closure_blocks_leopard_compat.h to get weak imports.
5052 'type': 'none', 5070 'type': 'none',
5053 }], 5071 }],
5054 ], 5072 ],
5055 }, 5073 },
5056 ], 5074 ],
5057 }], 5075 }],
5058 ], 5076 ],
5059 } 5077 }
OLDNEW
« 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