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

Side by Side Diff: Source/wtf/wtf.gyp

Issue 1207323004: Add __builtin_unreachable() to CRASH() when using Clang on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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 | « Source/wtf/BUILD.gn ('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) 2012 Google Inc. All rights reserved. 1 # Copyright (C) 2012 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'defines': [ 50 'defines': [
51 # Import features_defines from features.gypi 51 # Import features_defines from features.gypi
52 '<@(feature_defines)', 52 '<@(feature_defines)',
53 ], 53 ],
54 'conditions': [ 54 'conditions': [
55 ['OS=="win"', { 55 ['OS=="win"', {
56 'defines': [ 56 'defines': [
57 '__STD_C', 57 '__STD_C',
58 '_CRT_SECURE_NO_DEPRECATE', 58 '_CRT_SECURE_NO_DEPRECATE',
59 '_SCL_SECURE_NO_DEPRECATE', 59 '_SCL_SECURE_NO_DEPRECATE',
60 'CRASH=__debugbreak',
61 ], 60 ],
62 }], 61 }],
63 ], 62 ],
64 }, 63 },
65 }, 64 },
66 { 65 {
67 'target_name': 'wtf', 66 'target_name': 'wtf',
68 'type': '<(component)', 67 'type': '<(component)',
69 'include_dirs': [ 68 'include_dirs': [
70 '..', 69 '..',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 ['exclude', 'CF\\.cpp$'], 147 ['exclude', 'CF\\.cpp$'],
149 ['exclude', 'Mac\\.mm$'], 148 ['exclude', 'Mac\\.mm$'],
150 # mac is the only OS that uses WebKit's copy of TCMalloc. 149 # mac is the only OS that uses WebKit's copy of TCMalloc.
151 ['exclude', 'TC.*\\.(cpp|h)$'], 150 ['exclude', 'TC.*\\.(cpp|h)$'],
152 ], 151 ],
153 }], 152 }],
154 ], 153 ],
155 }, 154 },
156 ] 155 ]
157 } 156 }
OLDNEW
« no previous file with comments | « Source/wtf/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698