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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: test/win/compiler-flags/floating-point-model.gyp
diff --git a/test/win/compiler-flags/debug-format.gyp b/test/win/compiler-flags/floating-point-model.gyp
similarity index 56%
copy from test/win/compiler-flags/debug-format.gyp
copy to test/win/compiler-flags/floating-point-model.gyp
index daaed23ff1f7c0da2a66dae2e57b8fe2ab46c40c..7147a8cd6a157ea69faa3b604f79753ee58ce3e2 100644
--- a/test/win/compiler-flags/debug-format.gyp
+++ b/test/win/compiler-flags/floating-point-model.gyp
@@ -1,45 +1,40 @@
-# Copyright (c) 2012 Google Inc. All rights reserved.
+# Copyright (c) 2014 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
- 'target_name': 'test-debug-format-off',
+ 'target_name': 'test-floating-point-model-default',
'type': 'executable',
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'DebugInformationFormat': '0'
- }
- },
'sources': ['hello.cc'],
},
{
- 'target_name': 'test-debug-format-oldstyle',
+ 'target_name': 'test-floating-point-model-precise',
'type': 'executable',
'msvs_settings': {
'VCCLCompilerTool': {
- 'DebugInformationFormat': '1'
+ 'FloatingPointModel': '0'
}
},
'sources': ['hello.cc'],
},
{
- 'target_name': 'test-debug-format-pdb',
+ 'target_name': 'test-floating-point-model-strict',
'type': 'executable',
'msvs_settings': {
'VCCLCompilerTool': {
- 'DebugInformationFormat': '3'
+ 'FloatingPointModel': '1'
}
},
'sources': ['hello.cc'],
},
{
- 'target_name': 'test-debug-format-editcontinue',
+ 'target_name': 'test-floating-point-model-fast',
'type': 'executable',
'msvs_settings': {
'VCCLCompilerTool': {
- 'DebugInformationFormat': '4'
+ 'FloatingPointModel': '2'
}
},
'sources': ['hello.cc'],

Powered by Google App Engine
This is Rietveld 408576698