| 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("//build/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 # - RC file. | 409 # - RC file. |
| 410 # - 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 410 # - 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 411 sources = [ | 411 sources = [ |
| 412 "app/shell_main.cc", | 412 "app/shell_main.cc", |
| 413 ] | 413 ] |
| 414 | 414 |
| 415 deps = [ | 415 deps = [ |
| 416 ":content_shell_lib", | 416 ":content_shell_lib", |
| 417 ":pak", | 417 ":pak", |
| 418 "//base/allocator", | 418 "//base/allocator", |
| 419 "//build/config/sanitizers:deps", |
| 419 "//build/win:default_exe_manifest", | 420 "//build/win:default_exe_manifest", |
| 420 ] | 421 ] |
| 421 | 422 |
| 422 if (is_win) { | 423 if (is_win) { |
| 423 deps += [ "//sandbox" ] | 424 deps += [ "//sandbox" ] |
| 424 if (!is_asan) { | 425 if (!is_asan) { |
| 425 configs -= [ "//build/config/win:console" ] | 426 configs -= [ "//build/config/win:console" ] |
| 426 configs += [ "//build/config/win:windowed" ] | 427 configs += [ "//build/config/win:windowed" ] |
| 427 } | 428 } |
| 428 } | 429 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 450 | 451 |
| 451 if (is_win) { | 452 if (is_win) { |
| 452 # GYP version: content/content_shell_and_tests.gyp:content_shell_crash_service | 453 # GYP version: content/content_shell_and_tests.gyp:content_shell_crash_service |
| 453 executable("crash_service") { | 454 executable("crash_service") { |
| 454 sources = [ | 455 sources = [ |
| 455 "tools/content_shell_crash_service.cc", | 456 "tools/content_shell_crash_service.cc", |
| 456 ] | 457 ] |
| 457 | 458 |
| 458 deps = [ | 459 deps = [ |
| 459 "//base", | 460 "//base", |
| 461 "//build/config/sanitizers:deps", |
| 460 "//components/crash/tools:crash_service", | 462 "//components/crash/tools:crash_service", |
| 461 ] | 463 ] |
| 462 | 464 |
| 463 configs -= [ "//build/config/win:console" ] | 465 configs -= [ "//build/config/win:console" ] |
| 464 configs += [ "//build/config/win:windowed" ] | 466 configs += [ "//build/config/win:windowed" ] |
| 465 } | 467 } |
| 466 } | 468 } |
| OLD | NEW |