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

Side by Side Diff: test/win/linker-flags/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
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'test_safeseh_default',
9 'type': 'executable',
10 'msvs_settings': {
11 },
12 'sources': [
13 'safeseh_hello.cc',
14 'safeseh_zero.asm',
wtc 2014/04/10 22:21:43 All object files produced by Visual C++ are appare
15 ],
16 },
17 {
18 'target_name': 'test_safeseh_no',
19 'type': 'executable',
20 'msvs_settings': {
21 'VCLinkerTool': {
22 'ImageHasSafeExceptionHandlers': 'false',
23 },
24 },
25 'sources': [
26 'safeseh_hello.cc',
27 'safeseh_zero.asm',
28 ],
29 },
30 {
31 'target_name': 'test_safeseh_yes',
32 'type': 'executable',
33 'msvs_settings': {
34 'VCLinkerTool': {
35 'ImageHasSafeExceptionHandlers': 'true',
36 },
37 'MASM': {
wtc 2014/04/10 22:21:43 Ideally I don't want to add the 'MASM' setting, an
38 'UseSafeExceptionHandlers': 'true',
39 },
40 },
41 'sources': [
42 'safeseh_hello.cc',
43 'safeseh_zero.asm',
44 ],
45 },
46 ]
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698