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