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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 | 6 |
7 # GYP version: components/autofill.gyp:autofill_core_browser | 7 # GYP version: components/autofill.gyp:autofill_core_browser |
8 source_set("browser") { | 8 source_set("browser") { |
9 sources = [ | 9 sources = [ |
10 "address.cc", | 10 "address.cc", |
(...skipping 24 matching lines...) Expand all Loading... |
35 "autofill_ie_toolbar_import_win.cc", | 35 "autofill_ie_toolbar_import_win.cc", |
36 "autofill_ie_toolbar_import_win.h", | 36 "autofill_ie_toolbar_import_win.h", |
37 "autofill_manager.cc", | 37 "autofill_manager.cc", |
38 "autofill_manager.h", | 38 "autofill_manager.h", |
39 "autofill_manager_test_delegate.h", | 39 "autofill_manager_test_delegate.h", |
40 "autofill_metrics.cc", | 40 "autofill_metrics.cc", |
41 "autofill_metrics.h", | 41 "autofill_metrics.h", |
42 "autofill_popup_delegate.h", | 42 "autofill_popup_delegate.h", |
43 "autofill_profile.cc", | 43 "autofill_profile.cc", |
44 "autofill_profile.h", | 44 "autofill_profile.h", |
| 45 "autofill_profile_comparator.cc", |
| 46 "autofill_profile_comparator.h", |
45 "autofill_regex_constants.cc", | 47 "autofill_regex_constants.cc", |
46 "autofill_regex_constants.h", | 48 "autofill_regex_constants.h", |
47 "autofill_scanner.cc", | 49 "autofill_scanner.cc", |
48 "autofill_scanner.h", | 50 "autofill_scanner.h", |
49 "autofill_sync_constants.cc", | 51 "autofill_sync_constants.cc", |
50 "autofill_sync_constants.h", | 52 "autofill_sync_constants.h", |
51 "autofill_type.cc", | 53 "autofill_type.cc", |
52 "autofill_type.h", | 54 "autofill_type.h", |
53 "autofill_wallet_data_type_controller.cc", | 55 "autofill_wallet_data_type_controller.cc", |
54 "autofill_wallet_data_type_controller.h", | 56 "autofill_wallet_data_type_controller.h", |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 "autofill_country_unittest.cc", | 283 "autofill_country_unittest.cc", |
282 "autofill_data_model_unittest.cc", | 284 "autofill_data_model_unittest.cc", |
283 "autofill_data_util_unittest.cc", | 285 "autofill_data_util_unittest.cc", |
284 "autofill_download_manager_unittest.cc", | 286 "autofill_download_manager_unittest.cc", |
285 "autofill_external_delegate_unittest.cc", | 287 "autofill_external_delegate_unittest.cc", |
286 "autofill_field_unittest.cc", | 288 "autofill_field_unittest.cc", |
287 "autofill_ie_toolbar_import_win_unittest.cc", | 289 "autofill_ie_toolbar_import_win_unittest.cc", |
288 "autofill_manager_unittest.cc", | 290 "autofill_manager_unittest.cc", |
289 "autofill_merge_unittest.cc", | 291 "autofill_merge_unittest.cc", |
290 "autofill_metrics_unittest.cc", | 292 "autofill_metrics_unittest.cc", |
| 293 "autofill_profile_comparator_unittest.cc", |
291 "autofill_profile_unittest.cc", | 294 "autofill_profile_unittest.cc", |
292 "autofill_type_unittest.cc", | 295 "autofill_type_unittest.cc", |
293 "contact_info_unittest.cc", | 296 "contact_info_unittest.cc", |
294 "country_names_unittest.cc", | 297 "country_names_unittest.cc", |
295 "credit_card_field_unittest.cc", | 298 "credit_card_field_unittest.cc", |
296 "credit_card_unittest.cc", | 299 "credit_card_unittest.cc", |
297 "field_candidates_unittest.cc", | 300 "field_candidates_unittest.cc", |
298 "form_field_unittest.cc", | 301 "form_field_unittest.cc", |
299 "form_structure_unittest.cc", | 302 "form_structure_unittest.cc", |
300 "legal_message_line_unittest.cc", | 303 "legal_message_line_unittest.cc", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 "//sync", | 346 "//sync", |
344 "//sync:test_support_sync_api", | 347 "//sync:test_support_sync_api", |
345 "//testing/gmock", | 348 "//testing/gmock", |
346 "//testing/gtest", | 349 "//testing/gtest", |
347 "//third_party/libaddressinput:util", | 350 "//third_party/libaddressinput:util", |
348 "//third_party/libphonenumber", | 351 "//third_party/libphonenumber", |
349 "//ui/base", | 352 "//ui/base", |
350 "//url", | 353 "//url", |
351 ] | 354 ] |
352 } | 355 } |
OLD | NEW |