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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 202 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
203 | 203 |
204 deps = [ | 204 deps = [ |
205 ":resources", | 205 ":resources", |
206 "//base", | 206 "//base", |
207 "//base:base_static", | 207 "//base:base_static", |
208 "//base/allocator", | 208 "//base/allocator", |
209 "//base/third_party/dynamic_annotations", | 209 "//base/third_party/dynamic_annotations", |
210 "//cc", | 210 "//cc", |
211 "//components/crash/app", | 211 "//components/crash/app", |
| 212 "//components/web_cache/renderer", |
212 "//content:resources", | 213 "//content:resources", |
213 "//content/app/resources", | 214 "//content/app/resources", |
214 "//content/app/strings", | 215 "//content/app/strings", |
215 "//content/gpu", | 216 "//content/gpu", |
216 "//content/public/app:both", | 217 "//content/public/app:both", |
217 "//content/public/browser", | 218 "//content/public/browser", |
218 "//content/public/common", | 219 "//content/public/common", |
219 "//content/public/plugin", | 220 "//content/public/plugin", |
220 "//content/public/renderer", | 221 "//content/public/renderer", |
221 "//content/public/utility", | 222 "//content/public/utility", |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 if (is_android && !is_android_webview_build) { | 472 if (is_android && !is_android_webview_build) { |
472 # Some tests rely on this tool. It might be nicer if these tests relied on | 473 # Some tests rely on this tool. It might be nicer if these tests relied on |
473 # image diff rather than having content shell depend on it. | 474 # image diff rather than having content shell depend on it. |
474 datadeps = [ | 475 datadeps = [ |
475 "//tools/imagediff($host_toolchain)", | 476 "//tools/imagediff($host_toolchain)", |
476 ] | 477 ] |
477 } | 478 } |
478 } | 479 } |
479 | 480 |
480 } | 481 } |
OLD | NEW |