| 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", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "form_data_predictions.cc", | 23 "form_data_predictions.cc", |
| 24 "form_data_predictions.h", | 24 "form_data_predictions.h", |
| 25 "form_field_data.cc", | 25 "form_field_data.cc", |
| 26 "form_field_data.h", | 26 "form_field_data.h", |
| 27 "form_field_data_predictions.cc", | 27 "form_field_data_predictions.cc", |
| 28 "form_field_data_predictions.h", | 28 "form_field_data_predictions.h", |
| 29 "password_form.cc", | 29 "password_form.cc", |
| 30 "password_form.h", | 30 "password_form.h", |
| 31 "password_form_fill_data.cc", | 31 "password_form_fill_data.cc", |
| 32 "password_form_fill_data.h", | 32 "password_form_fill_data.h", |
| 33 "password_form_generation_data.h", | |
| 34 "password_generation_util.cc", | 33 "password_generation_util.cc", |
| 35 "password_generation_util.h", | 34 "password_generation_util.h", |
| 36 "save_password_progress_logger.cc", | 35 "save_password_progress_logger.cc", |
| 37 "save_password_progress_logger.h", | 36 "save_password_progress_logger.h", |
| 38 ] | 37 ] |
| 39 | 38 |
| 40 deps = [ | 39 deps = [ |
| 41 "//base", | 40 "//base", |
| 42 "//base:i18n", | 41 "//base:i18n", |
| 43 "//url", | 42 "//url", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 66 ":common", | 65 ":common", |
| 67 "//base", | 66 "//base", |
| 68 "//base:i18n", | 67 "//base:i18n", |
| 69 "//base/test:test_support", | 68 "//base/test:test_support", |
| 70 "//components/autofill/core/browser", | 69 "//components/autofill/core/browser", |
| 71 "//testing/gmock", | 70 "//testing/gmock", |
| 72 "//testing/gtest", | 71 "//testing/gtest", |
| 73 "//url", | 72 "//url", |
| 74 ] | 73 ] |
| 75 } | 74 } |
| OLD | NEW |