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

Side by Side Diff: components/autofill.gypi

Issue 964443002: Upstream iOS autofill driver implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add jdonnelly as OWNERS of //components/autofill/ios Created 5 years, 9 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 | « no previous file | components/autofill/ios/DEPS » ('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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 'autofill/content/renderer/password_generation_agent.cc', 452 'autofill/content/renderer/password_generation_agent.cc',
453 'autofill/content/renderer/password_generation_agent.h', 453 'autofill/content/renderer/password_generation_agent.h',
454 'autofill/content/renderer/renderer_save_password_progress_logger.cc ', 454 'autofill/content/renderer/renderer_save_password_progress_logger.cc ',
455 'autofill/content/renderer/renderer_save_password_progress_logger.h' , 455 'autofill/content/renderer/renderer_save_password_progress_logger.h' ,
456 ], 456 ],
457 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 457 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
458 'msvs_disabled_warnings': [4267, ], 458 'msvs_disabled_warnings': [4267, ],
459 }, 459 },
460 ], 460 ],
461 }], 461 }],
462 ['OS == "ios"', {
463 'targets': [
464 {
465 'target_name': 'autofill_ios_browser',
466 'type': 'static_library',
467 'include_dirs': [
468 '..',
469 ],
470 'dependencies': [
471 'autofill_core_browser',
472 '../ios/provider/ios_provider_web.gyp:ios_provider_web',
473 '../ios/web/ios_web.gyp:ios_web',
474 ],
475 'sources': [
476 'autofill/ios/browser/autofill_driver_ios.h',
477 'autofill/ios/browser/autofill_driver_ios.mm',
478 'autofill/ios/browser/autofill_driver_ios_bridge.h',
479 ],
480 },
481 ],
482 }],
462 ], 483 ],
463 } 484 }
OLDNEW
« no previous file with comments | « no previous file | components/autofill/ios/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698