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_constants.cc", | 7 "autofill_constants.cc", |
8 "autofill_constants.h", | 8 "autofill_constants.h", |
9 "autofill_data_validation.cc", | 9 "autofill_data_validation.cc", |
10 "autofill_data_validation.h", | 10 "autofill_data_validation.h", |
11 "autofill_l10n_util.cc", | 11 "autofill_l10n_util.cc", |
12 "autofill_l10n_util.h", | 12 "autofill_l10n_util.h", |
13 "autofill_pref_names.cc", | 13 "autofill_pref_names.cc", |
14 "autofill_pref_names.h", | 14 "autofill_pref_names.h", |
15 "autofill_regexes.cc", | 15 "autofill_regexes.cc", |
16 "autofill_regexes.h", | 16 "autofill_regexes.h", |
17 "autofill_switches.cc", | 17 "autofill_switches.cc", |
18 "autofill_switches.h", | 18 "autofill_switches.h", |
| 19 "autofill_util.cc", |
| 20 "autofill_util.h", |
19 "form_data.cc", | 21 "form_data.cc", |
20 "form_data.h", | 22 "form_data.h", |
21 "form_data_predictions.cc", | 23 "form_data_predictions.cc", |
22 "form_data_predictions.h", | 24 "form_data_predictions.h", |
23 "form_field_data.cc", | 25 "form_field_data.cc", |
24 "form_field_data.h", | 26 "form_field_data.h", |
25 "form_field_data_predictions.cc", | 27 "form_field_data_predictions.cc", |
26 "form_field_data_predictions.h", | 28 "form_field_data_predictions.h", |
27 "password_form.cc", | 29 "password_form.cc", |
28 "password_form.h", | 30 "password_form.h", |
(...skipping 19 matching lines...) Expand all Loading... |
48 # deps += [ 'autofill_jni_headers' ] TODO(GYP) | 50 # deps += [ 'autofill_jni_headers' ] TODO(GYP) |
49 } | 51 } |
50 | 52 |
51 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 53 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
52 } | 54 } |
53 | 55 |
54 source_set("unit_tests") { | 56 source_set("unit_tests") { |
55 testonly = true | 57 testonly = true |
56 sources = [ | 58 sources = [ |
57 "autofill_regexes_unittest.cc", | 59 "autofill_regexes_unittest.cc", |
| 60 "autofill_util_unittest.cc", |
58 "form_data_unittest.cc", | 61 "form_data_unittest.cc", |
59 "form_field_data_unittest.cc", | 62 "form_field_data_unittest.cc", |
60 "password_form_fill_data_unittest.cc", | 63 "password_form_fill_data_unittest.cc", |
61 "save_password_progress_logger_unittest.cc", | 64 "save_password_progress_logger_unittest.cc", |
62 ] | 65 ] |
63 | 66 |
64 deps = [ | 67 deps = [ |
65 ":common", | 68 ":common", |
66 "//base", | 69 "//base", |
67 "//base:i18n", | 70 "//base:i18n", |
68 "//components/autofill/core/browser", | 71 "//components/autofill/core/browser", |
69 "//testing/gmock", | 72 "//testing/gmock", |
70 "//testing/gtest", | 73 "//testing/gtest", |
71 "//url", | 74 "//url", |
72 ] | 75 ] |
73 } | 76 } |
OLD | NEW |