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 # GYP version: components/autofill.gyp:autofill_core_browser | 5 # GYP version: components/autofill.gyp:autofill_core_browser |
6 static_library("browser") { | 6 static_library("browser") { |
7 sources = [ | 7 sources = [ |
8 "address.cc", | 8 "address.cc", |
9 "address.h", | 9 "address.h", |
10 "address_field.cc", | 10 "address_field.cc", |
(...skipping 24 matching lines...) Expand all Loading... |
35 "autofill_manager.cc", | 35 "autofill_manager.cc", |
36 "autofill_manager.h", | 36 "autofill_manager.h", |
37 "autofill_manager_test_delegate.h", | 37 "autofill_manager_test_delegate.h", |
38 "autofill_metrics.cc", | 38 "autofill_metrics.cc", |
39 "autofill_metrics.h", | 39 "autofill_metrics.h", |
40 "autofill_popup_delegate.h", | 40 "autofill_popup_delegate.h", |
41 "autofill_profile.cc", | 41 "autofill_profile.cc", |
42 "autofill_profile.h", | 42 "autofill_profile.h", |
43 "autofill_regex_constants.cc", | 43 "autofill_regex_constants.cc", |
44 "autofill_regex_constants.h", | 44 "autofill_regex_constants.h", |
| 45 "autofill_regexes.cc", |
| 46 "autofill_regexes.h", |
45 "autofill_scanner.cc", | 47 "autofill_scanner.cc", |
46 "autofill_scanner.h", | 48 "autofill_scanner.h", |
47 "autofill_server_field_info.h", | 49 "autofill_server_field_info.h", |
48 "autofill_sync_constants.cc", | 50 "autofill_sync_constants.cc", |
49 "autofill_sync_constants.h", | 51 "autofill_sync_constants.h", |
50 "autofill_type.cc", | 52 "autofill_type.cc", |
51 "autofill_type.h", | 53 "autofill_type.h", |
52 "autofill_xml_parser.cc", | 54 "autofill_xml_parser.cc", |
53 "autofill_xml_parser.h", | 55 "autofill_xml_parser.h", |
54 "card_unmask_delegate.cc", | 56 "card_unmask_delegate.cc", |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 "autofill_country_unittest.cc", | 200 "autofill_country_unittest.cc", |
199 "autofill_data_model_unittest.cc", | 201 "autofill_data_model_unittest.cc", |
200 "autofill_download_manager_unittest.cc", | 202 "autofill_download_manager_unittest.cc", |
201 "autofill_external_delegate_unittest.cc", | 203 "autofill_external_delegate_unittest.cc", |
202 "autofill_field_unittest.cc", | 204 "autofill_field_unittest.cc", |
203 "autofill_ie_toolbar_import_win_unittest.cc", | 205 "autofill_ie_toolbar_import_win_unittest.cc", |
204 "autofill_manager_unittest.cc", | 206 "autofill_manager_unittest.cc", |
205 "autofill_merge_unittest.cc", | 207 "autofill_merge_unittest.cc", |
206 "autofill_metrics_unittest.cc", | 208 "autofill_metrics_unittest.cc", |
207 "autofill_profile_unittest.cc", | 209 "autofill_profile_unittest.cc", |
| 210 "autofill_regexes_unittest.cc", |
208 "autofill_type_unittest.cc", | 211 "autofill_type_unittest.cc", |
209 "autofill_xml_parser_unittest.cc", | 212 "autofill_xml_parser_unittest.cc", |
210 "contact_info_unittest.cc", | 213 "contact_info_unittest.cc", |
211 "credit_card_field_unittest.cc", | 214 "credit_card_field_unittest.cc", |
212 "credit_card_unittest.cc", | 215 "credit_card_unittest.cc", |
213 "form_field_unittest.cc", | 216 "form_field_unittest.cc", |
214 "form_structure_unittest.cc", | 217 "form_structure_unittest.cc", |
215 "name_field_unittest.cc", | 218 "name_field_unittest.cc", |
216 "password_generator_unittest.cc", | 219 "password_generator_unittest.cc", |
217 "personal_data_manager_unittest.cc", | 220 "personal_data_manager_unittest.cc", |
(...skipping 24 matching lines...) Expand all Loading... |
242 "//sync", | 245 "//sync", |
243 "//sync:test_support_sync_api", | 246 "//sync:test_support_sync_api", |
244 "//testing/gmock", | 247 "//testing/gmock", |
245 "//testing/gtest", | 248 "//testing/gtest", |
246 "//third_party/libphonenumber", | 249 "//third_party/libphonenumber", |
247 "//third_party/libjingle", | 250 "//third_party/libjingle", |
248 "//ui/base", | 251 "//ui/base", |
249 "//url", | 252 "//url", |
250 ] | 253 ] |
251 } | 254 } |
OLD | NEW |