| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/sysroot.gni") | 7 import("//build/config/sysroot.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 | 9 |
| 10 static_library("utility") { | 10 static_library("utility") { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "//build/config/compiler:wexit_time_destructors", | 34 "//build/config/compiler:wexit_time_destructors", |
| 35 ] | 35 ] |
| 36 | 36 |
| 37 public_deps = [] | 37 public_deps = [] |
| 38 deps = [ | 38 deps = [ |
| 39 "//base", | 39 "//base", |
| 40 "//chrome:resources", | 40 "//chrome:resources", |
| 41 "//chrome:strings", | 41 "//chrome:strings", |
| 42 "//chrome/common", | 42 "//chrome/common", |
| 43 "//chrome/common:mojo_bindings", | 43 "//chrome/common:mojo_bindings", |
| 44 "//chrome/common:mojo_bindings_no_new_wrapper_types", |
| 44 "//components/safe_json/utility", | 45 "//components/safe_json/utility", |
| 45 "//components/search_engines", | 46 "//components/search_engines", |
| 46 "//components/strings", | 47 "//components/strings", |
| 47 "//components/url_formatter", | 48 "//components/url_formatter", |
| 48 "//content/public/child", | 49 "//content/public/child", |
| 49 "//content/public/common", | 50 "//content/public/common", |
| 50 "//content/public/utility", | 51 "//content/public/utility", |
| 51 "//courgette:courgette_lib", | 52 "//courgette:courgette_lib", |
| 52 "//media", | 53 "//media", |
| 53 "//net:net_with_v8", | 54 "//net:net_with_v8", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 84 "importer/nss_decryptor.h", | 85 "importer/nss_decryptor.h", |
| 85 "importer/nss_decryptor_mac.h", | 86 "importer/nss_decryptor_mac.h", |
| 86 "importer/nss_decryptor_mac.mm", | 87 "importer/nss_decryptor_mac.mm", |
| 87 "importer/nss_decryptor_win.cc", | 88 "importer/nss_decryptor_win.cc", |
| 88 "importer/nss_decryptor_win.h", | 89 "importer/nss_decryptor_win.h", |
| 89 "importer/safari_importer.h", | 90 "importer/safari_importer.h", |
| 90 "importer/safari_importer.mm", | 91 "importer/safari_importer.mm", |
| 91 "profile_import_handler.cc", | 92 "profile_import_handler.cc", |
| 92 "profile_import_handler.h", | 93 "profile_import_handler.h", |
| 93 ] | 94 ] |
| 94 deps += [ | 95 deps += [ "//net:net_utility_services" ] |
| 95 "//chrome/common:mojo_bindings", | |
| 96 "//net:net_utility_services", | |
| 97 ] | |
| 98 } | 96 } |
| 99 | 97 |
| 100 if (enable_extensions) { | 98 if (enable_extensions) { |
| 101 sources += [ | 99 sources += [ |
| 102 "extensions/extensions_handler.cc", | 100 "extensions/extensions_handler.cc", |
| 103 "extensions/extensions_handler.h", | 101 "extensions/extensions_handler.h", |
| 104 "image_writer/disk_unmounter_mac.cc", | 102 "image_writer/disk_unmounter_mac.cc", |
| 105 "image_writer/disk_unmounter_mac.h", | 103 "image_writer/disk_unmounter_mac.h", |
| 106 "image_writer/error_messages.cc", | 104 "image_writer/error_messages.cc", |
| 107 "image_writer/error_messages.h", | 105 "image_writer/error_messages.h", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 sources -= [ | 168 sources -= [ |
| 171 "printing_handler.cc", | 169 "printing_handler.cc", |
| 172 "printing_handler.h", | 170 "printing_handler.h", |
| 173 ] | 171 ] |
| 174 } | 172 } |
| 175 | 173 |
| 176 if (is_mac && safe_browsing_mode == 1) { | 174 if (is_mac && safe_browsing_mode == 1) { |
| 177 deps += [ "//chrome/utility/safe_browsing/mac" ] | 175 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 178 } | 176 } |
| 179 } | 177 } |
| OLD | NEW |