Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(728)

Side by Side Diff: chrome/BUILD.gn

Issue 1479283002: Reland: Crashpad Windows: Use the Crashpad client instead of Breakpad on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: with crashpad 1f3ced1846f3956e678c562c90e0d6c970543617 Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/secondary/third_party/crashpad/crashpad/util/BUILD.gn ('k') | chrome/app/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
161 "//ui/gfx", 162 "//ui/gfx",
162 "//win8/delegate_execute", 163 "//win8/delegate_execute",
163 "//win8/metro_driver", 164 "//win8/metro_driver",
164 ] 165 ]
165 data_deps = [ 166 data_deps = [
166 "//chrome/app/version_assembly:version_assembly_manifest", 167 "//chrome/app/version_assembly:version_assembly_manifest",
167 ] 168 ]
168 169
169 libs = [ 170 libs = [
170 "wintrust.lib", 171 "wintrust.lib",
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 # This manifest matches what GYP produces. It may not even be necessary. 398 # This manifest matches what GYP produces. It may not even be necessary.
398 windows_manifest("chrome_child_manifest") { 399 windows_manifest("chrome_child_manifest") {
399 sources = [ 400 sources = [
400 as_invoker_manifest, 401 as_invoker_manifest,
401 ] 402 ]
402 type = "dll" 403 type = "dll"
403 } 404 }
404 405
405 shared_library("chrome_child") { 406 shared_library("chrome_child") {
406 sources = [ 407 sources = [
408 "app/chrome_crash_reporter_client.cc",
409 "app/chrome_crash_reporter_client.h",
407 "app/chrome_main.cc", 410 "app/chrome_main.cc",
408 "app/chrome_main_delegate.cc", 411 "app/chrome_main_delegate.cc",
409 "app/chrome_main_delegate.h", 412 "app/chrome_main_delegate.h",
410 "app/close_handle_hook_win.cc", 413 "app/close_handle_hook_win.cc",
411 "app/close_handle_hook_win.h", 414 "app/close_handle_hook_win.h",
412 ] 415 ]
413 416
414 configs += [ "//build/config/compiler:wexit_time_destructors" ] 417 configs += [ "//build/config/compiler:wexit_time_destructors" ]
415 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] 418 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ]
416 419
417 deps = [ 420 deps = [
418 ":child_dependencies", 421 ":child_dependencies",
419 ":chrome_child_manifest", 422 ":chrome_child_manifest",
420 ":chrome_dll_version", 423 ":chrome_dll_version",
421 "//base/allocator", 424 "//base/allocator",
422 "//build/config/sanitizers:deps", 425 "//build/config/sanitizers:deps",
423 "//chrome/browser/policy:path_parser", 426 "//chrome/browser/policy:path_parser",
427 "//components/browser_watcher:browser_watcher_client",
428 "//components/crash/content/app",
424 "//content/public/app:child", 429 "//content/public/app:child",
425 ] 430 ]
426 431
427 if (is_win) { 432 if (is_win) {
428 if (symbol_level == 2) { 433 if (symbol_level == 2) {
429 # Incremental linking doesn't work on this target in debug mode with 434 # Incremental linking doesn't work on this target in debug mode with
430 # full symbols, but does work in other cases, including minimal 435 # full symbols, but does work in other cases, including minimal
431 # symbols. 436 # symbols.
432 configs -= [ "//build/config/win:default_incremental_linking" ] 437 configs -= [ "//build/config/win:default_incremental_linking" ]
433 configs += [ "//build/config/win:incremental_linking" ] 438 configs += [ "//build/config/win:incremental_linking" ]
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1076 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1072 "//chrome/tools/build/linux/chrome-wrapper", 1077 "//chrome/tools/build/linux/chrome-wrapper",
1073 "//third_party/xdg-utils/scripts/xdg-mime", 1078 "//third_party/xdg-utils/scripts/xdg-mime",
1074 "//third_party/xdg-utils/scripts/xdg-settings", 1079 "//third_party/xdg-utils/scripts/xdg-settings",
1075 ] 1080 ]
1076 outputs = [ 1081 outputs = [
1077 "$root_out_dir/{{source_file_part}}", 1082 "$root_out_dir/{{source_file_part}}",
1078 ] 1083 ]
1079 } 1084 }
1080 } 1085 }
OLDNEW
« no previous file with comments | « build/secondary/third_party/crashpad/crashpad/util/BUILD.gn ('k') | chrome/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698