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

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

Issue 2774463002: image_decoder service -> data_decoder service (Closed)
Patch Set: . Created 3 years, 9 months 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/browser/image_decoder.cc ('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("//extensions/features/features.gni") 8 import("//extensions/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "//components/url_formatter", 44 "//components/url_formatter",
45 "//content/public/child", 45 "//content/public/child",
46 "//content/public/common", 46 "//content/public/common",
47 "//content/public/utility", 47 "//content/public/utility",
48 "//courgette:courgette_lib", 48 "//courgette:courgette_lib",
49 "//extensions/features", 49 "//extensions/features",
50 "//ipc", 50 "//ipc",
51 "//media", 51 "//media",
52 "//net:net_with_v8", 52 "//net:net_with_v8",
53 "//printing/features", 53 "//printing/features",
54 "//services/image_decoder:lib",
55 "//services/image_decoder/public/cpp",
56 "//services/service_manager/public/cpp", 54 "//services/service_manager/public/cpp",
57 "//skia", 55 "//skia",
58 "//sql", 56 "//sql",
59 "//third_party/libxml", 57 "//third_party/libxml",
60 ] 58 ]
61 59
62 if (!is_android) { 60 if (!is_android) {
63 sources += [ 61 sources += [
64 "importer/bookmark_html_reader.cc", 62 "importer/bookmark_html_reader.cc",
65 "importer/bookmark_html_reader.h", 63 "importer/bookmark_html_reader.h",
(...skipping 23 matching lines...) Expand all
89 "importer/nss_decryptor_win.h", 87 "importer/nss_decryptor_win.h",
90 "importer/safari_importer.h", 88 "importer/safari_importer.h",
91 "importer/safari_importer.mm", 89 "importer/safari_importer.mm",
92 "profile_import_handler.cc", 90 "profile_import_handler.cc",
93 "profile_import_handler.h", 91 "profile_import_handler.h",
94 ] 92 ]
95 deps += [ 93 deps += [
96 "//chrome/common:mojo_bindings", 94 "//chrome/common:mojo_bindings",
97 "//chrome/common/importer:interfaces", 95 "//chrome/common/importer:interfaces",
98 "//net:net_utility_services", 96 "//net:net_utility_services",
97 "//services/data_decoder:lib",
99 ] 98 ]
100 } 99 }
101 100
102 if (is_android) { 101 if (is_android) {
103 deps += [ "//components/payments/content/android/utility" ] 102 deps += [ "//components/payments/content/android/utility" ]
104 } 103 }
105 104
106 if (enable_extensions) { 105 if (enable_extensions) {
107 sources += [ 106 sources += [
108 "extensions/extensions_handler.cc", 107 "extensions/extensions_handler.cc",
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 sources -= [ 175 sources -= [
177 "printing_handler.cc", 176 "printing_handler.cc",
178 "printing_handler.h", 177 "printing_handler.h",
179 ] 178 ]
180 } 179 }
181 180
182 if (is_mac && safe_browsing_mode == 1) { 181 if (is_mac && safe_browsing_mode == 1) {
183 deps += [ "//chrome/utility/safe_browsing/mac" ] 182 deps += [ "//chrome/utility/safe_browsing/mac" ]
184 } 183 }
185 } 184 }
OLDNEW
« no previous file with comments | « chrome/browser/image_decoder.cc ('k') | chrome/utility/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698