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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 if (is_android) { | 49 if (is_android) { |
50 # deps += [ 'autofill_jni_headers' ] TODO(GYP) | 50 # deps += [ 'autofill_jni_headers' ] TODO(GYP) |
51 } | 51 } |
52 | 52 |
53 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 53 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
54 } | 54 } |
55 | 55 |
56 source_set("unit_tests") { | 56 source_set("unit_tests") { |
57 testonly = true | 57 testonly = true |
58 sources = [ | 58 sources = [ |
| 59 "autofill_l10n_util_unittest.cc", |
59 "autofill_regexes_unittest.cc", | 60 "autofill_regexes_unittest.cc", |
60 "autofill_util_unittest.cc", | 61 "autofill_util_unittest.cc", |
61 "form_data_unittest.cc", | 62 "form_data_unittest.cc", |
62 "form_field_data_unittest.cc", | 63 "form_field_data_unittest.cc", |
63 "password_form_fill_data_unittest.cc", | 64 "password_form_fill_data_unittest.cc", |
64 "save_password_progress_logger_unittest.cc", | 65 "save_password_progress_logger_unittest.cc", |
65 ] | 66 ] |
66 | 67 |
67 deps = [ | 68 deps = [ |
68 ":common", | 69 ":common", |
69 "//base", | 70 "//base", |
70 "//base:i18n", | 71 "//base:i18n", |
| 72 "//base/test:test_support", |
71 "//components/autofill/core/browser", | 73 "//components/autofill/core/browser", |
72 "//testing/gmock", | 74 "//testing/gmock", |
73 "//testing/gtest", | 75 "//testing/gtest", |
74 "//url", | 76 "//url", |
75 ] | 77 ] |
76 } | 78 } |
OLD | NEW |