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_l10n_util.cc", | 11 "autofill_l10n_util.cc", |
12 "autofill_l10n_util.h", | 12 "autofill_l10n_util.h", |
13 "autofill_pref_names.cc", | 13 "autofill_pref_names.cc", |
14 "autofill_pref_names.h", | 14 "autofill_pref_names.h", |
15 "autofill_regexes.cc", | |
16 "autofill_regexes.h", | |
15 "autofill_switches.cc", | 17 "autofill_switches.cc", |
16 "autofill_switches.h", | 18 "autofill_switches.h", |
17 "form_data.cc", | 19 "form_data.cc", |
18 "form_data.h", | 20 "form_data.h", |
19 "form_data_predictions.cc", | 21 "form_data_predictions.cc", |
20 "form_data_predictions.h", | 22 "form_data_predictions.h", |
21 "form_field_data.cc", | 23 "form_field_data.cc", |
22 "form_field_data.h", | 24 "form_field_data.h", |
23 "form_field_data_predictions.cc", | 25 "form_field_data_predictions.cc", |
24 "form_field_data_predictions.h", | 26 "form_field_data_predictions.h", |
(...skipping 13 matching lines...) Expand all Loading... | |
38 "//base", | 40 "//base", |
39 "//base:i18n", | 41 "//base:i18n", |
40 "//ui/base", | 42 "//ui/base", |
41 "//ui/gfx", | 43 "//ui/gfx", |
42 "//url", | 44 "//url", |
43 ] | 45 ] |
44 | 46 |
45 if (is_android) { | 47 if (is_android) { |
46 # deps += [ 'autofill_jni_headers' ] TODO(GYP) | 48 # deps += [ 'autofill_jni_headers' ] TODO(GYP) |
47 } | 49 } |
50 | |
51 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | |
Evan Stade
2015/04/27 22:41:50
this is the difference from the original patch (th
| |
48 } | 52 } |
49 | 53 |
50 source_set("unit_tests") { | 54 source_set("unit_tests") { |
51 testonly = true | 55 testonly = true |
52 sources = [ | 56 sources = [ |
57 "autofill_regexes_unittest.cc", | |
53 "form_data_unittest.cc", | 58 "form_data_unittest.cc", |
54 "form_field_data_unittest.cc", | 59 "form_field_data_unittest.cc", |
55 "password_form_fill_data_unittest.cc", | 60 "password_form_fill_data_unittest.cc", |
56 "save_password_progress_logger_unittest.cc", | 61 "save_password_progress_logger_unittest.cc", |
57 ] | 62 ] |
58 | 63 |
59 deps = [ | 64 deps = [ |
60 ":common", | 65 ":common", |
61 "//base", | 66 "//base", |
62 "//base:i18n", | 67 "//base:i18n", |
63 "//testing/gmock", | 68 "//testing/gmock", |
64 "//testing/gtest", | 69 "//testing/gtest", |
65 "//url", | 70 "//url", |
66 ] | 71 ] |
67 } | 72 } |
OLD | NEW |