forked from mirrors/gecko-dev
		
	As of Python 3, decimal notations of octal values for permission modes are no longer permitted and will result in a `SyntaxError` exception (`invalid token`). Using the proper octal notation which is also Python 2.7 compatible will fix this issue. --HG-- extra : rebase_source : 2e897c51f04ad0ee69071f84b98df224f3af72d3
		
			
				
	
	
		
			94 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# This Source Code Form is subject to the terms of the Mozilla Public
 | 
						|
# License, v. 2.0. If a copy of the MPL was not distributed with this
 | 
						|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | 
						|
 | 
						|
from __future__ import print_function, unicode_literals
 | 
						|
 | 
						|
import codecs
 | 
						|
import json
 | 
						|
import os
 | 
						|
import subprocess
 | 
						|
import sys
 | 
						|
 | 
						|
 | 
						|
base_dir = os.path.abspath(os.path.dirname(__file__))
 | 
						|
sys.path.insert(0, os.path.join(base_dir, 'python', 'mozbuild'))
 | 
						|
from mozbuild.configure import ConfigureSandbox
 | 
						|
 | 
						|
 | 
						|
def main(argv):
 | 
						|
    config = {}
 | 
						|
    sandbox = ConfigureSandbox(config, os.environ, argv)
 | 
						|
    sandbox.run(os.path.join(os.path.dirname(__file__), 'moz.configure'))
 | 
						|
 | 
						|
    if sandbox._help:
 | 
						|
        return 0
 | 
						|
 | 
						|
    return config_status(config)
 | 
						|
 | 
						|
 | 
						|
def config_status(config):
 | 
						|
    # Sanitize config data to feed config.status
 | 
						|
    # Ideally, all the backend and frontend code would handle the booleans, but
 | 
						|
    # there are so many things involved, that it's easier to keep config.status
 | 
						|
    # untouched for now.
 | 
						|
    def sanitized_bools(v):
 | 
						|
        if v is True:
 | 
						|
            return '1'
 | 
						|
        if v is False:
 | 
						|
            return ''
 | 
						|
        return v
 | 
						|
 | 
						|
    sanitized_config = {}
 | 
						|
    sanitized_config['substs'] = {
 | 
						|
        k: sanitized_bools(v) for k, v in config.iteritems()
 | 
						|
        if k not in ('DEFINES', 'non_global_defines', 'TOPSRCDIR', 'TOPOBJDIR')
 | 
						|
    }
 | 
						|
    sanitized_config['defines'] = {
 | 
						|
        k: sanitized_bools(v) for k, v in config['DEFINES'].iteritems()
 | 
						|
    }
 | 
						|
    sanitized_config['non_global_defines'] = config['non_global_defines']
 | 
						|
    sanitized_config['topsrcdir'] = config['TOPSRCDIR']
 | 
						|
    sanitized_config['topobjdir'] = config['TOPOBJDIR']
 | 
						|
    sanitized_config['mozconfig'] = config.get('MOZCONFIG')
 | 
						|
 | 
						|
    # Create config.status. Eventually, we'll want to just do the work it does
 | 
						|
    # here, when we're able to skip configure tests/use cached results/not rely
 | 
						|
    # on autoconf.
 | 
						|
    print("Creating config.status", file=sys.stderr)
 | 
						|
    encoding = 'mbcs' if sys.platform == 'win32' else 'utf-8'
 | 
						|
    with codecs.open('config.status', 'w', encoding) as fh:
 | 
						|
        fh.write('#!%s\n' % config['PYTHON'])
 | 
						|
        fh.write('# coding=%s\n' % encoding)
 | 
						|
        # Because we're serializing as JSON but reading as python, the values
 | 
						|
        # for True, False and None are true, false and null, which don't exist.
 | 
						|
        # Define them.
 | 
						|
        fh.write('true, false, null = True, False, None\n')
 | 
						|
        for k, v in sanitized_config.iteritems():
 | 
						|
            fh.write('%s = ' % k)
 | 
						|
            json.dump(v, fh, sort_keys=True, indent=4, ensure_ascii=False)
 | 
						|
            fh.write('\n')
 | 
						|
        fh.write("__all__ = ['topobjdir', 'topsrcdir', 'defines', "
 | 
						|
                 "'non_global_defines', 'substs', 'mozconfig']")
 | 
						|
 | 
						|
        if config.get('MOZ_BUILD_APP') != 'js' or config.get('JS_STANDALONE'):
 | 
						|
            fh.write('''
 | 
						|
if __name__ == '__main__':
 | 
						|
    args = dict([(name, globals()[name]) for name in __all__])
 | 
						|
    from mozbuild.config_status import config_status
 | 
						|
    config_status(**args)
 | 
						|
''')
 | 
						|
 | 
						|
    # Other things than us are going to run this file, so we need to give it
 | 
						|
    # executable permissions.
 | 
						|
    os.chmod('config.status', 0o755)
 | 
						|
    if config.get('MOZ_BUILD_APP') != 'js' or config.get('JS_STANDALONE'):
 | 
						|
        os.environ['WRITE_MOZINFO'] = '1'
 | 
						|
        # Until we have access to the virtualenv from this script, execute
 | 
						|
        # config.status externally, with the virtualenv python.
 | 
						|
        return subprocess.call([config['PYTHON'], 'config.status'])
 | 
						|
    return 0
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    sys.exit(main(sys.argv))
 |