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

Side by Side Diff: pylib/gyp/MSVSSettings.py

Issue 645223002: Add back support for /Gv now that gyp-win64 has VS2013 (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Rebase 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
« no previous file with comments | « no previous file | pylib/gyp/MSVSSettings_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 Google Inc. All rights reserved. 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 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 r"""Code to validate and convert settings of the Microsoft build tools. 5 r"""Code to validate and convert settings of the Microsoft build tools.
6 6
7 This file contains code to validate and convert settings of the Microsoft 7 This file contains code to validate and convert settings of the Microsoft
8 build tools. The function ConvertToMSBuildSettings(), ValidateMSVSSettings(), 8 build tools. The function ConvertToMSBuildSettings(), ValidateMSVSSettings(),
9 and ValidateMSBuildSettings() are the entry points. 9 and ValidateMSBuildSettings() are the entry points.
10 10
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 'StackFrameRuntimeCheck', # /RTCs 595 'StackFrameRuntimeCheck', # /RTCs
596 'UninitializedLocalUsageCheck', # /RTCu 596 'UninitializedLocalUsageCheck', # /RTCu
597 'EnableFastChecks'])) # /RTC1 597 'EnableFastChecks'])) # /RTC1
598 _Same(_compile, 'BrowseInformation', 598 _Same(_compile, 'BrowseInformation',
599 _Enumeration(['false', 599 _Enumeration(['false',
600 'true', # /FR 600 'true', # /FR
601 'true'])) # /Fr 601 'true'])) # /Fr
602 _Same(_compile, 'CallingConvention', 602 _Same(_compile, 'CallingConvention',
603 _Enumeration(['Cdecl', # /Gd 603 _Enumeration(['Cdecl', # /Gd
604 'FastCall', # /Gr 604 'FastCall', # /Gr
605 'StdCall'])) # /Gz 605 'StdCall', # /Gz
606 'VectorCall'])) # /Gv
606 _Same(_compile, 'CompileAs', 607 _Same(_compile, 'CompileAs',
607 _Enumeration(['Default', 608 _Enumeration(['Default',
608 'CompileAsC', # /TC 609 'CompileAsC', # /TC
609 'CompileAsCpp'])) # /TP 610 'CompileAsCpp'])) # /TP
610 _Same(_compile, 'DebugInformationFormat', 611 _Same(_compile, 'DebugInformationFormat',
611 _Enumeration(['', # Disabled 612 _Enumeration(['', # Disabled
612 'OldStyle', # /Z7 613 'OldStyle', # /Z7
613 None, 614 None,
614 'ProgramDatabase', # /Zi 615 'ProgramDatabase', # /Zi
615 'EditAndContinue'])) # /ZI 616 'EditAndContinue'])) # /ZI
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 _MSVSOnly(_manifest, 'UseUnicodeResponseFiles', _boolean) 1070 _MSVSOnly(_manifest, 'UseUnicodeResponseFiles', _boolean)
1070 1071
1071 # MSBuild options not found in MSVS. 1072 # MSBuild options not found in MSVS.
1072 _MSBuildOnly(_manifest, 'EnableDPIAwareness', _boolean) 1073 _MSBuildOnly(_manifest, 'EnableDPIAwareness', _boolean)
1073 _MSBuildOnly(_manifest, 'GenerateCategoryTags', _boolean) # /category 1074 _MSBuildOnly(_manifest, 'GenerateCategoryTags', _boolean) # /category
1074 _MSBuildOnly(_manifest, 'ManifestFromManagedAssembly', 1075 _MSBuildOnly(_manifest, 'ManifestFromManagedAssembly',
1075 _file_name) # /managedassemblyname 1076 _file_name) # /managedassemblyname
1076 _MSBuildOnly(_manifest, 'OutputResourceManifests', _string) # /outputresource 1077 _MSBuildOnly(_manifest, 'OutputResourceManifests', _string) # /outputresource
1077 _MSBuildOnly(_manifest, 'SuppressDependencyElement', _boolean) # /nodependency 1078 _MSBuildOnly(_manifest, 'SuppressDependencyElement', _boolean) # /nodependency
1078 _MSBuildOnly(_manifest, 'TrackerLogDirectory', _folder_name) 1079 _MSBuildOnly(_manifest, 'TrackerLogDirectory', _folder_name)
OLDNEW
« no previous file with comments | « no previous file | pylib/gyp/MSVSSettings_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698