2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:18 +00:00
|
|
|
# vim: set filetype=python:
|
2012-05-21 11:12:37 +00: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-19 20:42:14 +00:00
|
|
|
|
2017-03-08 16:17:12 +00:00
|
|
|
# Default extra components to build config
|
|
|
|
with Files("**"):
|
2018-03-14 20:44:46 +00:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-03-08 16:17:12 +00:00
|
|
|
|
|
|
|
with Files("devtools/**"):
|
2018-06-20 18:34:40 +00:00
|
|
|
BUG_COMPONENT = ("DevTools", "General")
|
2017-03-08 16:17:12 +00:00
|
|
|
|
2019-07-11 02:39:31 +00:00
|
|
|
with Files("gdbpp/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
|
|
|
|
2020-04-09 00:24:29 +00:00
|
|
|
with Files("lldbutils/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "General")
|
|
|
|
|
2015-02-26 19:43:45 +00:00
|
|
|
with Files("mach/**"):
|
2018-11-19 13:35:14 +00:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "Mach Core")
|
2015-02-26 19:43:45 +00:00
|
|
|
|
2017-03-08 16:17:12 +00:00
|
|
|
with Files("mozboot/**"):
|
2018-03-14 20:44:46 +00:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "Bootstrap Configuration")
|
2017-03-08 16:17:12 +00:00
|
|
|
|
2015-02-26 19:43:45 +00:00
|
|
|
with Files("mozbuild/**"):
|
2018-03-14 20:44:46 +00:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2015-02-26 19:43:45 +00:00
|
|
|
|
2017-03-08 16:17:12 +00:00
|
|
|
with Files("mozlint/**"):
|
2022-12-21 14:38:47 +00:00
|
|
|
BUG_COMPONENT = ("Developer Infrastructure", "Lint and Formatting")
|
2017-03-08 16:17:12 +00:00
|
|
|
|
|
|
|
with Files("mozversioncontrol/**"):
|
2018-03-14 20:44:46 +00:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-03-08 16:17:12 +00:00
|
|
|
|
2017-11-09 20:11:32 +00:00
|
|
|
with Files("l10n/**"):
|
2018-03-14 20:44:46 +00:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-11-09 20:11:32 +00:00
|
|
|
|
2018-02-23 11:00:02 +00:00
|
|
|
with Files("mozrelease/**"):
|
2019-12-04 13:55:45 +00:00
|
|
|
BUG_COMPONENT = ("Release Engineering", "General")
|
2018-02-23 11:00:02 +00:00
|
|
|
|
2018-01-29 17:57:54 +00:00
|
|
|
with Files("mach_commands.py"):
|
|
|
|
BUG_COMPONENT = ("Testing", "Python Test")
|
|
|
|
|
2020-04-02 13:04:41 +00:00
|
|
|
with Files("mozperftest/**"):
|
2020-04-21 08:26:02 +00:00
|
|
|
BUG_COMPONENT = ("Testing", "mozperftest")
|
2020-04-02 13:04:41 +00:00
|
|
|
|
2022-03-24 14:04:34 +00:00
|
|
|
with Files("sites/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox Build System", "Mach Core")
|
|
|
|
|
2020-04-02 13:04:41 +00:00
|
|
|
|
2013-11-20 20:37:22 +00:00
|
|
|
SPHINX_PYTHON_PACKAGE_DIRS += [
|
2014-12-07 18:40:19 +00:00
|
|
|
"mach",
|
2013-11-20 20:37:22 +00:00
|
|
|
"mozbuild/mozbuild",
|
|
|
|
"mozbuild/mozpack",
|
2016-03-18 17:54:07 +00:00
|
|
|
"mozlint/mozlint",
|
2013-11-20 20:37:22 +00:00
|
|
|
"mozversioncontrol/mozversioncontrol",
|
|
|
|
]
|
2014-07-28 15:51:12 +00:00
|
|
|
|
2017-10-02 18:22:56 +00:00
|
|
|
with Files("**.py"):
|
|
|
|
SCHEDULES.inclusive += ["docs"]
|
|
|
|
|
2019-11-07 23:07:20 +00:00
|
|
|
SPHINX_TREES["/mach"] = "mach/docs"
|
|
|
|
SPHINX_TREES["/python"] = "docs"
|
2018-03-19 17:53:33 +00:00
|
|
|
|
2017-10-02 18:22:56 +00:00
|
|
|
with Files("mach/docs/**"):
|
|
|
|
SCHEDULES.exclusive = ["docs"]
|
|
|
|
|
2016-11-16 14:59:22 +00:00
|
|
|
PYTHON_UNITTEST_MANIFESTS += [
|
|
|
|
"mach/mach/test/python.ini",
|
2018-11-06 14:19:24 +00:00
|
|
|
"mozboot/mozboot/test/python.ini",
|
2021-08-05 02:58:14 +00:00
|
|
|
"mozbuild/mozbuild/repackaging/test/python.ini",
|
2019-08-21 03:05:09 +00:00
|
|
|
"mozbuild/mozbuild/test/python.ini",
|
|
|
|
"mozbuild/mozpack/test/python.ini",
|
2016-11-16 14:59:22 +00:00
|
|
|
"mozlint/test/python.ini",
|
2018-04-23 16:40:26 +00:00
|
|
|
"mozrelease/test/python.ini",
|
2017-12-04 14:38:24 +00:00
|
|
|
"mozterm/test/python.ini",
|
2017-09-25 20:30:27 +00:00
|
|
|
"mozversioncontrol/test/python.ini",
|
2014-07-28 15:51:12 +00:00
|
|
|
]
|