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 "form_data.cc", | 15 "form_data.cc", |
16 "form_data.h", | 16 "form_data.h", |
17 "form_data_predictions.cc", | 17 "form_data_predictions.cc", |
18 "form_data_predictions.h", | 18 "form_data_predictions.h", |
19 "form_field_data.cc", | 19 "form_field_data.cc", |
20 "form_field_data.h", | 20 "form_field_data.h", |
21 "form_field_data_predictions.cc", | 21 "form_field_data_predictions.cc", |
22 "form_field_data_predictions.h", | 22 "form_field_data_predictions.h", |
23 "password_autofill_util.cc", | |
24 "password_autofill_util.h", | |
25 "password_form.cc", | 23 "password_form.cc", |
26 "password_form.h", | 24 "password_form.h", |
27 "password_form_fill_data.cc", | 25 "password_form_fill_data.cc", |
28 "password_form_fill_data.h", | 26 "password_form_fill_data.h", |
29 "password_generation_util.cc", | 27 "password_generation_util.cc", |
30 "password_generation_util.h", | 28 "password_generation_util.h", |
31 "save_password_progress_logger.cc", | 29 "save_password_progress_logger.cc", |
32 "save_password_progress_logger.h", | 30 "save_password_progress_logger.h", |
33 "web_element_descriptor.cc", | 31 "web_element_descriptor.cc", |
34 "web_element_descriptor.h", | 32 "web_element_descriptor.h", |
(...skipping 19 matching lines...) Expand all Loading... |
54 "password_form_fill_data_unittest.cc", | 52 "password_form_fill_data_unittest.cc", |
55 "save_password_progress_logger_unittest.cc", | 53 "save_password_progress_logger_unittest.cc", |
56 ] | 54 ] |
57 | 55 |
58 deps = [ | 56 deps = [ |
59 ":common", | 57 ":common", |
60 "//testing/gmock", | 58 "//testing/gmock", |
61 "//testing/gtest", | 59 "//testing/gtest", |
62 ] | 60 ] |
63 } | 61 } |
OLD | NEW |