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