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

Side by Side Diff: test/win/ml-safeseh/ml-safeseh.gyp

Issue 217813007: Pass the /safeseh option to ml.exe. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Rename the assmebly code test file. Created 6 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
OLDNEW
1 # Copyright (c) 2012 Google Inc. All rights reserved. 1 # Copyright (c) 2014 Google Inc. 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'test_pdbname', 8 'target_name': 'ml_safeseh',
9 'type': 'executable', 9 'type': 'executable',
10 'sources': [ 10 'sources': [
11 'hello.cc', 11 'hello.cc',
12 'pdbname.cc', 12 'a.asm',
13 ], 13 ],
14 'msvs_settings': { 14 'msvs_settings': {
15 'VCCLCompilerTool': { 15 'VCLinkerTool': {
16 'DebugInformationFormat': '3', 16 'ImageHasSafeExceptionHandlers': 'true',
17 }, 17 },
18 'VCLinkerTool': { 18 'MASM': {
19 'GenerateDebugInformation': 'true', 19 'UseSafeExceptionHandlers': 'true',
20 }, 20 },
21 }, 21 },
22 }, 22 },
23 ] 23 ]
24 } 24 }
OLDNEW
« test/win/linker-flags/safeseh.gyp ('K') | « test/win/ml-safeseh/hello.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698