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

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: addressed more comments 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 'autofill_server_proto', 247 'autofill_server_proto',
248 ], 248 ],
249 249
250 'conditions': [ 250 'conditions': [
251 ['OS=="ios"', { 251 ['OS=="ios"', {
252 'sources': [ 252 'sources': [
253 'autofill/core/browser/keyboard_accessory_metrics_logger.h', 253 'autofill/core/browser/keyboard_accessory_metrics_logger.h',
254 'autofill/core/browser/keyboard_accessory_metrics_logger.mm', 254 'autofill/core/browser/keyboard_accessory_metrics_logger.mm',
255 ], 255 ],
256 }], 256 }],
257 ['OS=="android"', {
258 'sources': [
259 'autofill/core/browser/assist_manager.cc',
260 'autofill/core/browser/assist_manager.h',
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',
264 ],
265 }],
257 ['OS=="ios" or OS=="android"', { 266 ['OS=="ios" or OS=="android"', {
258 'sources': [ 267 'sources': [
268
259 'autofill/core/browser/autofill_save_card_infobar_delegate_mobile.cc ', 269 'autofill/core/browser/autofill_save_card_infobar_delegate_mobile.cc ',
260 'autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h' , 270 'autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h' ,
261 'autofill/core/browser/autofill_save_card_infobar_mobile.h', 271 'autofill/core/browser/autofill_save_card_infobar_mobile.h',
262 ], 272 ],
263 }] 273 }]
264 ], 274 ],
265 }, 275 },
266 276
267 { 277 {
268 # Protobuf compiler / generate rule for Autofill's server proto. 278 # Protobuf compiler / generate rule for Autofill's server proto.
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 ], 659 ],
650 }, 660 },
651 'includes': [ 661 'includes': [
652 '../ios/web/js_compile_checked.gypi', 662 '../ios/web/js_compile_checked.gypi',
653 ], 663 ],
654 }, 664 },
655 ], 665 ],
656 }], 666 }],
657 ], 667 ],
658 } 668 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698