| 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/console_app.gni") | 8 import("//build/config/win/console_app.gni") |
| 9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 "//content/public/browser", | 186 "//content/public/browser", |
| 187 "//content/public/common", | 187 "//content/public/common", |
| 188 "//content/public/plugin", | 188 "//content/public/plugin", |
| 189 "//content/public/renderer", | 189 "//content/public/renderer", |
| 190 "//content/public/utility", | 190 "//content/public/utility", |
| 191 ] | 191 ] |
| 192 deps = [ | 192 deps = [ |
| 193 ":resources", | 193 ":resources", |
| 194 "//base", | 194 "//base", |
| 195 "//base:base_static", | 195 "//base:base_static", |
| 196 "//base/allocator", | |
| 197 "//base/third_party/dynamic_annotations", | 196 "//base/third_party/dynamic_annotations", |
| 198 "//cc", | 197 "//cc", |
| 199 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 198 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 200 "//components/devtools_discovery", | 199 "//components/devtools_discovery", |
| 201 "//components/devtools_http_handler", | 200 "//components/devtools_http_handler", |
| 202 "//components/plugins/renderer", | 201 "//components/plugins/renderer", |
| 203 "//components/test_runner:test_runner", | 202 "//components/test_runner:test_runner", |
| 204 "//components/url_formatter", | 203 "//components/url_formatter", |
| 205 "//components/web_cache/renderer", | 204 "//components/web_cache/renderer", |
| 206 "//content:resources", | 205 "//content:resources", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 # - 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 410 # - 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 412 sources = [ | 411 sources = [ |
| 413 "app/shell_main.cc", | 412 "app/shell_main.cc", |
| 414 ] | 413 ] |
| 415 | 414 |
| 416 defines = [] | 415 defines = [] |
| 417 | 416 |
| 418 deps = [ | 417 deps = [ |
| 419 ":content_shell_lib", | 418 ":content_shell_lib", |
| 420 ":pak", | 419 ":pak", |
| 421 "//base/allocator", | |
| 422 "//build/config/sanitizers:deps", | 420 "//build/config/sanitizers:deps", |
| 423 "//build/win:default_exe_manifest", | 421 "//build/win:default_exe_manifest", |
| 424 ] | 422 ] |
| 425 | 423 |
| 426 if (is_win) { | 424 if (is_win) { |
| 427 deps += [ "//sandbox" ] | 425 deps += [ "//sandbox" ] |
| 428 if (win_console_app) { | 426 if (win_console_app) { |
| 429 defines += [ "WIN_CONSOLE_APP" ] | 427 defines += [ "WIN_CONSOLE_APP" ] |
| 430 } else { | 428 } else { |
| 431 # Set /SUBSYSTEM:WINDOWS unless a console build has been requested. | 429 # Set /SUBSYSTEM:WINDOWS unless a console build has been requested. |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 sources = [ | 489 sources = [ |
| 492 "app/shell_content_main.cc", | 490 "app/shell_content_main.cc", |
| 493 "app/shell_content_main.h", | 491 "app/shell_content_main.h", |
| 494 ] | 492 ] |
| 495 | 493 |
| 496 deps = [ | 494 deps = [ |
| 497 ":content_shell_lib", | 495 ":content_shell_lib", |
| 498 ] | 496 ] |
| 499 } | 497 } |
| 500 } | 498 } |
| OLD | NEW |