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

Side by Side Diff: components/autofill.gypi

Issue 710453002: [Autofill] Componentize AutofillCCInfoBarDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed breakages on Android port. Created 5 years, 11 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/autofill/core/browser/BUILD.gn » ('j') | 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) 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 # Private target only used in components/autofill. 8 # Private target only used in components/autofill.
9 # GN version: //components/autofill/core/browser:regexes 9 # GN version: //components/autofill/core/browser:regexes
10 'target_name': 'autofill_regexes', 10 'target_name': 'autofill_regexes',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_util ', 90 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_util ',
91 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 91 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
92 '../ui/base/ui_base.gyp:ui_base', 92 '../ui/base/ui_base.gyp:ui_base',
93 '../ui/gfx/gfx.gyp:gfx', 93 '../ui/gfx/gfx.gyp:gfx',
94 '../ui/gfx/gfx.gyp:gfx_geometry', 94 '../ui/gfx/gfx.gyp:gfx_geometry',
95 '../url/url.gyp:url_lib', 95 '../url/url.gyp:url_lib',
96 'autofill_core_common', 96 'autofill_core_common',
97 'autofill_regexes', 97 'autofill_regexes',
98 'components_resources.gyp:components_resources', 98 'components_resources.gyp:components_resources',
99 'components_strings.gyp:components_strings', 99 'components_strings.gyp:components_strings',
100 'infobars_core',
100 'keyed_service_core', 101 'keyed_service_core',
101 'os_crypt', 102 'os_crypt',
102 'pref_registry', 103 'pref_registry',
103 'webdata_common', 104 'webdata_common',
104 ], 105 ],
105 'sources': [ 106 'sources': [
106 'autofill/core/browser/address.cc', 107 'autofill/core/browser/address.cc',
107 'autofill/core/browser/address.h', 108 'autofill/core/browser/address.h',
108 'autofill/core/browser/address_field.cc', 109 'autofill/core/browser/address_field.cc',
109 'autofill/core/browser/address_field.h', 110 'autofill/core/browser/address_field.h',
110 'autofill/core/browser/address_i18n.cc', 111 'autofill/core/browser/address_i18n.cc',
111 'autofill/core/browser/address_i18n.h', 112 'autofill/core/browser/address_i18n.h',
112 'autofill/core/browser/autocomplete_history_manager.cc', 113 'autofill/core/browser/autocomplete_history_manager.cc',
113 'autofill/core/browser/autocomplete_history_manager.h', 114 'autofill/core/browser/autocomplete_history_manager.h',
114 'autofill/core/browser/autofill-inl.h', 115 'autofill/core/browser/autofill-inl.h',
116 'autofill/core/browser/autofill_cc_infobar_delegate.cc',
117 'autofill/core/browser/autofill_cc_infobar_delegate.h',
115 'autofill/core/browser/autofill_country.cc', 118 'autofill/core/browser/autofill_country.cc',
116 'autofill/core/browser/autofill_country.h', 119 'autofill/core/browser/autofill_country.h',
117 'autofill/core/browser/autofill_data_model.cc', 120 'autofill/core/browser/autofill_data_model.cc',
118 'autofill/core/browser/autofill_data_model.h', 121 'autofill/core/browser/autofill_data_model.h',
119 'autofill/core/browser/autofill_download_manager.cc', 122 'autofill/core/browser/autofill_download_manager.cc',
120 'autofill/core/browser/autofill_download_manager.h', 123 'autofill/core/browser/autofill_download_manager.h',
121 'autofill/core/browser/autofill_driver.h', 124 'autofill/core/browser/autofill_driver.h',
122 'autofill/core/browser/autofill_external_delegate.cc', 125 'autofill/core/browser/autofill_external_delegate.cc',
123 'autofill/core/browser/autofill_external_delegate.h', 126 'autofill/core/browser/autofill_external_delegate.h',
124 'autofill/core/browser/autofill_field.cc', 127 'autofill/core/browser/autofill_field.cc',
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 'autofill/content/renderer/renderer_save_password_progress_logger.cc ', 456 'autofill/content/renderer/renderer_save_password_progress_logger.cc ',
454 'autofill/content/renderer/renderer_save_password_progress_logger.h' , 457 'autofill/content/renderer/renderer_save_password_progress_logger.h' ,
455 ], 458 ],
456 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 459 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
457 'msvs_disabled_warnings': [4267, ], 460 'msvs_disabled_warnings': [4267, ],
458 }, 461 },
459 ], 462 ],
460 }], 463 }],
461 ], 464 ],
462 } 465 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/autofill/core/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698