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

Side by Side Diff: trunk/pylib/gyp/generator/msvs.py

Issue 306051: Add AUTHORS and LICENSE files, and copyright headers to relevant source files... (Closed) Base URL: http://gyp.googlecode.com/svn/
Patch Set: '' Created 11 years, 2 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
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 # Copyright (c) 2009 Google Inc. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
3 import os 7 import os
4 import re 8 import re
5 import subprocess 9 import subprocess
6 import sys 10 import sys
7 11
8 import gyp.MSVSNew as MSVSNew 12 import gyp.MSVSNew as MSVSNew
9 import gyp.MSVSProject as MSVSProject 13 import gyp.MSVSProject as MSVSProject
10 import gyp.MSVSToolFile as MSVSToolFile 14 import gyp.MSVSToolFile as MSVSToolFile
11 import gyp.MSVSUserFile as MSVSUserFile 15 import gyp.MSVSUserFile as MSVSUserFile
12 import gyp.MSVSVersion as MSVSVersion 16 import gyp.MSVSVersion as MSVSVersion
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 _ProjectObject(sln_path, p, project_objs, projects) 1079 _ProjectObject(sln_path, p, project_objs, projects)
1076 # Create folder hierarchy. 1080 # Create folder hierarchy.
1077 root_entries = _GatherSolutionFolders(project_objs) 1081 root_entries = _GatherSolutionFolders(project_objs)
1078 # Create solution. 1082 # Create solution.
1079 sln = MSVSNew.MSVSSolution(sln_path, 1083 sln = MSVSNew.MSVSSolution(sln_path,
1080 entries=root_entries, 1084 entries=root_entries,
1081 variants=configs, 1085 variants=configs,
1082 websiteProperties=False, 1086 websiteProperties=False,
1083 version=msvs_version) 1087 version=msvs_version)
1084 sln.Write() 1088 sln.Write()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698