| OLD | NEW |
| 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 ['OS == "ios"', { | 468 ['OS == "ios"', { |
| 469 'targets': [ | 469 'targets': [ |
| 470 { | 470 { |
| 471 'target_name': 'autofill_ios_browser', | 471 'target_name': 'autofill_ios_browser', |
| 472 'type': 'static_library', | 472 'type': 'static_library', |
| 473 'include_dirs': [ | 473 'include_dirs': [ |
| 474 '..', | 474 '..', |
| 475 ], | 475 ], |
| 476 'dependencies': [ | 476 'dependencies': [ |
| 477 'autofill_core_browser', | 477 'autofill_core_browser', |
| 478 'autofill_core_common', |
| 479 'autofill_ios_injected_js', |
| 478 '../ios/provider/ios_provider_web.gyp:ios_provider_web', | 480 '../ios/provider/ios_provider_web.gyp:ios_provider_web', |
| 479 '../ios/web/ios_web.gyp:ios_web', | 481 '../ios/web/ios_web.gyp:ios_web', |
| 480 ], | 482 ], |
| 481 'sources': [ | 483 'sources': [ |
| 482 'autofill/ios/browser/autofill_driver_ios.h', | 484 'autofill/ios/browser/autofill_driver_ios.h', |
| 483 'autofill/ios/browser/autofill_driver_ios.mm', | 485 'autofill/ios/browser/autofill_driver_ios.mm', |
| 484 'autofill/ios/browser/autofill_driver_ios_bridge.h', | 486 'autofill/ios/browser/autofill_driver_ios_bridge.h', |
| 487 'autofill/ios/browser/form_suggestion.h', |
| 488 'autofill/ios/browser/form_suggestion.mm', |
| 489 'autofill/ios/browser/js_autofill_manager.h', |
| 490 'autofill/ios/browser/js_autofill_manager.mm', |
| 491 'autofill/ios/browser/js_suggestion_manager.h', |
| 492 'autofill/ios/browser/js_suggestion_manager.mm', |
| 493 ], |
| 494 }, |
| 495 { |
| 496 'target_name': 'autofill_ios_injected_js', |
| 497 'type': 'none', |
| 498 'sources': [ |
| 499 'autofill/ios/browser/resources/autofill_controller.js', |
| 500 'autofill/ios/browser/resources/suggestion_controller.js', |
| 501 ], |
| 502 'link_settings': { |
| 503 'mac_bundle_resources': [ |
| 504 '<(SHARED_INTERMEDIATE_DIR)/autofill_controller.js', |
| 505 '<(SHARED_INTERMEDIATE_DIR)/suggestion_controller.js', |
| 506 ], |
| 507 }, |
| 508 'includes': [ |
| 509 '../ios/web/js_compile.gypi', |
| 485 ], | 510 ], |
| 486 }, | 511 }, |
| 487 ], | 512 ], |
| 488 }], | 513 }], |
| 489 ], | 514 ], |
| 490 } | 515 } |
| OLD | NEW |