2012-09-26 16:43:54 +00:00
|
|
|
#!/usr/bin/env 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 os
|
|
|
|
import platform
|
|
|
|
import sys
|
|
|
|
|
|
|
|
# Ensure we are running Python 2.7+. We put this check here so we generate a
|
|
|
|
# user-friendly error message rather than a cryptic stack trace on module
|
|
|
|
# import.
|
2013-02-01 18:36:28 +00:00
|
|
|
if sys.version_info[0] != 2 or sys.version_info[1] < 7:
|
|
|
|
print('Python 2.7 or above (but not Python 3) is required to run mach.')
|
|
|
|
print('You are running Python', platform.python_version())
|
2012-09-26 16:43:54 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
# TODO Bug 794506 Integrate with the in-tree virtualenv configuration.
|
|
|
|
SEARCH_PATHS = [
|
|
|
|
'python/mach',
|
2012-10-11 00:17:00 +00:00
|
|
|
'python/mozboot',
|
2012-09-26 16:43:54 +00:00
|
|
|
'python/mozbuild',
|
|
|
|
'build',
|
|
|
|
'build/pymake',
|
|
|
|
'python/blessings',
|
|
|
|
'python/psutil',
|
|
|
|
'python/which',
|
|
|
|
'other-licenses/ply',
|
|
|
|
'xpcom/idl-parser',
|
2012-10-10 18:08:09 +00:00
|
|
|
'testing',
|
2012-09-26 16:43:54 +00:00
|
|
|
'testing/xpcshell',
|
|
|
|
'testing/mozbase/mozprocess',
|
2012-12-06 06:46:01 +00:00
|
|
|
'testing/mozbase/mozfile',
|
2012-09-26 16:43:54 +00:00
|
|
|
'testing/mozbase/mozinfo',
|
|
|
|
]
|
|
|
|
|
2012-10-10 18:08:09 +00:00
|
|
|
# Individual files providing mach commands.
|
|
|
|
MACH_MODULES = [
|
2013-02-01 19:20:17 +00:00
|
|
|
'addon-sdk/mach_commands.py',
|
2012-10-10 18:08:09 +00:00
|
|
|
'layout/tools/reftest/mach_commands.py',
|
2012-10-11 00:17:00 +00:00
|
|
|
'python/mozboot/mozboot/mach_commands.py',
|
2012-11-07 00:58:13 +00:00
|
|
|
'python/mozbuild/mozbuild/config.py',
|
2012-11-07 01:00:19 +00:00
|
|
|
'python/mozbuild/mozbuild/mach_commands.py',
|
2013-01-16 06:21:21 +00:00
|
|
|
'python/mozbuild/mozbuild/frontend/mach_commands.py',
|
2012-10-10 18:08:09 +00:00
|
|
|
'testing/mochitest/mach_commands.py',
|
|
|
|
'testing/xpcshell/mach_commands.py',
|
|
|
|
]
|
|
|
|
|
2012-09-26 16:43:54 +00:00
|
|
|
our_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
|
|
try:
|
|
|
|
import mach.main
|
|
|
|
except ImportError:
|
|
|
|
sys.path[0:0] = [os.path.join(our_dir, path) for path in SEARCH_PATHS]
|
|
|
|
|
|
|
|
import mach.main
|
|
|
|
|
|
|
|
# All of the code is in a module because EVERYTHING IS A LIBRARY.
|
|
|
|
mach = mach.main.Mach(our_dir)
|
2012-10-10 18:08:09 +00:00
|
|
|
|
|
|
|
for path in MACH_MODULES:
|
|
|
|
mach.load_commands_from_file(os.path.join(our_dir, path))
|
|
|
|
|
2012-10-05 00:43:54 +00:00
|
|
|
sys.exit(mach.run(sys.argv[1:]))
|