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

Side by Side Diff: build/config/win/BUILD.gn

Issue 1882833003: Reland of Fast-fail to catch VC++ compiler crashes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months 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/common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/compiler/compiler.gni") 5 import("//build/config/compiler/compiler.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/win/visual_studio_version.gni") 7 import("//build/config/win/visual_studio_version.gni")
8 8
9 assert(is_win) 9 assert(is_win)
10 10
(...skipping 18 matching lines...) Expand all
29 # line, only /safeseh. This is only accepted by ml.exe, not ml64.exe. 29 # line, only /safeseh. This is only accepted by ml.exe, not ml64.exe.
30 "/safeseh", 30 "/safeseh",
31 ] 31 ]
32 } 32 }
33 33
34 cflags = [ 34 cflags = [
35 "/Gy", # Enable function-level linking. 35 "/Gy", # Enable function-level linking.
36 "/GS", # Enable buffer security checking. 36 "/GS", # Enable buffer security checking.
37 "/FS", # Preserve previous PDB behavior. 37 "/FS", # Preserve previous PDB behavior.
38 "/bigobj", # Some of our files are bigger than the regular limits. 38 "/bigobj", # Some of our files are bigger than the regular limits.
39
40 # Tell the compiler to crash on failures. This is undocumented
41 # and unsupported but very handy.
42 "/d2FastFail",
39 ] 43 ]
40 44
41 # Force C/C++ mode for the given GN detected file type. This is necessary 45 # Force C/C++ mode for the given GN detected file type. This is necessary
42 # for precompiled headers where the same source file is compiled in both 46 # for precompiled headers where the same source file is compiled in both
43 # modes. 47 # modes.
44 cflags_c = [ "/TC" ] 48 cflags_c = [ "/TC" ]
45 cflags_cc = [ "/TP" ] 49 cflags_cc = [ "/TP" ]
46 50
47 if (visual_studio_version == "2015") { 51 if (visual_studio_version == "2015") {
48 cflags += [ 52 cflags += [
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 378
375 # Internal stuff -------------------------------------------------------------- 379 # Internal stuff --------------------------------------------------------------
376 380
377 # Config used by the MIDL template to disable warnings. 381 # Config used by the MIDL template to disable warnings.
378 config("midl_warnings") { 382 config("midl_warnings") {
379 if (is_clang) { 383 if (is_clang) {
380 # MIDL generates code like "#endif !_MIDL_USE_GUIDDEF_". 384 # MIDL generates code like "#endif !_MIDL_USE_GUIDDEF_".
381 cflags = [ "-Wno-extra-tokens" ] 385 cflags = [ "-Wno-extra-tokens" ]
382 } 386 }
383 } 387 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698