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
3 # found in the LICENSE file.
5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni")
8 gypi_values = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("../chrome_utility.gypi") ],
11 [ "../chrome_utility.gypi" ])
13 static_library("utility") {
14 sources = rebase_path(gypi_values.chrome_utility_sources, ".", "..")
16 configs += [ "//build/config:precompiled_headers" ]
21 "//components/safe_json:safe_json_parser_message_filter",
22 "//components/search_engines",
23 "//components/strings",
24 "//components/url_formatter",
25 "//content/public/common",
26 "//content/public/utility",
29 "//third_party/libxml",
37 "//chrome/common:mojo_bindings",
38 "//net:net_utility_services",
41 rebase_path(gypi_values.chrome_utility_importer_sources, ".", "..")
44 if (enable_extensions) {
46 "//chrome/common/extensions/api",
47 "//extensions/utility",
50 public_deps += [ "//chrome/common/extensions/api" ]
53 rebase_path(gypi_values.chrome_utility_extensions_sources, ".", "..")
55 rebase_path(gypi_values.chrome_utility_shared_media_sources, ".", "..")
57 # Prevent wininet from loading in the renderer. http://crbug.com/460679
59 ldflags = [ "/DELAYLOAD:wininet.dll" ]
62 if (is_win || is_mac) {
64 rebase_path(gypi_values.chrome_utility_win_mac_media_gallery_sources,
67 deps += [ "//components/wifi" ]
69 sources += [ "image_writer/image_writer_stub.cc" ]
74 rebase_path(gypi_values.chrome_utility_mac_media_gallery_sources,
79 # Linux should use system libexif
81 # TODO(thestig): Properly support building on Linux and ChromeOS.
82 deps += [ "//third_party/libexif" ]
88 "importer/nss_decryptor_system_nss.cc",
89 "importer/nss_decryptor_system_nss.h",
97 if (!enable_print_preview) {
99 "printing_handler.cc",
100 "printing_handler.h",
106 "local_discovery/service_discovery_message_handler.cc",
107 "local_discovery/service_discovery_message_handler.h",
111 if (safe_browsing_mode == 1) {
113 rebase_path(gypi_values.chrome_utility_safe_browsing_sources, ".", "..")