OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Run 'candle' and 'light' to transform .wxs to .msi.""" | 6 """Run 'candle' and 'light' to transform .wxs to .msi.""" |
7 | 7 |
8 from optparse import OptionParser | 8 from optparse import OptionParser |
9 import os | 9 import os |
10 import subprocess | 10 import subprocess |
11 import sys | 11 import sys |
12 | 12 |
13 def run(command, filter=None): | 13 def run(command, filter=None): |
14 popen = subprocess.Popen( | 14 popen = subprocess.Popen( |
15 command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) | 15 command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) |
16 out, _ = popen.communicate() | 16 out, _ = popen.communicate() |
17 for line in out.splitlines(): | 17 for line in out.splitlines(): |
18 if filter and line.strip() != filter: | 18 if filter and line.strip() != filter: |
19 print line | 19 print line |
20 return popen.returncode | 20 return popen.returncode |
21 | 21 |
22 def main(): | 22 def main(): |
23 parser = OptionParser() | 23 parser = OptionParser() |
24 parser.add_option('--wix_path', dest='wix_path') | 24 parser.add_option('--wix_path', dest='wix_path') |
25 parser.add_option('--version', dest='version') | 25 parser.add_option('--version', dest='version') |
| 26 parser.add_option('--controller_clsid', dest='controller_clsid') |
26 parser.add_option('--product_dir', dest='product_dir') | 27 parser.add_option('--product_dir', dest='product_dir') |
27 parser.add_option('--intermediate_dir', dest='intermediate_dir') | 28 parser.add_option('--intermediate_dir', dest='intermediate_dir') |
28 parser.add_option('--sas_dll_path', dest='sas_dll_path') | 29 parser.add_option('--sas_dll_path', dest='sas_dll_path') |
29 parser.add_option('-d', dest='define_list', action='append') | 30 parser.add_option('-d', dest='define_list', action='append') |
30 parser.add_option('--input', dest='input') | 31 parser.add_option('--input', dest='input') |
31 parser.add_option('--output', dest='output') | 32 parser.add_option('--output', dest='output') |
32 options, args = parser.parse_args() | 33 options, args = parser.parse_args() |
33 if args: | 34 if args: |
34 parser.error("no positional arguments expected") | 35 parser.error("no positional arguments expected") |
35 parameters = dict(options.__dict__) | 36 parameters = dict(options.__dict__) |
36 | 37 |
37 parameters['basename'] = os.path.splitext(os.path.basename(options.input))[0] | 38 parameters['basename'] = os.path.splitext(os.path.basename(options.input))[0] |
38 parameters['defines'] = '-d' + ' -d'.join(parameters['define_list']) | 39 parameters['defines'] = '-d' + ' -d'.join(parameters['define_list']) |
39 | 40 |
40 common = ( | 41 common = ( |
41 '-nologo ' | 42 '-nologo ' |
42 '-ext "%(wix_path)s\\WixFirewallExtension.dll" ' | 43 '-ext "%(wix_path)s\\WixFirewallExtension.dll" ' |
43 '-ext "%(wix_path)s\\WixUIExtension.dll" ' | 44 '-ext "%(wix_path)s\\WixUIExtension.dll" ' |
44 '-ext "%(wix_path)s\\WixUtilExtension.dll" ' | 45 '-ext "%(wix_path)s\\WixUtilExtension.dll" ' |
| 46 '"-dControllerClsid="%(controller_clsid)s"" ' |
45 '-dVersion=%(version)s ' | 47 '-dVersion=%(version)s ' |
46 '"-dFileSource=%(product_dir)s" ' | 48 '"-dFileSource=%(product_dir)s" ' |
47 '-dIconPath=resources/chromoting.ico ' | 49 '-dIconPath=resources/chromoting.ico ' |
48 '"-dSasDllPath=%(sas_dll_path)s/sas.dll" ' | 50 '"-dSasDllPath=%(sas_dll_path)s/sas.dll" ' |
49 '%(defines)s ' | 51 '%(defines)s ' |
50 ) | 52 ) |
51 | 53 |
52 candle_template = ('"%(wix_path)s\\candle" ' + | 54 candle_template = ('"%(wix_path)s\\candle" ' + |
53 common + | 55 common + |
54 '-out "%(intermediate_dir)s/%(basename)s.wixobj" ' + | 56 '-out "%(intermediate_dir)s/%(basename)s.wixobj" ' + |
55 '"%(input)s" ') | 57 '"%(input)s" ') |
56 rc = run(candle_template % parameters, os.path.basename(parameters['input'])) | 58 rc = run(candle_template % parameters, os.path.basename(parameters['input'])) |
57 if rc: | 59 if rc: |
58 return rc | 60 return rc |
59 | 61 |
60 light_template = ('"%(wix_path)s\\light" ' + | 62 light_template = ('"%(wix_path)s\\light" ' + |
61 common + | 63 common + |
62 '-cultures:en-us ' + | 64 '-cultures:en-us ' + |
63 '-sw1076 ' + | 65 '-sw1076 ' + |
64 '-out "%(output)s" ' + | 66 '-out "%(output)s" ' + |
65 '"%(intermediate_dir)s/%(basename)s.wixobj" ') | 67 '"%(intermediate_dir)s/%(basename)s.wixobj" ') |
66 rc = run(light_template % parameters) | 68 rc = run(light_template % parameters) |
67 if rc: | 69 if rc: |
68 return rc | 70 return rc |
69 | 71 |
70 return 0 | 72 return 0 |
71 | 73 |
72 if __name__ == "__main__": | 74 if __name__ == "__main__": |
73 sys.exit(main()) | 75 sys.exit(main()) |
OLD | NEW |