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

Side by Side Diff: test/win/compiler-flags/floating-point-model.gyp

Issue 720153005: ninja win: Add msvs emulation for FloatingPointModel (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 6 years, 1 month 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
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-debug-format-off', 8 'target_name': 'test-floating-point-model-default',
9 'type': 'executable',
10 'sources': ['hello.cc'],
11 },
12 {
13 'target_name': 'test-floating-point-model-precise',
9 'type': 'executable', 14 'type': 'executable',
10 'msvs_settings': { 15 'msvs_settings': {
11 'VCCLCompilerTool': { 16 'VCCLCompilerTool': {
12 'DebugInformationFormat': '0' 17 'FloatingPointModel': '0'
13 } 18 }
14 }, 19 },
15 'sources': ['hello.cc'], 20 'sources': ['hello.cc'],
16 }, 21 },
17 { 22 {
18 'target_name': 'test-debug-format-oldstyle', 23 'target_name': 'test-floating-point-model-strict',
19 'type': 'executable', 24 'type': 'executable',
20 'msvs_settings': { 25 'msvs_settings': {
21 'VCCLCompilerTool': { 26 'VCCLCompilerTool': {
22 'DebugInformationFormat': '1' 27 'FloatingPointModel': '1'
23 } 28 }
24 }, 29 },
25 'sources': ['hello.cc'], 30 'sources': ['hello.cc'],
26 }, 31 },
27 { 32 {
28 'target_name': 'test-debug-format-pdb', 33 'target_name': 'test-floating-point-model-fast',
29 'type': 'executable', 34 'type': 'executable',
30 'msvs_settings': { 35 'msvs_settings': {
31 'VCCLCompilerTool': { 36 'VCCLCompilerTool': {
32 'DebugInformationFormat': '3' 37 'FloatingPointModel': '2'
33 } 38 }
34 }, 39 },
35 'sources': ['hello.cc'], 40 'sources': ['hello.cc'],
36 },
37 {
38 'target_name': 'test-debug-format-editcontinue',
39 'type': 'executable',
40 'msvs_settings': {
41 'VCCLCompilerTool': {
42 'DebugInformationFormat': '4'
43 }
44 },
45 'sources': ['hello.cc'],
46 }, 41 },
47 ] 42 ]
48 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698