Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Crashpad Authors. All rights reserved. | 1 # Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 # | 2 # |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
| 5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
| 6 # | 6 # |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 # | 8 # |
| 9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 252 ['OS=="win"', { | 252 ['OS=="win"', { |
| 253 'link_settings': { | 253 'link_settings': { |
| 254 'libraries': [ | 254 'libraries': [ |
| 255 '-ladvapi32.lib', | 255 '-ladvapi32.lib', |
| 256 '-lrpcrt4.lib', | 256 '-lrpcrt4.lib', |
| 257 '-lwinhttp.lib', | 257 '-lwinhttp.lib', |
| 258 ], | 258 ], |
| 259 }, | 259 }, |
| 260 'msvs_disabled_warnings': [ | 260 'msvs_disabled_warnings': [ |
| 261 4201, # nonstandard extension used : nameless struct/union. | 261 4201, # nonstandard extension used : nameless struct/union. |
| 262 4577, # 'noexcept' used with no exception handling mode specified | |
|
Mark Mentovai
2015/12/14 23:51:30
Is there a macro that says that exceptions are off
brucedawson
2015/12/15 00:00:56
We could do that, but it seems more fragile.
My im
Mark Mentovai
2015/12/15 00:58:56
brucedawson wrote:
| |
| 262 ], | 263 ], |
| 263 'conditions': [ | 264 'conditions': [ |
| 264 ['target_arch=="ia32"', { | 265 ['target_arch=="ia32"', { |
| 265 'msvs_settings': { | 266 'msvs_settings': { |
| 266 'MASM': { | 267 'MASM': { |
| 267 'UseSafeExceptionHandlers': 'true', | 268 'UseSafeExceptionHandlers': 'true', |
| 268 }, | 269 }, |
| 269 }, | 270 }, |
| 270 }], | 271 }], |
| 271 ], | 272 ], |
| 272 }], | 273 }], |
| 273 ], | 274 ], |
| 274 }, | 275 }, |
| 275 ], | 276 ], |
| 276 } | 277 } |
| OLD | NEW |