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

Side by Side Diff: components/autofill.gypi

Issue 2026353002: [Autofill] Credit Card Assist Infobar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bool fix Created 4 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
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',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'sources': [ 102 'sources': [
103 'autofill/core/browser/address.cc', 103 'autofill/core/browser/address.cc',
104 'autofill/core/browser/address.h', 104 'autofill/core/browser/address.h',
105 'autofill/core/browser/address_field.cc', 105 'autofill/core/browser/address_field.cc',
106 'autofill/core/browser/address_field.h', 106 'autofill/core/browser/address_field.h',
107 'autofill/core/browser/address_i18n.cc', 107 'autofill/core/browser/address_i18n.cc',
108 'autofill/core/browser/address_i18n.h', 108 'autofill/core/browser/address_i18n.h',
109 'autofill/core/browser/address_rewriter.cc', 109 'autofill/core/browser/address_rewriter.cc',
110 'autofill/core/browser/address_rewriter.h', 110 'autofill/core/browser/address_rewriter.h',
111 'autofill/core/browser/address_rewriter_rules.cc', 111 'autofill/core/browser/address_rewriter_rules.cc',
112 'autofill/core/browser/assist_manager.cc',
113 'autofill/core/browser/assist_manager.h',
112 'autofill/core/browser/autocomplete_history_manager.cc', 114 'autofill/core/browser/autocomplete_history_manager.cc',
113 'autofill/core/browser/autocomplete_history_manager.h', 115 'autofill/core/browser/autocomplete_history_manager.h',
114 'autofill/core/browser/autofill-inl.h', 116 'autofill/core/browser/autofill-inl.h',
115 'autofill/core/browser/autofill_client.h', 117 'autofill/core/browser/autofill_client.h',
116 'autofill/core/browser/autofill_country.cc', 118 'autofill/core/browser/autofill_country.cc',
117 'autofill/core/browser/autofill_country.h', 119 'autofill/core/browser/autofill_country.h',
118 'autofill/core/browser/autofill_data_model.cc', 120 'autofill/core/browser/autofill_data_model.cc',
119 'autofill/core/browser/autofill_data_model.h', 121 'autofill/core/browser/autofill_data_model.h',
120 'autofill/core/browser/autofill_data_util.cc', 122 'autofill/core/browser/autofill_data_util.cc',
121 'autofill/core/browser/autofill_data_util.h', 123 'autofill/core/browser/autofill_data_util.h',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 251
250 'conditions': [ 252 'conditions': [
251 ['OS=="ios"', { 253 ['OS=="ios"', {
252 'sources': [ 254 'sources': [
253 'autofill/core/browser/keyboard_accessory_metrics_logger.h', 255 'autofill/core/browser/keyboard_accessory_metrics_logger.h',
254 'autofill/core/browser/keyboard_accessory_metrics_logger.mm', 256 'autofill/core/browser/keyboard_accessory_metrics_logger.mm',
255 ], 257 ],
256 }], 258 }],
257 ['OS=="ios" or OS=="android"', { 259 ['OS=="ios" or OS=="android"', {
258 'sources': [ 260 'sources': [
261 'autofill/core/browser/autofill_assist_infobar_delegate_mobile.cc',
262 'autofill/core/browser/autofill_assist_infobar_delegate_mobile.h',
263 'autofill/core/browser/autofill_assist_infobar_mobile.h',
please use gerrit instead 2016/07/29 16:33:20 These sources are not yet used on iOS. Is it wise
Mathieu 2016/07/29 20:19:17 Moved to android only block along with assist_mana
259 'autofill/core/browser/autofill_save_card_infobar_delegate_mobile.cc ', 264 'autofill/core/browser/autofill_save_card_infobar_delegate_mobile.cc ',
260 'autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h' , 265 'autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h' ,
261 'autofill/core/browser/autofill_save_card_infobar_mobile.h', 266 'autofill/core/browser/autofill_save_card_infobar_mobile.h',
262 ], 267 ],
263 }] 268 }]
264 ], 269 ],
265 }, 270 },
266 271
267 { 272 {
268 # Protobuf compiler / generate rule for Autofill's server proto. 273 # Protobuf compiler / generate rule for Autofill's server proto.
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 ], 654 ],
650 }, 655 },
651 'includes': [ 656 'includes': [
652 '../ios/web/js_compile_checked.gypi', 657 '../ios/web/js_compile_checked.gypi',
653 ], 658 ],
654 }, 659 },
655 ], 660 ],
656 }], 661 }],
657 ], 662 ],
658 } 663 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698