2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:18 +04:00
|
|
|
# vim: set filetype=python:
|
2012-05-21 15:12:37 +04:00
|
|
|
# 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/.
|
1998-08-20 00:42:14 +04:00
|
|
|
|
2015-02-26 22:43:45 +03:00
|
|
|
with Files('mach/**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'mach')
|
|
|
|
|
|
|
|
with Files('mozbuild/**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Build Config')
|
|
|
|
|
2013-11-21 00:37:22 +04:00
|
|
|
SPHINX_PYTHON_PACKAGE_DIRS += [
|
2014-12-07 21:40:19 +03:00
|
|
|
'mach',
|
2013-11-21 00:37:22 +04:00
|
|
|
'mozbuild/mozbuild',
|
|
|
|
'mozbuild/mozpack',
|
2016-03-18 20:54:07 +03:00
|
|
|
'mozlint/mozlint',
|
2013-11-21 00:37:22 +04:00
|
|
|
'mozversioncontrol/mozversioncontrol',
|
|
|
|
]
|
2014-07-28 19:51:12 +04:00
|
|
|
|
2014-12-07 21:40:19 +03:00
|
|
|
SPHINX_TREES['mach'] = 'mach/docs'
|
|
|
|
|
2016-11-16 17:59:22 +03:00
|
|
|
PYTHON_UNITTEST_MANIFESTS += [
|
|
|
|
'mach/mach/test/python.ini',
|
|
|
|
'mozbuild/dumbmake/test/python.ini',
|
|
|
|
'mozbuild/mozbuild/test/python.ini',
|
|
|
|
'mozbuild/mozpack/test/python.ini',
|
|
|
|
'mozlint/test/python.ini',
|
2014-07-28 19:51:12 +04:00
|
|
|
]
|