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