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 22 matching lines...) Expand all Loading... |
40 "//chrome/common", | 41 "//chrome/common", |
41 "//chrome/common:mojo_bindings", | 42 "//chrome/common:mojo_bindings", |
42 "//components/safe_json/utility", | 43 "//components/safe_json/utility", |
43 "//components/search_engines", | 44 "//components/search_engines", |
44 "//components/strings", | 45 "//components/strings", |
45 "//components/url_formatter", | 46 "//components/url_formatter", |
46 "//content/public/child", | 47 "//content/public/child", |
47 "//content/public/common", | 48 "//content/public/common", |
48 "//content/public/utility", | 49 "//content/public/utility", |
49 "//courgette:courgette_lib", | 50 "//courgette:courgette_lib", |
| 51 "//extensions/features", |
50 "//media", | 52 "//media", |
51 "//net:net_with_v8", | 53 "//net:net_with_v8", |
52 "//printing/features", | 54 "//printing/features", |
53 "//services/image_decoder:lib", | 55 "//services/image_decoder:lib", |
54 "//services/image_decoder/public/cpp", | 56 "//services/image_decoder/public/cpp", |
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 ] |
(...skipping 110 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 |