| 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/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/manifest.gni") | 8 import("//build/config/win/manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "//content/public/renderer", | 194 "//content/public/renderer", |
| 195 "//content/public/utility", | 195 "//content/public/utility", |
| 196 ] | 196 ] |
| 197 deps = [ | 197 deps = [ |
| 198 ":resources", | 198 ":resources", |
| 199 "//base", | 199 "//base", |
| 200 "//base:base_static", | 200 "//base:base_static", |
| 201 "//base/allocator", | 201 "//base/allocator", |
| 202 "//base/third_party/dynamic_annotations", | 202 "//base/third_party/dynamic_annotations", |
| 203 "//cc", | 203 "//cc", |
| 204 "//components/crash/content/app", | 204 "//components/crash/app", |
| 205 "//components/devtools_discovery", | 205 "//components/devtools_discovery", |
| 206 "//components/devtools_http_handler", | 206 "//components/devtools_http_handler", |
| 207 "//components/plugins/renderer", | 207 "//components/plugins/renderer", |
| 208 "//components/test_runner:test_runner", | 208 "//components/test_runner:test_runner", |
| 209 "//components/url_formatter", | 209 "//components/url_formatter", |
| 210 "//components/web_cache/renderer", | 210 "//components/web_cache/renderer", |
| 211 "//content:resources", | 211 "//content:resources", |
| 212 "//content/app/resources", | 212 "//content/app/resources", |
| 213 "//content/app/strings", | 213 "//content/app/strings", |
| 214 "//content/gpu", | 214 "//content/gpu", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 | 265 |
| 266 deps += [ "//ui/events/devices" ] | 266 deps += [ "//ui/events/devices" ] |
| 267 } | 267 } |
| 268 | 268 |
| 269 if (is_android) { | 269 if (is_android) { |
| 270 deps += [ "//content/shell/android:content_shell_jni_headers" ] | 270 deps += [ "//content/shell/android:content_shell_jni_headers" ] |
| 271 #deps -= [ "copy_test_netscape_plugin" ] TODO(GYP) | 271 #deps -= [ "copy_test_netscape_plugin" ] TODO(GYP) |
| 272 } | 272 } |
| 273 | 273 |
| 274 if (is_posix && !is_mac) { | 274 if (is_posix && !is_mac) { |
| 275 deps += [ "//components/crash/content/browser" ] | 275 deps += [ "//components/crash/browser" ] |
| 276 } | 276 } |
| 277 | 277 |
| 278 if (use_aura) { | 278 if (use_aura) { |
| 279 deps += [ | 279 deps += [ |
| 280 "//ui/aura", | 280 "//ui/aura", |
| 281 "//ui/aura:test_support", | 281 "//ui/aura:test_support", |
| 282 "//ui/events", | 282 "//ui/events", |
| 283 "//ui/strings", | 283 "//ui/strings", |
| 284 "//ui/wm", | 284 "//ui/wm", |
| 285 ] | 285 ] |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 if (is_win) { | 451 if (is_win) { |
| 452 # GYP version: content/content_shell_and_tests.gyp:content_shell_crash_service | 452 # GYP version: content/content_shell_and_tests.gyp:content_shell_crash_service |
| 453 executable("crash_service") { | 453 executable("crash_service") { |
| 454 sources = [ | 454 sources = [ |
| 455 "tools/content_shell_crash_service.cc", | 455 "tools/content_shell_crash_service.cc", |
| 456 ] | 456 ] |
| 457 | 457 |
| 458 deps = [ | 458 deps = [ |
| 459 "//base", | 459 "//base", |
| 460 "//build/config/sanitizers:deps", | 460 "//build/config/sanitizers:deps", |
| 461 "//components/crash/content/tools:crash_service", | 461 "//components/crash/tools:crash_service", |
| 462 ] | 462 ] |
| 463 | 463 |
| 464 configs -= [ "//build/config/win:console" ] | 464 configs -= [ "//build/config/win:console" ] |
| 465 configs += [ "//build/config/win:windowed" ] | 465 configs += [ "//build/config/win:windowed" ] |
| 466 } | 466 } |
| 467 } | 467 } |
| OLD | NEW |