| 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", | 7 "autofill_clock.cc", |
| 8 "autofill_clock.h", | 8 "autofill_clock.h", |
| 9 "autofill_constants.cc", | 9 "autofill_constants.cc", |
| 10 "autofill_constants.h", | 10 "autofill_constants.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "form_data_predictions.h", | 26 "form_data_predictions.h", |
| 27 "form_field_data.cc", | 27 "form_field_data.cc", |
| 28 "form_field_data.h", | 28 "form_field_data.h", |
| 29 "form_field_data_predictions.cc", | 29 "form_field_data_predictions.cc", |
| 30 "form_field_data_predictions.h", | 30 "form_field_data_predictions.h", |
| 31 "password_form.cc", | 31 "password_form.cc", |
| 32 "password_form.h", | 32 "password_form.h", |
| 33 "password_form_field_prediction_map.h", | 33 "password_form_field_prediction_map.h", |
| 34 "password_form_fill_data.cc", | 34 "password_form_fill_data.cc", |
| 35 "password_form_fill_data.h", | 35 "password_form_fill_data.h", |
| 36 "password_form_generation_data.cc", |
| 36 "password_form_generation_data.h", | 37 "password_form_generation_data.h", |
| 37 "password_generation_util.cc", | 38 "password_generation_util.cc", |
| 38 "password_generation_util.h", | 39 "password_generation_util.h", |
| 39 "save_password_progress_logger.cc", | 40 "save_password_progress_logger.cc", |
| 40 "save_password_progress_logger.h", | 41 "save_password_progress_logger.h", |
| 41 "signatures_util.cc", | 42 "signatures_util.cc", |
| 42 "signatures_util.h", | 43 "signatures_util.h", |
| 43 ] | 44 ] |
| 44 | 45 |
| 45 deps = [ | 46 deps = [ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 72 ":common", | 73 ":common", |
| 73 "//base", | 74 "//base", |
| 74 "//base:i18n", | 75 "//base:i18n", |
| 75 "//base/test:test_support", | 76 "//base/test:test_support", |
| 76 "//components/autofill/core/browser", | 77 "//components/autofill/core/browser", |
| 77 "//testing/gmock", | 78 "//testing/gmock", |
| 78 "//testing/gtest", | 79 "//testing/gtest", |
| 79 "//url", | 80 "//url", |
| 80 ] | 81 ] |
| 81 } | 82 } |
| OLD | NEW |