| 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 # 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', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../base/base.gyp:base_i18n', | 13 '../base/base.gyp:base_i18n', |
| 14 '../ui/base/ui_base.gyp:ui_base', | 14 '../ui/base/ui_base.gyp:ui_base', |
| 15 '../ui/gfx/gfx.gyp:gfx', | 15 '../ui/gfx/gfx.gyp:gfx', |
| 16 '../url/url.gyp:url_lib', | 16 '../url/url.gyp:url_lib', |
| 17 ], | 17 ], |
| 18 'include_dirs': [ | 18 'include_dirs': [ |
| 19 '..', | 19 '..', |
| 20 ], | 20 ], |
| 21 'sources': [ | 21 'sources': [ |
| 22 'autofill/core/common/autofill_constants.cc', | 22 'autofill/core/common/autofill_constants.cc', |
| 23 'autofill/core/common/autofill_constants.h', | 23 'autofill/core/common/autofill_constants.h', |
| 24 'autofill/core/common/autofill_data_validation.cc', | 24 'autofill/core/common/autofill_data_validation.cc', |
| 25 'autofill/core/common/autofill_data_validation.h', | 25 'autofill/core/common/autofill_data_validation.h', |
| 26 'autofill/core/common/autofill_l10n_util.cc', | 26 'autofill/core/common/autofill_l10n_util.cc', |
| 27 'autofill/core/common/autofill_l10n_util.h', | 27 'autofill/core/common/autofill_l10n_util.h', |
| 28 'autofill/core/common/autofill_pref_names.cc', | 28 'autofill/core/common/autofill_pref_names.cc', |
| 29 'autofill/core/common/autofill_pref_names.h', | 29 'autofill/core/common/autofill_pref_names.h', |
| 30 'autofill/core/common/autofill_regexes.cc', |
| 31 'autofill/core/common/autofill_regexes.h', |
| 30 'autofill/core/common/autofill_switches.cc', | 32 'autofill/core/common/autofill_switches.cc', |
| 31 'autofill/core/common/autofill_switches.h', | 33 'autofill/core/common/autofill_switches.h', |
| 32 'autofill/core/common/form_data.cc', | 34 'autofill/core/common/form_data.cc', |
| 33 'autofill/core/common/form_data.h', | 35 'autofill/core/common/form_data.h', |
| 34 'autofill/core/common/form_data_predictions.cc', | 36 'autofill/core/common/form_data_predictions.cc', |
| 35 'autofill/core/common/form_data_predictions.h', | 37 'autofill/core/common/form_data_predictions.h', |
| 36 'autofill/core/common/form_field_data.cc', | 38 'autofill/core/common/form_field_data.cc', |
| 37 'autofill/core/common/form_field_data.h', | 39 'autofill/core/common/form_field_data.h', |
| 38 'autofill/core/common/form_field_data_predictions.cc', | 40 'autofill/core/common/form_field_data_predictions.cc', |
| 39 'autofill/core/common/form_field_data_predictions.h', | 41 'autofill/core/common/form_field_data_predictions.h', |
| 40 'autofill/core/common/password_form.cc', | 42 'autofill/core/common/password_form.cc', |
| 41 'autofill/core/common/password_form.h', | 43 'autofill/core/common/password_form.h', |
| 42 'autofill/core/common/password_form_fill_data.cc', | 44 'autofill/core/common/password_form_fill_data.cc', |
| 43 'autofill/core/common/password_form_fill_data.h', | 45 'autofill/core/common/password_form_fill_data.h', |
| 44 'autofill/core/common/password_generation_util.cc', | 46 'autofill/core/common/password_generation_util.cc', |
| 45 'autofill/core/common/password_generation_util.h', | 47 'autofill/core/common/password_generation_util.h', |
| 46 'autofill/core/common/save_password_progress_logger.cc', | 48 'autofill/core/common/save_password_progress_logger.cc', |
| 47 'autofill/core/common/save_password_progress_logger.h', | 49 'autofill/core/common/save_password_progress_logger.h', |
| 48 'autofill/core/common/web_element_descriptor.cc', | 50 'autofill/core/common/web_element_descriptor.cc', |
| 49 'autofill/core/common/web_element_descriptor.h', | 51 'autofill/core/common/web_element_descriptor.h', |
| 50 ], | 52 ], |
| 53 |
| 54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 55 'msvs_disabled_warnings': [4267, ], |
| 51 }, | 56 }, |
| 52 | 57 |
| 53 { | 58 { |
| 54 # GN version: //components/autofill/core/browser | 59 # GN version: //components/autofill/core/browser |
| 55 'target_name': 'autofill_core_browser', | 60 'target_name': 'autofill_core_browser', |
| 56 'type': 'static_library', | 61 'type': 'static_library', |
| 57 'include_dirs': [ | 62 'include_dirs': [ |
| 58 '..', | 63 '..', |
| 59 ], | 64 ], |
| 60 'dependencies': [ | 65 'dependencies': [ |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 'autofill/core/browser/autofill_manager.cc', | 124 'autofill/core/browser/autofill_manager.cc', |
| 120 'autofill/core/browser/autofill_manager.h', | 125 'autofill/core/browser/autofill_manager.h', |
| 121 'autofill/core/browser/autofill_manager_test_delegate.h', | 126 'autofill/core/browser/autofill_manager_test_delegate.h', |
| 122 'autofill/core/browser/autofill_metrics.cc', | 127 'autofill/core/browser/autofill_metrics.cc', |
| 123 'autofill/core/browser/autofill_metrics.h', | 128 'autofill/core/browser/autofill_metrics.h', |
| 124 'autofill/core/browser/autofill_popup_delegate.h', | 129 'autofill/core/browser/autofill_popup_delegate.h', |
| 125 'autofill/core/browser/autofill_profile.cc', | 130 'autofill/core/browser/autofill_profile.cc', |
| 126 'autofill/core/browser/autofill_profile.h', | 131 'autofill/core/browser/autofill_profile.h', |
| 127 'autofill/core/browser/autofill_regex_constants.cc', | 132 'autofill/core/browser/autofill_regex_constants.cc', |
| 128 'autofill/core/browser/autofill_regex_constants.h', | 133 'autofill/core/browser/autofill_regex_constants.h', |
| 129 'autofill/core/browser/autofill_regexes.cc', | |
| 130 'autofill/core/browser/autofill_regexes.h', | |
| 131 'autofill/core/browser/autofill_scanner.cc', | 134 'autofill/core/browser/autofill_scanner.cc', |
| 132 'autofill/core/browser/autofill_scanner.h', | 135 'autofill/core/browser/autofill_scanner.h', |
| 133 'autofill/core/browser/autofill_server_field_info.h', | 136 'autofill/core/browser/autofill_server_field_info.h', |
| 134 'autofill/core/browser/autofill_sync_constants.cc', | 137 'autofill/core/browser/autofill_sync_constants.cc', |
| 135 'autofill/core/browser/autofill_sync_constants.h', | 138 'autofill/core/browser/autofill_sync_constants.h', |
| 136 'autofill/core/browser/autofill_type.cc', | 139 'autofill/core/browser/autofill_type.cc', |
| 137 'autofill/core/browser/autofill_type.h', | 140 'autofill/core/browser/autofill_type.h', |
| 138 'autofill/core/browser/autofill_xml_parser.cc', | 141 'autofill/core/browser/autofill_xml_parser.cc', |
| 139 'autofill/core/browser/autofill_xml_parser.h', | 142 'autofill/core/browser/autofill_xml_parser.h', |
| 140 'autofill/core/browser/card_unmask_delegate.cc', | 143 'autofill/core/browser/card_unmask_delegate.cc', |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 ], | 468 ], |
| 466 }, | 469 }, |
| 467 'includes': [ | 470 'includes': [ |
| 468 '../ios/web/js_compile.gypi', | 471 '../ios/web/js_compile.gypi', |
| 469 ], | 472 ], |
| 470 }, | 473 }, |
| 471 ], | 474 ], |
| 472 }], | 475 }], |
| 473 ], | 476 ], |
| 474 } | 477 } |
| OLD | NEW |