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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 10837363: Introduce AutofillClient and use it to get rid of PasswordManager dependency. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser', 9 'target_name': 'browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 'browser/autocomplete/search_provider.cc', 180 'browser/autocomplete/search_provider.cc',
181 'browser/autocomplete/search_provider.h', 181 'browser/autocomplete/search_provider.h',
182 'browser/autocomplete/shortcuts_provider.cc', 182 'browser/autocomplete/shortcuts_provider.cc',
183 'browser/autocomplete/shortcuts_provider.h', 183 'browser/autocomplete/shortcuts_provider.h',
184 'browser/autocomplete/url_prefix.cc', 184 'browser/autocomplete/url_prefix.cc',
185 'browser/autocomplete/url_prefix.h', 185 'browser/autocomplete/url_prefix.h',
186 'browser/autofill/address.cc', 186 'browser/autofill/address.cc',
187 'browser/autofill/address.h', 187 'browser/autofill/address.h',
188 'browser/autofill/address_field.cc', 188 'browser/autofill/address_field.cc',
189 'browser/autofill/address_field.h', 189 'browser/autofill/address_field.h',
190 'browser/autofill/api/autofill_client.h',
190 'browser/autofill/autocomplete_history_manager.cc', 191 'browser/autofill/autocomplete_history_manager.cc',
191 'browser/autofill/autocomplete_history_manager.h', 192 'browser/autofill/autocomplete_history_manager.h',
192 'browser/autofill/autofill-inl.h', 193 'browser/autofill/autofill-inl.h',
193 'browser/autofill/autofill_cc_infobar_delegate.cc', 194 'browser/autofill/autofill_cc_infobar_delegate.cc',
194 'browser/autofill/autofill_cc_infobar_delegate.h', 195 'browser/autofill/autofill_cc_infobar_delegate.h',
195 'browser/autofill/autofill_country.cc', 196 'browser/autofill/autofill_country.cc',
196 'browser/autofill/autofill_country.h', 197 'browser/autofill/autofill_country.h',
197 'browser/autofill/autofill_download.cc', 198 'browser/autofill/autofill_download.cc',
198 'browser/autofill/autofill_download.h', 199 'browser/autofill/autofill_download.h',
199 'browser/autofill/autofill_external_delegate.cc', 200 'browser/autofill/autofill_external_delegate.cc',
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 'browser/captive_portal/captive_portal_tab_helper.cc', 408 'browser/captive_portal/captive_portal_tab_helper.cc',
408 'browser/captive_portal/captive_portal_tab_helper.h', 409 'browser/captive_portal/captive_portal_tab_helper.h',
409 'browser/captive_portal/captive_portal_tab_reloader.cc', 410 'browser/captive_portal/captive_portal_tab_reloader.cc',
410 'browser/captive_portal/captive_portal_tab_reloader.h', 411 'browser/captive_portal/captive_portal_tab_reloader.h',
411 'browser/certificate_manager_model.cc', 412 'browser/certificate_manager_model.cc',
412 'browser/certificate_manager_model.h', 413 'browser/certificate_manager_model.h',
413 'browser/certificate_viewer.cc', 414 'browser/certificate_viewer.cc',
414 'browser/certificate_viewer.h', 415 'browser/certificate_viewer.h',
415 'browser/character_encoding.cc', 416 'browser/character_encoding.cc',
416 'browser/character_encoding.h', 417 'browser/character_encoding.h',
418 'browser/chrome_autofill_client.cc',
419 'browser/chrome_autofill_client.h',
417 'browser/chrome_benchmarking_message_filter.cc', 420 'browser/chrome_benchmarking_message_filter.cc',
418 'browser/chrome_benchmarking_message_filter.h', 421 'browser/chrome_benchmarking_message_filter.h',
419 'browser/chrome_browser_application_mac.h', 422 'browser/chrome_browser_application_mac.h',
420 'browser/chrome_browser_application_mac.mm', 423 'browser/chrome_browser_application_mac.mm',
421 'browser/chrome_browser_field_trials.cc', 424 'browser/chrome_browser_field_trials.cc',
422 'browser/chrome_browser_field_trials.h', 425 'browser/chrome_browser_field_trials.h',
423 'browser/chrome_browser_main.cc', 426 'browser/chrome_browser_main.cc',
424 'browser/chrome_browser_main.h', 427 'browser/chrome_browser_main.h',
425 'browser/chrome_browser_main_android.cc', 428 'browser/chrome_browser_main_android.cc',
426 'browser/chrome_browser_main_android.h', 429 'browser/chrome_browser_main_android.h',
(...skipping 5185 matching lines...) Expand 10 before | Expand all | Expand 10 after
5612 'includes': [ '../build/jni_generator.gypi' ], 5615 'includes': [ '../build/jni_generator.gypi' ],
5613 'dependencies': [ 5616 'dependencies': [
5614 'android_jar_jni_headers', 5617 'android_jar_jni_headers',
5615 ], 5618 ],
5616 }, 5619 },
5617 ], 5620 ],
5618 }, 5621 },
5619 ], 5622 ],
5620 ], 5623 ],
5621 } 5624 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698