1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import glob
import sys
from shutil import copyfile
srcDir = sys.argv[1]
# Get list of existing directories to use as configs
configs = []
for root, dirs, files in os.walk("out"):
for outDir in dirs:
if os.path.exists("out/" + outDir + "/build.ninja.d"):
configs.append(outDir)
break
# Ensure directories exist
try:
os.makedirs("out/sln/obj")
except OSError:
pass
# Remove old files
for root, dirs, files in os.walk("out/sln"):
for name in files:
os.remove(os.path.join(root, name))
# Copy filter files unmodified
for filterFile in glob.glob("out/" + srcDir + "/obj/*.filters"):
copyfile(filterFile, filterFile.replace("out/" + srcDir, "out/sln"))
# Copy Solution file, with additional configurations
slnLines = iter(open("out/" + srcDir + "/all.sln"))
newSlnLines = []
for line in slnLines:
newSlnLines.append(line)
if "SolutionConfigurationPlatforms" in line:
slnConfig = slnLines.next()
for config in configs:
newSlnLines.append(slnConfig.replace("GN", config))
elif "ProjectConfigurationPlatforms" in line:
activeCfg = slnLines.next()
while "EndGlobalSection" not in activeCfg:
buildCfg = slnLines.next()
for config in configs:
newSlnLines.append(activeCfg.replace("GN", config))
newSlnLines.append(buildCfg.replace("GN", config))
activeCfg = slnLines.next()
newSlnLines.append(activeCfg)
with open("out/sln/skia.sln", "w") as newSln:
newSln.writelines(newSlnLines)
# Now bring over all project files with modification
for srcProjFilename in glob.glob("out/" + srcDir + "/obj/*.vcxproj"):
with open(srcProjFilename) as srcProjFile:
projLines = iter(srcProjFile)
newProjLines = []
for line in projLines:
if "ProjectConfigurations" in line:
newProjLines.append(line)
projConfigLines = [
projLines.next(),
projLines.next(),
projLines.next(),
projLines.next() ]
for config in configs:
for projConfigLine in projConfigLines:
newProjLines.append(
projConfigLine.replace("GN", config))
elif "<OutDir" in line:
newProjLines.append(line.replace(srcDir, "$(Configuration)"))
else:
newProjLines.append(line)
newName = "out/sln/obj/" + os.path.basename(srcProjFilename)
with open(newName, "w") as newProj:
newProj.writelines(newProjLines)
|