2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-03-18 20:54:07 +03:00
|
|
|
# vim: set filetype=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/.
|
|
|
|
|
2017-04-05 15:31:05 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "General")
|
|
|
|
|
2017-07-21 20:34:19 +03:00
|
|
|
with Files("code-coverage/**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "Code Coverage")
|
|
|
|
|
2017-06-06 17:00:51 +03:00
|
|
|
with Files("compare-locales/mach_commands.py"):
|
|
|
|
BUG_COMPONENT = ("Localization Infrastructure and Tools", "compare-locales")
|
|
|
|
|
2017-04-05 15:31:05 +03:00
|
|
|
with Files("coverity/**"):
|
2019-02-21 20:10:08 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "Source Code Analysis")
|
2017-04-05 15:31:05 +03:00
|
|
|
|
2019-12-28 05:44:59 +03:00
|
|
|
with Files("github-sync/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Graphics")
|
|
|
|
|
2017-04-05 15:31:05 +03:00
|
|
|
with Files("lint/**"):
|
2019-02-21 20:10:08 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "Lint and Formatting")
|
2017-04-05 15:31:05 +03:00
|
|
|
|
2020-01-06 19:29:21 +03:00
|
|
|
with Files("moztreedocs/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox Build System", "Generated Documentation")
|
|
|
|
SCHEDULES.exclusive = ['docs']
|
|
|
|
|
2017-04-05 15:31:05 +03:00
|
|
|
with Files("profiler/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Gecko Profiler")
|
|
|
|
|
2019-05-21 22:01:31 +03:00
|
|
|
with Files("performance/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Gecko Profiler")
|
|
|
|
|
2017-04-05 15:31:05 +03:00
|
|
|
with Files("quitter/**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "General")
|
|
|
|
|
|
|
|
with Files("rb/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "XPCOM")
|
|
|
|
|
|
|
|
with Files("rewriting/**"):
|
2019-02-21 20:10:08 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "Source Code Analysis")
|
2017-04-05 15:31:05 +03:00
|
|
|
|
2017-07-18 04:36:23 +03:00
|
|
|
with Files("tryselect/**"):
|
2019-07-30 09:31:49 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "Try")
|
2017-07-18 04:36:23 +03:00
|
|
|
|
2018-10-17 02:04:03 +03:00
|
|
|
with Files("tryselect/selectors/release.py"):
|
|
|
|
BUG_COMPONENT = ("Release Engineering", "General")
|
|
|
|
|
2017-04-05 15:31:05 +03:00
|
|
|
with Files("update-packaging/**"):
|
2019-12-04 16:55:45 +03:00
|
|
|
BUG_COMPONENT = ("Release Engineering", "General")
|
2017-04-05 15:31:05 +03:00
|
|
|
|
2018-12-03 09:44:16 +03:00
|
|
|
with Files("update-verify/**"):
|
|
|
|
BUG_COMPONENT = ("Release Engineering", "Release Automation: Updates")
|
|
|
|
|
2020-01-06 19:38:34 +03:00
|
|
|
SPHINX_TREES['moztreedocs'] = 'moztreedocs/docs'
|
|
|
|
|
2017-10-02 21:22:56 +03:00
|
|
|
with Files('lint/docs/**'):
|
|
|
|
SCHEDULES.exclusive = ['docs']
|
|
|
|
|
2017-11-08 00:26:14 +03:00
|
|
|
SPHINX_TREES['try'] = 'tryselect/docs'
|
2017-08-21 18:52:28 +03:00
|
|
|
|
2019-12-06 16:32:09 +03:00
|
|
|
SPHINX_TREES['fuzzing'] = 'fuzzing/docs'
|
|
|
|
|
2017-10-02 21:22:56 +03:00
|
|
|
with Files('tryselect/docs/**'):
|
|
|
|
SCHEDULES.exclusive = ['docs']
|
|
|
|
|
2017-08-21 18:52:28 +03:00
|
|
|
CRAMTEST_MANIFESTS += [
|
|
|
|
'tryselect/test/cram.ini',
|
|
|
|
]
|
2017-11-21 18:11:00 +03:00
|
|
|
|
|
|
|
PYTHON_UNITTEST_MANIFESTS += [
|
2018-03-23 00:24:15 +03:00
|
|
|
'lint/test/python.ini',
|
2018-09-21 15:50:32 +03:00
|
|
|
'rb/python.ini',
|
2017-11-21 18:11:00 +03:00
|
|
|
'tryselect/test/python.ini',
|
|
|
|
]
|