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

Side by Side Diff: components/autofill.gypi

Issue 1081803003: Limit form-less Autofilling to pages that look like checkout pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 8 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # GN version: //components/autofill/core/common 8 # GN version: //components/autofill/core/common
9 'target_name': 'autofill_core_common', 9 'target_name': 'autofill_core_common',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../base/base.gyp:base_i18n', 13 '../base/base.gyp:base_i18n',
14 '../ui/base/ui_base.gyp:ui_base', 14 '../ui/base/ui_base.gyp:ui_base',
15 '../ui/gfx/gfx.gyp:gfx', 15 '../ui/gfx/gfx.gyp:gfx',
16 '../url/url.gyp:url_lib', 16 '../url/url.gyp:url_lib',
17 ], 17 ],
18 'include_dirs': [ 18 'include_dirs': [
19 '..', 19 '..',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'autofill/core/common/autofill_constants.cc', 22 'autofill/core/common/autofill_constants.cc',
23 'autofill/core/common/autofill_constants.h', 23 'autofill/core/common/autofill_constants.h',
24 'autofill/core/common/autofill_data_validation.cc', 24 'autofill/core/common/autofill_data_validation.cc',
25 'autofill/core/common/autofill_data_validation.h', 25 'autofill/core/common/autofill_data_validation.h',
26 'autofill/core/common/autofill_l10n_util.cc', 26 'autofill/core/common/autofill_l10n_util.cc',
27 'autofill/core/common/autofill_l10n_util.h', 27 'autofill/core/common/autofill_l10n_util.h',
28 'autofill/core/common/autofill_pref_names.cc', 28 'autofill/core/common/autofill_pref_names.cc',
29 'autofill/core/common/autofill_pref_names.h', 29 'autofill/core/common/autofill_pref_names.h',
30 'autofill/core/common/autofill_regexes.cc',
31 'autofill/core/common/autofill_regexes.h',
30 'autofill/core/common/autofill_switches.cc', 32 'autofill/core/common/autofill_switches.cc',
31 'autofill/core/common/autofill_switches.h', 33 'autofill/core/common/autofill_switches.h',
32 'autofill/core/common/form_data.cc', 34 'autofill/core/common/form_data.cc',
33 'autofill/core/common/form_data.h', 35 'autofill/core/common/form_data.h',
34 'autofill/core/common/form_data_predictions.cc', 36 'autofill/core/common/form_data_predictions.cc',
35 'autofill/core/common/form_data_predictions.h', 37 'autofill/core/common/form_data_predictions.h',
36 'autofill/core/common/form_field_data.cc', 38 'autofill/core/common/form_field_data.cc',
37 'autofill/core/common/form_field_data.h', 39 'autofill/core/common/form_field_data.h',
38 'autofill/core/common/form_field_data_predictions.cc', 40 'autofill/core/common/form_field_data_predictions.cc',
39 'autofill/core/common/form_field_data_predictions.h', 41 'autofill/core/common/form_field_data_predictions.h',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'autofill/core/browser/autofill_manager.cc', 121 'autofill/core/browser/autofill_manager.cc',
120 'autofill/core/browser/autofill_manager.h', 122 'autofill/core/browser/autofill_manager.h',
121 'autofill/core/browser/autofill_manager_test_delegate.h', 123 'autofill/core/browser/autofill_manager_test_delegate.h',
122 'autofill/core/browser/autofill_metrics.cc', 124 'autofill/core/browser/autofill_metrics.cc',
123 'autofill/core/browser/autofill_metrics.h', 125 'autofill/core/browser/autofill_metrics.h',
124 'autofill/core/browser/autofill_popup_delegate.h', 126 'autofill/core/browser/autofill_popup_delegate.h',
125 'autofill/core/browser/autofill_profile.cc', 127 'autofill/core/browser/autofill_profile.cc',
126 'autofill/core/browser/autofill_profile.h', 128 'autofill/core/browser/autofill_profile.h',
127 'autofill/core/browser/autofill_regex_constants.cc', 129 'autofill/core/browser/autofill_regex_constants.cc',
128 'autofill/core/browser/autofill_regex_constants.h', 130 'autofill/core/browser/autofill_regex_constants.h',
129 'autofill/core/browser/autofill_regexes.cc',
130 'autofill/core/browser/autofill_regexes.h',
131 'autofill/core/browser/autofill_scanner.cc', 131 'autofill/core/browser/autofill_scanner.cc',
132 'autofill/core/browser/autofill_scanner.h', 132 'autofill/core/browser/autofill_scanner.h',
133 'autofill/core/browser/autofill_server_field_info.h', 133 'autofill/core/browser/autofill_server_field_info.h',
134 'autofill/core/browser/autofill_sync_constants.cc', 134 'autofill/core/browser/autofill_sync_constants.cc',
135 'autofill/core/browser/autofill_sync_constants.h', 135 'autofill/core/browser/autofill_sync_constants.h',
136 'autofill/core/browser/autofill_type.cc', 136 'autofill/core/browser/autofill_type.cc',
137 'autofill/core/browser/autofill_type.h', 137 'autofill/core/browser/autofill_type.h',
138 'autofill/core/browser/autofill_xml_parser.cc', 138 'autofill/core/browser/autofill_xml_parser.cc',
139 'autofill/core/browser/autofill_xml_parser.h', 139 'autofill/core/browser/autofill_xml_parser.h',
140 'autofill/core/browser/card_unmask_delegate.cc', 140 'autofill/core/browser/card_unmask_delegate.cc',
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 ], 465 ],
466 }, 466 },
467 'includes': [ 467 'includes': [
468 '../ios/web/js_compile.gypi', 468 '../ios/web/js_compile.gypi',
469 ], 469 ],
470 }, 470 },
471 ], 471 ],
472 }], 472 }],
473 ], 473 ],
474 } 474 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698