| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("common") { | 5 static_library("common") { |
| 6 sources = [ | 6 sources = [ |
| 7 "autofill_clock.cc", | 7 "autofill_clock.cc", |
| 8 "autofill_clock.h", | 8 "autofill_clock.h", |
| 9 "autofill_constants.cc", | 9 "autofill_constants.cc", |
| 10 "autofill_constants.h", | 10 "autofill_constants.h", |
| 11 "autofill_data_validation.cc", | 11 "autofill_data_validation.cc", |
| 12 "autofill_data_validation.h", | 12 "autofill_data_validation.h", |
| 13 "autofill_l10n_util.cc", | 13 "autofill_l10n_util.cc", |
| 14 "autofill_l10n_util.h", | 14 "autofill_l10n_util.h", |
| 15 "autofill_pref_names.cc", | 15 "autofill_pref_names.cc", |
| 16 "autofill_pref_names.h", | 16 "autofill_pref_names.h", |
| 17 "autofill_regex_constants.cc", |
| 18 "autofill_regex_constants.h", |
| 17 "autofill_regexes.cc", | 19 "autofill_regexes.cc", |
| 18 "autofill_regexes.h", | 20 "autofill_regexes.h", |
| 19 "autofill_switches.cc", | 21 "autofill_switches.cc", |
| 20 "autofill_switches.h", | 22 "autofill_switches.h", |
| 21 "autofill_util.cc", | 23 "autofill_util.cc", |
| 22 "autofill_util.h", | 24 "autofill_util.h", |
| 23 "form_data.cc", | 25 "form_data.cc", |
| 24 "form_data.h", | 26 "form_data.h", |
| 25 "form_data_predictions.cc", | 27 "form_data_predictions.cc", |
| 26 "form_data_predictions.h", | 28 "form_data_predictions.h", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "form_field_data_unittest.cc", | 69 "form_field_data_unittest.cc", |
| 68 "password_form_fill_data_unittest.cc", | 70 "password_form_fill_data_unittest.cc", |
| 69 "save_password_progress_logger_unittest.cc", | 71 "save_password_progress_logger_unittest.cc", |
| 70 ] | 72 ] |
| 71 | 73 |
| 72 deps = [ | 74 deps = [ |
| 73 ":common", | 75 ":common", |
| 74 "//base", | 76 "//base", |
| 75 "//base:i18n", | 77 "//base:i18n", |
| 76 "//base/test:test_support", | 78 "//base/test:test_support", |
| 77 "//components/autofill/core/browser", | |
| 78 "//testing/gmock", | 79 "//testing/gmock", |
| 79 "//testing/gtest", | 80 "//testing/gtest", |
| 80 "//url", | 81 "//url", |
| 81 ] | 82 ] |
| 82 } | 83 } |
| OLD | NEW |