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/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 | 200 |
201 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 201 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
202 | 202 |
203 deps = [ | 203 deps = [ |
204 ":resources", | 204 ":resources", |
205 "//base", | 205 "//base", |
206 "//base:base_static", | 206 "//base:base_static", |
207 "//base/allocator", | 207 "//base/allocator", |
208 "//base/third_party/dynamic_annotations", | 208 "//base/third_party/dynamic_annotations", |
209 "//cc", | 209 "//cc", |
210 "//components/breakpad/app", | 210 "//components/crash/app", |
211 "//content:resources", | 211 "//content:resources", |
212 "//content/app:both", | 212 "//content/app:both", |
213 "//content/app/resources", | 213 "//content/app/resources", |
214 "//content/app/strings", | 214 "//content/app/strings", |
215 "//content/gpu", | 215 "//content/gpu", |
216 "//content/ppapi_plugin", | 216 "//content/ppapi_plugin", |
217 "//content/public/browser", | 217 "//content/public/browser", |
218 "//content/public/common", | 218 "//content/public/common", |
219 "//content/public/plugin", | 219 "//content/public/plugin", |
220 "//content/public/renderer", | 220 "//content/public/renderer", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 # the tests that needed it had this as a dep instead of adding it here. | 259 # the tests that needed it had this as a dep instead of adding it here. |
260 datadeps = [ "//tools/xdisplaycheck" ] | 260 datadeps = [ "//tools/xdisplaycheck" ] |
261 } | 261 } |
262 | 262 |
263 if (is_android) { | 263 if (is_android) { |
264 #deps += [ 'content_shell_jni_headers' ] TODO(GYP) | 264 #deps += [ 'content_shell_jni_headers' ] TODO(GYP) |
265 #deps -= [ 'copy_test_netscape_plugin' ] TODO(GYP) | 265 #deps -= [ 'copy_test_netscape_plugin' ] TODO(GYP) |
266 } | 266 } |
267 | 267 |
268 if (is_posix && !is_mac && (!is_android || !is_android_webview_build)) { | 268 if (is_posix && !is_mac && (!is_android || !is_android_webview_build)) { |
269 deps += [ "//components/breakpad/browser" ] | 269 deps += [ "//components/crash/browser" ] |
270 } | 270 } |
271 | 271 |
272 if (use_aura) { | 272 if (use_aura) { |
273 deps += [ | 273 deps += [ |
274 "//ui/aura", | 274 "//ui/aura", |
275 "//ui/aura:test_support", | 275 "//ui/aura:test_support", |
276 "//ui/events", | 276 "//ui/events", |
277 "//ui/strings", | 277 "//ui/strings", |
278 "//ui/wm", | 278 "//ui/wm", |
279 ] | 279 ] |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 } | 458 } |
459 | 459 |
460 if (!is_android || !is_android_webview_build) { | 460 if (!is_android || !is_android_webview_build) { |
461 # Some tests rely on this tool. It might be nicer if these tests relied on | 461 # Some tests rely on this tool. It might be nicer if these tests relied on |
462 # image diff rather than having content shell depend on it. | 462 # image diff rather than having content shell depend on it. |
463 datadeps = [ | 463 datadeps = [ |
464 "//tools/imagediff($host_toolchain)", | 464 "//tools/imagediff($host_toolchain)", |
465 ] | 465 ] |
466 } | 466 } |
467 } | 467 } |
OLD | NEW |