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

Side by Side Diff: test/win/compiler_flags/exception-handling.gyp

Issue 9443044: Beginnings of some msvs_... emulation (windows ninja) (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: better place for normpath to remove need for $!-no-escape Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 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_eh_off',
9 'product_name': 'test_eh_off',
10 'type': 'executable',
11 'msvs_settings': {
12 'VCCLCompilerTool': {
13 'ExceptionHandling': '0',
14 'WarnAsError': 'true'
15 }
16 },
17 'sources': [
18 'hello.cc'
19 ]
20 },
21 {
22 'target_name': 'test_eh_s',
23 'product_name': 'test_eh_s',
24 'type': 'executable',
25 'msvs_settings': {
26 'VCCLCompilerTool': {
27 'ExceptionHandling': '1',
28 'WarnAsError': 'true'
29 }
30 },
31 'sources': [
32 'exception_handling_on.cc'
33 ]
34 },
35 {
36 'target_name': 'test_eh_a',
37 'product_name': 'test_eh_a',
38 'type': 'executable',
39 'msvs_settings': {
40 'VCCLCompilerTool': {
41 'ExceptionHandling': '2',
42 'WarnAsError': 'true'
43 }
44 },
45 'sources': [
46 'exception_handling_on.cc'
47 ]
48 },
49 ]
50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698