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_pref_names.cc", | 11 "autofill_pref_names.cc", |
12 "autofill_pref_names.h", | 12 "autofill_pref_names.h", |
13 "autofill_switches.cc", | 13 "autofill_switches.cc", |
14 "autofill_switches.h", | 14 "autofill_switches.h", |
| 15 "autofill_util.cc", |
| 16 "autofill_util.h", |
15 "form_data.cc", | 17 "form_data.cc", |
16 "form_data.h", | 18 "form_data.h", |
17 "form_data_predictions.cc", | 19 "form_data_predictions.cc", |
18 "form_data_predictions.h", | 20 "form_data_predictions.h", |
19 "form_field_data.cc", | 21 "form_field_data.cc", |
20 "form_field_data.h", | 22 "form_field_data.h", |
21 "form_field_data_predictions.cc", | 23 "form_field_data_predictions.cc", |
22 "form_field_data_predictions.h", | 24 "form_field_data_predictions.h", |
23 "password_form.cc", | 25 "password_form.cc", |
24 "password_form.h", | 26 "password_form.h", |
(...skipping 31 matching lines...) Loading... |
56 | 58 |
57 deps = [ | 59 deps = [ |
58 ":common", | 60 ":common", |
59 "//base", | 61 "//base", |
60 "//base:i18n", | 62 "//base:i18n", |
61 "//testing/gmock", | 63 "//testing/gmock", |
62 "//testing/gtest", | 64 "//testing/gtest", |
63 "//url", | 65 "//url", |
64 ] | 66 ] |
65 } | 67 } |
OLD | NEW |