| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 mojom("interfaces") { | 7 mojom("interfaces") { |
| 8 sources = [ | 8 sources = [ |
| 9 "profile_import.mojom", | 9 "profile_import.mojom", |
| 10 ] | 10 ] |
| 11 | 11 |
| 12 public_deps = [ | 12 public_deps = [ |
| 13 "//components/autofill/content/common:mojo_types", | 13 "//components/autofill/content/common:mojo_types", |
| 14 "//mojo/common:common_custom_types", | 14 "//mojo/common:common_custom_types", |
| 15 "//url/mojo:url_mojom_gurl", | 15 "//url/mojo:url_mojom_gurl", |
| 16 ] | 16 ] |
| 17 } | 17 } |
| 18 |
| 19 source_set("importer") { |
| 20 sources = [ |
| 21 "edge_importer_utils_win.cc", |
| 22 "edge_importer_utils_win.h", |
| 23 "firefox_importer_utils.cc", |
| 24 "firefox_importer_utils.h", |
| 25 "firefox_importer_utils_linux.cc", |
| 26 "firefox_importer_utils_mac.mm", |
| 27 "firefox_importer_utils_win.cc", |
| 28 "ie_importer_utils_win.cc", |
| 29 "ie_importer_utils_win.h", |
| 30 "imported_bookmark_entry.cc", |
| 31 "imported_bookmark_entry.h", |
| 32 "importer_autofill_form_data_entry.cc", |
| 33 "importer_autofill_form_data_entry.h", |
| 34 "importer_bridge.cc", |
| 35 "importer_bridge.h", |
| 36 "importer_data_types.cc", |
| 37 "importer_data_types.h", |
| 38 "importer_test_registry_overrider_win.cc", |
| 39 "importer_test_registry_overrider_win.h", |
| 40 "importer_type.h", |
| 41 "importer_url_row.cc", |
| 42 "importer_url_row.h", |
| 43 "profile_import_process_param_traits.cc", |
| 44 "profile_import_process_param_traits.h", |
| 45 "profile_import_process_param_traits_macros.h", |
| 46 "pstore_declarations.h", |
| 47 "safari_importer_utils.h", |
| 48 "safari_importer_utils.mm", |
| 49 ] |
| 50 deps = [ |
| 51 "//base", |
| 52 "//chrome/app:generated_resources", |
| 53 "//chrome/common:common_param_traits_macros", |
| 54 "//chrome/common:ini_parser", |
| 55 "//components/autofill/content/common:ipc_traits", |
| 56 "//components/autofill/core/common", |
| 57 "//components/favicon_base", |
| 58 "//content/public/common", |
| 59 "//ipc", |
| 60 "//ui/base", |
| 61 "//url", |
| 62 ] |
| 63 } |
| OLD | NEW |