| 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("//extensions/features/features.gni") |
| 8 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 9 | 10 |
| 10 static_library("utility") { | 11 static_library("utility") { |
| 11 sources = [ | 12 sources = [ |
| 12 "chrome_content_utility_client.cc", | 13 "chrome_content_utility_client.cc", |
| 13 "chrome_content_utility_client.h", | 14 "chrome_content_utility_client.h", |
| 14 "chrome_content_utility_ipc_whitelist.cc", | 15 "chrome_content_utility_ipc_whitelist.cc", |
| 15 "chrome_content_utility_ipc_whitelist.h", | 16 "chrome_content_utility_ipc_whitelist.h", |
| 16 "cloud_print/bitmap_image.cc", | 17 "cloud_print/bitmap_image.cc", |
| 17 "cloud_print/bitmap_image.h", | 18 "cloud_print/bitmap_image.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 42 "//chrome/common", | 43 "//chrome/common", |
| 43 "//chrome/common:mojo_bindings", | 44 "//chrome/common:mojo_bindings", |
| 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", |
| 53 "//extensions/features", |
| 52 "//media", | 54 "//media", |
| 53 "//net:net_with_v8", | 55 "//net:net_with_v8", |
| 54 "//printing/features", | 56 "//printing/features", |
| 55 "//services/service_manager/public/cpp", | 57 "//services/service_manager/public/cpp", |
| 56 "//skia", | 58 "//skia", |
| 57 "//sql", | 59 "//sql", |
| 58 "//third_party/libxml", | 60 "//third_party/libxml", |
| 59 ] | 61 ] |
| 60 | 62 |
| 61 if (!is_android) { | 63 if (!is_android) { |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 sources -= [ | 172 sources -= [ |
| 171 "printing_handler.cc", | 173 "printing_handler.cc", |
| 172 "printing_handler.h", | 174 "printing_handler.h", |
| 173 ] | 175 ] |
| 174 } | 176 } |
| 175 | 177 |
| 176 if (is_mac && safe_browsing_mode == 1) { | 178 if (is_mac && safe_browsing_mode == 1) { |
| 177 deps += [ "//chrome/utility/safe_browsing/mac" ] | 179 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 178 } | 180 } |
| 179 } | 181 } |
| OLD | NEW |