| 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 | 9 |
| 9 static_library("utility") { | 10 static_library("utility") { |
| 10 sources = [ | 11 sources = [ |
| 11 "chrome_content_utility_client.cc", | 12 "chrome_content_utility_client.cc", |
| 12 "chrome_content_utility_client.h", | 13 "chrome_content_utility_client.h", |
| 13 "chrome_content_utility_ipc_whitelist.cc", | 14 "chrome_content_utility_ipc_whitelist.cc", |
| 14 "chrome_content_utility_ipc_whitelist.h", | 15 "chrome_content_utility_ipc_whitelist.h", |
| 15 "cloud_print/bitmap_image.cc", | 16 "cloud_print/bitmap_image.cc", |
| 16 "cloud_print/bitmap_image.h", | 17 "cloud_print/bitmap_image.h", |
| 17 "cloud_print/pwg_encoder.cc", | 18 "cloud_print/pwg_encoder.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 43 "//components/safe_json/utility", | 44 "//components/safe_json/utility", |
| 44 "//components/search_engines", | 45 "//components/search_engines", |
| 45 "//components/strings", | 46 "//components/strings", |
| 46 "//components/url_formatter", | 47 "//components/url_formatter", |
| 47 "//content/public/child", | 48 "//content/public/child", |
| 48 "//content/public/common", | 49 "//content/public/common", |
| 49 "//content/public/utility", | 50 "//content/public/utility", |
| 50 "//courgette:courgette_lib", | 51 "//courgette:courgette_lib", |
| 51 "//media", | 52 "//media", |
| 52 "//net:net_with_v8", | 53 "//net:net_with_v8", |
| 54 "//printing/features", |
| 53 "//services/service_manager/public/cpp", | 55 "//services/service_manager/public/cpp", |
| 54 "//skia", | 56 "//skia", |
| 55 "//sql", | 57 "//sql", |
| 56 "//third_party/libxml", | 58 "//third_party/libxml", |
| 57 ] | 59 ] |
| 58 | 60 |
| 59 if (!is_android) { | 61 if (!is_android) { |
| 60 sources += [ | 62 sources += [ |
| 61 "importer/bookmark_html_reader.cc", | 63 "importer/bookmark_html_reader.cc", |
| 62 "importer/bookmark_html_reader.h", | 64 "importer/bookmark_html_reader.h", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 sources -= [ | 170 sources -= [ |
| 169 "printing_handler.cc", | 171 "printing_handler.cc", |
| 170 "printing_handler.h", | 172 "printing_handler.h", |
| 171 ] | 173 ] |
| 172 } | 174 } |
| 173 | 175 |
| 174 if (is_mac && safe_browsing_mode == 1) { | 176 if (is_mac && safe_browsing_mode == 1) { |
| 175 deps += [ "//chrome/utility/safe_browsing/mac" ] | 177 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 176 } | 178 } |
| 177 } | 179 } |
| OLD | NEW |