Added test cases for bug 588363 (no_r=me).
[mozilla-central.git] / build / cl.py
blob4abd9c2be50e2c5f8a79b2a018c6c0bc6cfd9ce7
1 # ***** BEGIN LICENSE BLOCK *****
2 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 # The contents of this file are subject to the Mozilla Public License Version
5 # 1.1 (the "License"); you may not use this file except in compliance with
6 # the License. You may obtain a copy of the License at
7 # http://www.mozilla.org/MPL/
9 # Software distributed under the License is distributed on an "AS IS" basis,
10 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 # for the specific language governing rights and limitations under the
12 # License.
14 # The Original Code is cl.py: a python wrapper for cl to automatically generate
15 # dependency information.
17 # The Initial Developer of the Original Code is
18 # Mozilla Foundation.
19 # Portions created by the Initial Developer are Copyright (C) 2010
20 # the Initial Developer. All Rights Reserved.
22 # Contributor(s):
23 # Kyle Huey <me@kylehuey.com>
25 # Alternatively, the contents of this file may be used under the terms of
26 # either the GNU General Public License Version 2 or later (the "GPL"), or
27 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 # in which case the provisions of the GPL or the LGPL are applicable instead
29 # of those above. If you wish to allow use of your version of this file only
30 # under the terms of either the GPL or the LGPL, and not to allow others to
31 # use your version of this file under the terms of the MPL, indicate your
32 # decision by deleting the provisions above and replace them with the notice
33 # and other provisions required by the GPL or the LGPL. If you do not delete
34 # the provisions above, a recipient may use your version of this file under
35 # the terms of any one of the MPL, the GPL or the LGPL.
37 # ***** END LICENSE BLOCK *****
39 import os, os.path
40 import subprocess
41 import sys
43 def InvokeClWithDependencyGeneration(cmdline):
44 target = ""
45 # Figure out what the target is
46 for arg in cmdline:
47 if arg.startswith("-Fo"):
48 target = arg[3:]
49 break
51 if target == None:
52 print >>sys.stderr, "No target set" and sys.exit(1)
54 # The deps target lives here
55 depstarget = os.path.basename(target) + ".pp"
57 cmdline += ['-showIncludes']
58 cl = subprocess.Popen(cmdline, stdout=subprocess.PIPE)
60 deps = set()
61 for line in cl.stdout:
62 # cl -showIncludes prefixes every header with "Note: including file:"
63 # and an indentation corresponding to the depth (which we don't need)
64 if line.startswith("Note: including file:"):
65 dep = line[21:].strip()
66 # We can't handle pathes with spaces properly in mddepend.pl, but
67 # we can assume that anything in a path with spaces is a system
68 # header and throw it away.
69 if dep.find(' ') == -1:
70 deps.add(dep)
71 else:
72 sys.stdout.write(line) # Make sure we preserve the relevant output
73 # from cl
75 ret = cl.wait()
76 if ret != 0 or target == "":
77 sys.exit(ret)
79 depsdir = os.path.normpath(os.path.join(os.path.dirname(target), ".deps"))
80 depstarget = os.path.join(depsdir, depstarget)
81 if not os.path.isdir(depsdir):
82 try:
83 os.makedirs(depsdir)
84 except OSError:
85 pass # This suppresses the error we get when the dir exists, at the
86 # cost of masking failure to create the directory. We'll just
87 # die on the next line though, so it's not that much of a loss.
89 f = open(depstarget, "w")
90 for dep in sorted(deps):
91 print >>f, "%s: %s" % (target, dep)
93 if __name__ == "__main__":
94 InvokeClWithDependencyGeneration(sys.argv[1:])