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

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

Issue 1844103004: Convert the utility process image decoder into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 8 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/common/image_decoder.mojom ('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 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("../chrome_utility.gypi") ], 10 [ rebase_path("../chrome_utility.gypi") ],
(...skipping 12 matching lines...) Expand all
23 defines = [] 23 defines = []
24 configs += [ "//build/config:precompiled_headers" ] 24 configs += [ "//build/config:precompiled_headers" ]
25 all_dependent_configs = [ ":utility_ldflags" ] 25 all_dependent_configs = [ ":utility_ldflags" ]
26 26
27 public_deps = [] 27 public_deps = []
28 deps = [ 28 deps = [
29 "//base", 29 "//base",
30 "//chrome:resources", 30 "//chrome:resources",
31 "//chrome:strings", 31 "//chrome:strings",
32 "//chrome/common", 32 "//chrome/common",
33 "//chrome/common:mojo_bindings",
33 "//components/safe_json:safe_json_parser_message_filter", 34 "//components/safe_json:safe_json_parser_message_filter",
34 "//components/search_engines", 35 "//components/search_engines",
35 "//components/strings", 36 "//components/strings",
36 "//components/url_formatter", 37 "//components/url_formatter",
37 "//content/public/child", 38 "//content/public/child",
38 "//content/public/common", 39 "//content/public/common",
39 "//content/public/utility", 40 "//content/public/utility",
40 "//courgette:courgette_lib", 41 "//courgette:courgette_lib",
41 "//media", 42 "//media",
42 "//net:net_with_v8", 43 "//net:net_with_v8",
43 "//skia", 44 "//skia",
45 "//skia/public",
44 "//sql", 46 "//sql",
45 "//third_party/libxml", 47 "//third_party/libxml",
46 ] 48 ]
47 49
48 if (!is_android) { 50 if (!is_android) {
49 deps += [ 51 deps += [
50 "//chrome/common:mojo_bindings", 52 "//chrome/common:mojo_bindings",
51 "//net:net_utility_services", 53 "//net:net_utility_services",
52 ] 54 ]
53 sources += 55 sources +=
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 if (safe_browsing_mode == 1) { 110 if (safe_browsing_mode == 1) {
109 sources += 111 sources +=
110 rebase_path(gypi_values.chrome_utility_safe_browsing_sources, ".", "..") 112 rebase_path(gypi_values.chrome_utility_safe_browsing_sources, ".", "..")
111 deps += [ "//third_party/zlib" ] 113 deps += [ "//third_party/zlib" ]
112 } 114 }
113 115
114 if (enable_pdf) { 116 if (enable_pdf) {
115 deps += [ "//pdf" ] 117 deps += [ "//pdf" ]
116 } 118 }
117 } 119 }
OLDNEW
« no previous file with comments | « chrome/common/image_decoder.mojom ('k') | chrome/utility/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698