| # Copyright 2014 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("//build/config/chromeos/ui_mode.gni") |
| import("//build/config/crypto.gni") |
| import("//build/config/features.gni") |
| import("//build/config/sysroot.gni") |
| import("//chrome/common/features.gni") |
| import("//chromeos/assistant/assistant.gni") |
| import("//extensions/buildflags/buildflags.gni") |
| import("//printing/buildflags/buildflags.gni") |
| |
| static_library("utility") { |
| sources = [ |
| "browser_exposed_utility_interfaces.cc", |
| "browser_exposed_utility_interfaces.h", |
| "chrome_content_utility_client.cc", |
| "chrome_content_utility_client.h", |
| "services.cc", |
| "services.h", |
| ] |
| |
| defines = [] |
| configs += [ |
| "//build/config:precompiled_headers", |
| "//build/config/compiler:wexit_time_destructors", |
| ] |
| |
| public_deps = [] |
| deps = [ |
| "//base", |
| "//build:chromeos_buildflags", |
| "//chrome:resources", |
| "//chrome:strings", |
| "//chrome/common", |
| "//chrome/common:mojo_bindings", |
| "//chrome/services/qrcode_generator", |
| "//components/mirroring/service:mirroring_service", |
| "//components/paint_preview/buildflags", |
| "//components/safe_browsing:buildflags", |
| "//components/search_engines", |
| "//components/services/language_detection", |
| "//components/services/paint_preview_compositor", |
| "//components/services/patch:lib", |
| "//components/services/unzip:lib", |
| "//components/strings", |
| "//components/url_formatter", |
| "//components/webapps/services/web_app_origin_association:lib", |
| "//content/public/child", |
| "//content/public/common", |
| "//content/public/utility", |
| "//extensions/buildflags", |
| "//ipc", |
| "//media", |
| "//net", |
| "//printing/buildflags", |
| "//services/data_decoder:lib", |
| "//services/network:network_service", |
| "//services/service_manager/public/cpp", |
| "//skia", |
| "//sql", |
| "//third_party/blink/public/common", |
| "//third_party/zlib/google:zip", |
| "//ui/base:buildflags", |
| ] |
| |
| if (is_win) { |
| deps += [ |
| "//components/services/quarantine", |
| "//components/services/quarantine/public/mojom", |
| ] |
| } |
| |
| if (is_mac) { |
| deps += [ "//chrome/services/mac_notifications" ] |
| } |
| |
| if (!is_android) { |
| sources += [ |
| "importer/bookmark_html_reader.cc", |
| "importer/bookmark_html_reader.h", |
| "importer/bookmarks_file_importer.cc", |
| "importer/bookmarks_file_importer.h", |
| "importer/external_process_importer_bridge.cc", |
| "importer/external_process_importer_bridge.h", |
| "importer/favicon_reencode.cc", |
| "importer/favicon_reencode.h", |
| "importer/firefox_importer.cc", |
| "importer/firefox_importer.h", |
| "importer/importer.cc", |
| "importer/importer.h", |
| "importer/importer_creator.cc", |
| "importer/importer_creator.h", |
| "importer/profile_import_impl.cc", |
| "importer/profile_import_impl.h", |
| ] |
| if (is_mac) { |
| sources += [ |
| "importer/safari_importer.h", |
| "importer/safari_importer.mm", |
| ] |
| } else { |
| sources += [ |
| "importer/nss_decryptor.cc", |
| "importer/nss_decryptor.h", |
| ] |
| } |
| if (is_win) { |
| sources += [ |
| "importer/edge_database_reader_win.cc", |
| "importer/edge_database_reader_win.h", |
| "importer/edge_importer_win.cc", |
| "importer/edge_importer_win.h", |
| "importer/ie_importer_win.cc", |
| "importer/ie_importer_win.h", |
| "importer/nss_decryptor_win.cc", |
| "importer/nss_decryptor_win.h", |
| ] |
| } |
| deps += [ |
| "//chrome/common:mojo_bindings", |
| "//chrome/common/importer:interfaces", |
| "//chrome/services/speech:lib", |
| "//components/autofill/core/common", |
| "//services/proxy_resolver:lib", |
| ] |
| } |
| |
| if (enable_extensions) { |
| deps += [ |
| "//chrome/common/extensions/api", |
| "//chrome/services/removable_storage_writer:lib", |
| "//chrome/utility/image_writer", |
| ] |
| |
| public_deps += [ |
| "//chrome/common/extensions/api", |
| "//chrome/services/removable_storage_writer/public/mojom", |
| "//mojo/public/cpp/bindings", |
| ] |
| |
| # Prevent wininet from loading in the renderer. http://crbug.com/460679 |
| if (is_win) { |
| ldflags = [ "/DELAYLOAD:wininet.dll" ] |
| |
| # Add ESE library for Edge Import support. |
| libs = [ "esent.lib" ] |
| ldflags += [ "/DELAYLOAD:esent.dll" ] |
| |
| deps += [ "//chrome/services/util_win:lib" ] |
| } |
| |
| if (is_win || is_mac) { |
| deps += [ "//components/wifi" ] |
| } |
| } |
| |
| if (is_chromeos_ash) { |
| deps += [ |
| "//ash/services/recording", |
| "//chrome/services/file_util", |
| "//chrome/services/sharing", |
| "//chromeos/assistant:buildflags", |
| "//chromeos/components/local_search_service:local_search_service", |
| "//chromeos/components/local_search_service/public/mojom", |
| "//chromeos/services/ime:lib", |
| "//chromeos/services/ime/public/mojom", |
| "//chromeos/services/nearby/public/mojom:mojom", |
| "//chromeos/services/tts", |
| "//chromeos/services/tts/public/mojom", |
| ] |
| |
| if (enable_cros_libassistant) { |
| deps += [ |
| "//chromeos/services/assistant/audio_decoder:lib", |
| "//chromeos/services/assistant/public/mojom", |
| ] |
| |
| if (enable_libassistant_sandbox) { |
| deps += [ |
| "//chromeos/services/libassistant", |
| "//chromeos/services/libassistant/public/mojom", |
| ] |
| } |
| } |
| } |
| |
| if (use_nss_certs) { |
| sources += [ |
| "importer/nss_decryptor_system_nss.cc", |
| "importer/nss_decryptor_system_nss.h", |
| ] |
| deps += [ |
| "//crypto", |
| "//crypto:platform", |
| ] |
| } |
| |
| if (enable_basic_printing) { |
| deps += [ |
| "//components/services/print_compositor", |
| "//components/services/print_compositor/public/mojom", |
| ] |
| |
| if (is_win || is_mac || is_linux || is_chromeos) { |
| deps += [ "//chrome/services/printing:lib" ] |
| } |
| |
| if (is_chromeos_ash) { |
| deps += [ |
| "//chrome/services/ipp_parser", |
| "//chrome/services/ipp_parser/public/mojom", |
| ] |
| } |
| } |
| |
| if (enable_print_preview) { |
| if (is_win) { |
| sources += [ |
| "printing_handler.cc", |
| "printing_handler.h", |
| ] |
| } |
| } |
| |
| if (safe_browsing_mode == 1) { |
| deps += [ "//chrome/services/file_util" ] |
| if (is_mac) { |
| deps += [ "//chrome/utility/safe_browsing/mac" ] |
| } |
| } |
| |
| if (is_android || enable_extensions) { |
| deps += [ "//chrome/services/media_gallery_util:lib" ] |
| } |
| } |