| 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 group("content_shell") { | 446 group("content_shell") { |
| 447 testonly = true | 447 testonly = true |
| 448 deps = [ | 448 deps = [ |
| 449 ":content_shell_lib", | 449 ":content_shell_lib", |
| 450 ] | 450 ] |
| 451 } | 451 } |
| 452 } | 452 } |
| 453 | 453 |
| 454 if (is_win) { | 454 if (is_win) { |
| 455 # GYP version: content/content_shell_and_tests.gyp:content_shell_crash_service | 455 # GYP version: content/content_shell_and_tests.gyp:content_shell_crash_service |
| 456 executable("crash_service") { | 456 executable("content_shell_crash_service") { |
| 457 sources = [ | 457 sources = [ |
| 458 "tools/content_shell_crash_service.cc", | 458 "tools/content_shell_crash_service.cc", |
| 459 ] | 459 ] |
| 460 | 460 |
| 461 deps = [ | 461 deps = [ |
| 462 "//base", | 462 "//base", |
| 463 "//build/config/sanitizers:deps", | 463 "//build/config/sanitizers:deps", |
| 464 "//components/crash/content/tools:crash_service", | 464 "//components/crash/content/tools:crash_service", |
| 465 ] | 465 ] |
| 466 | 466 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 482 sources = [ | 482 sources = [ |
| 483 "app/shell_content_main.cc", | 483 "app/shell_content_main.cc", |
| 484 "app/shell_content_main.h", | 484 "app/shell_content_main.h", |
| 485 ] | 485 ] |
| 486 | 486 |
| 487 deps = [ | 487 deps = [ |
| 488 ":content_shell_lib", | 488 ":content_shell_lib", |
| 489 ] | 489 ] |
| 490 } | 490 } |
| 491 } | 491 } |
| OLD | NEW |