| 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", |
| 11 "address.h", | 11 "address.h", |
| 12 "address_field.cc", | 12 "address_field.cc", |
| 13 "address_field.h", | 13 "address_field.h", |
| 14 "address_i18n.cc", | 14 "address_i18n.cc", |
| 15 "address_i18n.h", | 15 "address_i18n.h", |
| 16 "address_rewriter.cc", |
| 17 "address_rewriter.h", |
| 18 "address_rewriter_rules.cc", |
| 16 "autocomplete_history_manager.cc", | 19 "autocomplete_history_manager.cc", |
| 17 "autocomplete_history_manager.h", | 20 "autocomplete_history_manager.h", |
| 18 "autofill-inl.h", | 21 "autofill-inl.h", |
| 19 "autofill_client.h", | 22 "autofill_client.h", |
| 20 "autofill_country.cc", | 23 "autofill_country.cc", |
| 21 "autofill_country.h", | 24 "autofill_country.h", |
| 22 "autofill_data_model.cc", | 25 "autofill_data_model.cc", |
| 23 "autofill_data_model.h", | 26 "autofill_data_model.h", |
| 24 "autofill_data_util.cc", | 27 "autofill_data_util.cc", |
| 25 "autofill_data_util.h", | 28 "autofill_data_util.h", |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 "{{bundle_resources_dir}}/" + | 275 "{{bundle_resources_dir}}/" + |
| 273 "{{source_root_relative_dir}}/{{source_file_part}}", | 276 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 274 ] | 277 ] |
| 275 } | 278 } |
| 276 | 279 |
| 277 source_set("unit_tests") { | 280 source_set("unit_tests") { |
| 278 testonly = true | 281 testonly = true |
| 279 sources = [ | 282 sources = [ |
| 280 "address_field_unittest.cc", | 283 "address_field_unittest.cc", |
| 281 "address_i18n_unittest.cc", | 284 "address_i18n_unittest.cc", |
| 285 "address_rewriter_unittest.cc", |
| 282 "address_unittest.cc", | 286 "address_unittest.cc", |
| 283 "autocomplete_history_manager_unittest.cc", | 287 "autocomplete_history_manager_unittest.cc", |
| 284 "autofill_country_unittest.cc", | 288 "autofill_country_unittest.cc", |
| 285 "autofill_data_model_unittest.cc", | 289 "autofill_data_model_unittest.cc", |
| 286 "autofill_data_util_unittest.cc", | 290 "autofill_data_util_unittest.cc", |
| 287 "autofill_download_manager_unittest.cc", | 291 "autofill_download_manager_unittest.cc", |
| 288 "autofill_external_delegate_unittest.cc", | 292 "autofill_external_delegate_unittest.cc", |
| 289 "autofill_field_unittest.cc", | 293 "autofill_field_unittest.cc", |
| 290 "autofill_ie_toolbar_import_win_unittest.cc", | 294 "autofill_ie_toolbar_import_win_unittest.cc", |
| 291 "autofill_manager_unittest.cc", | 295 "autofill_manager_unittest.cc", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 "//sync", | 351 "//sync", |
| 348 "//sync:test_support_sync_api", | 352 "//sync:test_support_sync_api", |
| 349 "//testing/gmock", | 353 "//testing/gmock", |
| 350 "//testing/gtest", | 354 "//testing/gtest", |
| 351 "//third_party/libaddressinput:util", | 355 "//third_party/libaddressinput:util", |
| 352 "//third_party/libphonenumber", | 356 "//third_party/libphonenumber", |
| 353 "//ui/base", | 357 "//ui/base", |
| 354 "//url", | 358 "//url", |
| 355 ] | 359 ] |
| 356 } | 360 } |
| OLD | NEW |