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

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

Issue 739303003: Cleanup pylint errors (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Fix mac 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 | « pylib/gyp/MSVSNew.py ('k') | pylib/gyp/MSVSVersion.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 """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
11 This file was created by comparing the projects created by Visual Studio 2008 11 This file was created by comparing the projects created by Visual Studio 2008
12 and Visual Studio 2010 for all available settings through the user interface. 12 and Visual Studio 2010 for all available settings through the user interface.
13 The MSBuild schemas were also considered. They are typically found in the 13 The MSBuild schemas were also considered. They are typically found in the
14 MSBuild install directory, e.g. c:\Program Files (x86)\MSBuild 14 MSBuild install directory, e.g. c:\Program Files (x86)\MSBuild
15 """ 15 """
(...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 _MSVSOnly(_manifest, 'UseUnicodeResponseFiles', _boolean) 1069 _MSVSOnly(_manifest, 'UseUnicodeResponseFiles', _boolean)
1070 1070
1071 # MSBuild options not found in MSVS. 1071 # MSBuild options not found in MSVS.
1072 _MSBuildOnly(_manifest, 'EnableDPIAwareness', _boolean) 1072 _MSBuildOnly(_manifest, 'EnableDPIAwareness', _boolean)
1073 _MSBuildOnly(_manifest, 'GenerateCategoryTags', _boolean) # /category 1073 _MSBuildOnly(_manifest, 'GenerateCategoryTags', _boolean) # /category
1074 _MSBuildOnly(_manifest, 'ManifestFromManagedAssembly', 1074 _MSBuildOnly(_manifest, 'ManifestFromManagedAssembly',
1075 _file_name) # /managedassemblyname 1075 _file_name) # /managedassemblyname
1076 _MSBuildOnly(_manifest, 'OutputResourceManifests', _string) # /outputresource 1076 _MSBuildOnly(_manifest, 'OutputResourceManifests', _string) # /outputresource
1077 _MSBuildOnly(_manifest, 'SuppressDependencyElement', _boolean) # /nodependency 1077 _MSBuildOnly(_manifest, 'SuppressDependencyElement', _boolean) # /nodependency
1078 _MSBuildOnly(_manifest, 'TrackerLogDirectory', _folder_name) 1078 _MSBuildOnly(_manifest, 'TrackerLogDirectory', _folder_name)
OLDNEW
« no previous file with comments | « pylib/gyp/MSVSNew.py ('k') | pylib/gyp/MSVSVersion.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698