Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: chrome/utility/BUILD.gn

Issue 2475543003: Introduce the image_decoder service (Closed)
Patch Set: . Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/test/BUILD.gn ('k') | chrome/utility/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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") {
11 sources = [ 11 sources = [
12 "chrome_content_utility_client.cc", 12 "chrome_content_utility_client.cc",
13 "chrome_content_utility_client.h", 13 "chrome_content_utility_client.h",
14 "chrome_content_utility_ipc_whitelist.cc", 14 "chrome_content_utility_ipc_whitelist.cc",
15 "chrome_content_utility_ipc_whitelist.h", 15 "chrome_content_utility_ipc_whitelist.h",
16 "cloud_print/bitmap_image.cc", 16 "cloud_print/bitmap_image.cc",
17 "cloud_print/bitmap_image.h", 17 "cloud_print/bitmap_image.h",
18 "cloud_print/pwg_encoder.cc", 18 "cloud_print/pwg_encoder.cc",
19 "cloud_print/pwg_encoder.h", 19 "cloud_print/pwg_encoder.h",
20 "image_decoder_impl.cc",
21 "image_decoder_impl.h",
22 "ipc_shell_handler_win.cc", 20 "ipc_shell_handler_win.cc",
23 "ipc_shell_handler_win.h", 21 "ipc_shell_handler_win.h",
24 "printing_handler.cc", 22 "printing_handler.cc",
25 "printing_handler.h", 23 "printing_handler.h",
26 "shell_handler_impl_win.cc", 24 "shell_handler_impl_win.cc",
27 "shell_handler_impl_win.h", 25 "shell_handler_impl_win.h",
28 "utility_message_handler.h", 26 "utility_message_handler.h",
29 ] 27 ]
30 28
31 defines = [] 29 defines = []
(...skipping 13 matching lines...) Expand all
45 "//components/search_engines", 43 "//components/search_engines",
46 "//components/strings", 44 "//components/strings",
47 "//components/url_formatter", 45 "//components/url_formatter",
48 "//content/public/child", 46 "//content/public/child",
49 "//content/public/common", 47 "//content/public/common",
50 "//content/public/utility", 48 "//content/public/utility",
51 "//courgette:courgette_lib", 49 "//courgette:courgette_lib",
52 "//media", 50 "//media",
53 "//net:net_with_v8", 51 "//net:net_with_v8",
54 "//printing/features", 52 "//printing/features",
53 "//services/image_decoder:lib",
54 "//services/image_decoder/public/cpp",
55 "//services/service_manager/public/cpp", 55 "//services/service_manager/public/cpp",
56 "//skia", 56 "//skia",
57 "//sql", 57 "//sql",
58 "//third_party/libxml", 58 "//third_party/libxml",
59 ] 59 ]
60 60
61 if (!is_android) { 61 if (!is_android) {
62 sources += [ 62 sources += [
63 "importer/bookmark_html_reader.cc", 63 "importer/bookmark_html_reader.cc",
64 "importer/bookmark_html_reader.h", 64 "importer/bookmark_html_reader.h",
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 sources -= [ 170 sources -= [
171 "printing_handler.cc", 171 "printing_handler.cc",
172 "printing_handler.h", 172 "printing_handler.h",
173 ] 173 ]
174 } 174 }
175 175
176 if (is_mac && safe_browsing_mode == 1) { 176 if (is_mac && safe_browsing_mode == 1) {
177 deps += [ "//chrome/utility/safe_browsing/mac" ] 177 deps += [ "//chrome/utility/safe_browsing/mac" ]
178 } 178 }
179 } 179 }
OLDNEW
« no previous file with comments | « chrome/test/BUILD.gn ('k') | chrome/utility/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698