| 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", |
| 8 "autofill_clock.h", |
| 7 "autofill_constants.cc", | 9 "autofill_constants.cc", |
| 8 "autofill_constants.h", | 10 "autofill_constants.h", |
| 9 "autofill_data_validation.cc", | 11 "autofill_data_validation.cc", |
| 10 "autofill_data_validation.h", | 12 "autofill_data_validation.h", |
| 11 "autofill_l10n_util.cc", | 13 "autofill_l10n_util.cc", |
| 12 "autofill_l10n_util.h", | 14 "autofill_l10n_util.h", |
| 13 "autofill_pref_names.cc", | 15 "autofill_pref_names.cc", |
| 14 "autofill_pref_names.h", | 16 "autofill_pref_names.h", |
| 15 "autofill_regexes.cc", | 17 "autofill_regexes.cc", |
| 16 "autofill_regexes.h", | 18 "autofill_regexes.h", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 ":common", | 72 ":common", |
| 71 "//base", | 73 "//base", |
| 72 "//base:i18n", | 74 "//base:i18n", |
| 73 "//base/test:test_support", | 75 "//base/test:test_support", |
| 74 "//components/autofill/core/browser", | 76 "//components/autofill/core/browser", |
| 75 "//testing/gmock", | 77 "//testing/gmock", |
| 76 "//testing/gtest", | 78 "//testing/gtest", |
| 77 "//url", | 79 "//url", |
| 78 ] | 80 ] |
| 79 } | 81 } |
| OLD | NEW |