| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/locales.gni") | 8 import("//build/config/locales.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "//chrome/installer/util", | 151 "//chrome/installer/util", |
| 152 "//chrome_elf", | 152 "//chrome_elf", |
| 153 "//components/browser_watcher:browser_watcher_client", | 153 "//components/browser_watcher:browser_watcher_client", |
| 154 "//components/crash/content/app", | 154 "//components/crash/content/app", |
| 155 "//components/crash/core/common", | 155 "//components/crash/core/common", |
| 156 "//components/flags_ui:switches", | 156 "//components/flags_ui:switches", |
| 157 "//content:sandbox_helper_win", | 157 "//content:sandbox_helper_win", |
| 158 "//content/public/common:static_switches", | 158 "//content/public/common:static_switches", |
| 159 "//crypto", | 159 "//crypto", |
| 160 "//sandbox", | 160 "//sandbox", |
| 161 "//third_party/crashpad/crashpad/handler:handler_lib", | |
| 162 "//ui/gfx", | 161 "//ui/gfx", |
| 163 "//win8/delegate_execute", | 162 "//win8/delegate_execute", |
| 164 "//win8/metro_driver", | 163 "//win8/metro_driver", |
| 165 ] | 164 ] |
| 166 data_deps = [ | 165 data_deps = [ |
| 167 "//chrome/app/version_assembly:version_assembly_manifest", | 166 "//chrome/app/version_assembly:version_assembly_manifest", |
| 168 ] | 167 ] |
| 169 | 168 |
| 170 libs = [ | 169 libs = [ |
| 171 "wintrust.lib", | 170 "wintrust.lib", |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 # This manifest matches what GYP produces. It may not even be necessary. | 397 # This manifest matches what GYP produces. It may not even be necessary. |
| 399 windows_manifest("chrome_child_manifest") { | 398 windows_manifest("chrome_child_manifest") { |
| 400 sources = [ | 399 sources = [ |
| 401 as_invoker_manifest, | 400 as_invoker_manifest, |
| 402 ] | 401 ] |
| 403 type = "dll" | 402 type = "dll" |
| 404 } | 403 } |
| 405 | 404 |
| 406 shared_library("chrome_child") { | 405 shared_library("chrome_child") { |
| 407 sources = [ | 406 sources = [ |
| 408 "app/chrome_crash_reporter_client.cc", | |
| 409 "app/chrome_crash_reporter_client.h", | |
| 410 "app/chrome_main.cc", | 407 "app/chrome_main.cc", |
| 411 "app/chrome_main_delegate.cc", | 408 "app/chrome_main_delegate.cc", |
| 412 "app/chrome_main_delegate.h", | 409 "app/chrome_main_delegate.h", |
| 413 "app/close_handle_hook_win.cc", | 410 "app/close_handle_hook_win.cc", |
| 414 "app/close_handle_hook_win.h", | 411 "app/close_handle_hook_win.h", |
| 415 ] | 412 ] |
| 416 | 413 |
| 417 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 414 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 418 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 415 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
| 419 | 416 |
| 420 deps = [ | 417 deps = [ |
| 421 ":child_dependencies", | 418 ":child_dependencies", |
| 422 ":chrome_child_manifest", | 419 ":chrome_child_manifest", |
| 423 ":chrome_dll_version", | 420 ":chrome_dll_version", |
| 424 "//base/allocator", | 421 "//base/allocator", |
| 425 "//build/config/sanitizers:deps", | 422 "//build/config/sanitizers:deps", |
| 426 "//chrome/browser/policy:path_parser", | 423 "//chrome/browser/policy:path_parser", |
| 427 "//components/browser_watcher:browser_watcher_client", | |
| 428 "//components/crash/content/app", | |
| 429 "//content/public/app:child", | 424 "//content/public/app:child", |
| 430 ] | 425 ] |
| 431 | 426 |
| 432 if (is_win) { | 427 if (is_win) { |
| 433 if (symbol_level == 2) { | 428 if (symbol_level == 2) { |
| 434 # Incremental linking doesn't work on this target in debug mode with | 429 # Incremental linking doesn't work on this target in debug mode with |
| 435 # full symbols, but does work in other cases, including minimal | 430 # full symbols, but does work in other cases, including minimal |
| 436 # symbols. | 431 # symbols. |
| 437 configs -= [ "//build/config/win:default_incremental_linking" ] | 432 configs -= [ "//build/config/win:default_incremental_linking" ] |
| 438 configs += [ "//build/config/win:incremental_linking" ] | 433 configs += [ "//build/config/win:incremental_linking" ] |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1071 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1077 "//chrome/tools/build/linux/chrome-wrapper", | 1072 "//chrome/tools/build/linux/chrome-wrapper", |
| 1078 "//third_party/xdg-utils/scripts/xdg-mime", | 1073 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1079 "//third_party/xdg-utils/scripts/xdg-settings", | 1074 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1080 ] | 1075 ] |
| 1081 outputs = [ | 1076 outputs = [ |
| 1082 "$root_out_dir/{{source_file_part}}", | 1077 "$root_out_dir/{{source_file_part}}", |
| 1083 ] | 1078 ] |
| 1084 } | 1079 } |
| 1085 } | 1080 } |
| OLD | NEW |