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

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: Addresses Peter's input over use of WeakPtr<>. Created 5 years, 12 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 # 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 'autofill/content/renderer/renderer_save_password_progress_logger.cc ', 455 'autofill/content/renderer/renderer_save_password_progress_logger.cc ',
453 'autofill/content/renderer/renderer_save_password_progress_logger.h' , 456 'autofill/content/renderer/renderer_save_password_progress_logger.h' ,
454 ], 457 ],
455 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 458 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
456 'msvs_disabled_warnings': [4267, ], 459 'msvs_disabled_warnings': [4267, ],
457 }, 460 },
458 ], 461 ],
459 }], 462 }],
460 ], 463 ],
461 } 464 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698