mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
62 lines
1.7 KiB
Plaintext
62 lines
1.7 KiB
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//mojo/public/tools/bindings/mojom.gni")
|
|
|
|
mojom("interfaces") {
|
|
sources = [
|
|
"profile_import.mojom",
|
|
]
|
|
|
|
public_deps = [
|
|
"//components/autofill/content/common:mojo_types",
|
|
"//mojo/public/mojom/base",
|
|
"//url/mojom:url_mojom_gurl",
|
|
]
|
|
}
|
|
|
|
source_set("importer") {
|
|
sources = [
|
|
"edge_importer_utils_win.cc",
|
|
"edge_importer_utils_win.h",
|
|
"firefox_importer_utils.cc",
|
|
"firefox_importer_utils.h",
|
|
"firefox_importer_utils_linux.cc",
|
|
"firefox_importer_utils_mac.mm",
|
|
"firefox_importer_utils_win.cc",
|
|
"ie_importer_utils_win.cc",
|
|
"ie_importer_utils_win.h",
|
|
"imported_bookmark_entry.cc",
|
|
"imported_bookmark_entry.h",
|
|
"importer_autofill_form_data_entry.cc",
|
|
"importer_autofill_form_data_entry.h",
|
|
"importer_bridge.cc",
|
|
"importer_bridge.h",
|
|
"importer_data_types.cc",
|
|
"importer_data_types.h",
|
|
"importer_test_registry_overrider_win.cc",
|
|
"importer_test_registry_overrider_win.h",
|
|
"importer_type.h",
|
|
"importer_url_row.cc",
|
|
"importer_url_row.h",
|
|
"profile_import_process_param_traits.cc",
|
|
"profile_import_process_param_traits.h",
|
|
"profile_import_process_param_traits_macros.h",
|
|
"pstore_declarations.h",
|
|
"safari_importer_utils.h",
|
|
"safari_importer_utils.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//chrome/app:generated_resources",
|
|
"//chrome/common:common_param_traits_macros",
|
|
"//chrome/common:ini_parser",
|
|
"//components/autofill/core/common",
|
|
"//components/favicon_base",
|
|
"//content/public/common",
|
|
"//ui/base",
|
|
"//url",
|
|
]
|
|
}
|