Backed out changeset b71c8c052463 (bug 1943846) for causing mass failures. CLOSED...
[gecko.git] / tools / moz.build
blob0475e63842975b68af5eb7c44c4af90b4a80860f
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 with Files("**"):
8     BUG_COMPONENT = ("Core", "General")
10 with Files("code-coverage/**"):
11     BUG_COMPONENT = ("Testing", "Code Coverage")
13 with Files("compare-locales/mach_commands.py"):
14     BUG_COMPONENT = ("Localization Infrastructure and Tools", "compare-locales")
16 with Files("lint/**"):
17     BUG_COMPONENT = ("Developer Infrastructure", "Lint and Formatting")
19 with Files("moztreedocs/**"):
20     BUG_COMPONENT = ("Developer Infrastructure", "Source Documentation")
21     SCHEDULES.exclusive = ["docs"]
23 with Files("profiler/**"):
24     BUG_COMPONENT = ("Core", "Gecko Profiler")
26 with Files("performance/**"):
27     BUG_COMPONENT = ("Core", "Gecko Profiler")
29 with Files("quitter/**"):
30     BUG_COMPONENT = ("Testing", "General")
32 with Files("rb/**"):
33     BUG_COMPONENT = ("Core", "XPCOM")
35 with Files("rewriting/**"):
36     BUG_COMPONENT = ("Firefox Build System", "Source Code Analysis")
38 with Files("tryselect/**"):
39     BUG_COMPONENT = ("Developer Infrastructure", "Try")
41 with Files("tryselect/selectors/release.py"):
42     BUG_COMPONENT = ("Release Engineering", "General")
44 with Files("ts/**"):
45     BUG_COMPONENT = ("Developer Infrastructure", "Lint and Formatting")
47 with Files("update-packaging/**"):
48     BUG_COMPONENT = ("Release Engineering", "General")
50 with Files("update-verify/**"):
51     BUG_COMPONENT = ("Release Engineering", "Release Automation")
53 with Files("vcs/**"):
54     BUG_COMPONENT = ("Firefox Build System", "General")
56 SPHINX_TREES["moztreedocs"] = "moztreedocs/docs"
58 SPHINX_TREES["try"] = "tryselect/docs"
60 SPHINX_TREES["fuzzing"] = "fuzzing/docs"
62 SPHINX_TREES["sanitizer"] = "sanitizer/docs"
64 SPHINX_TREES["code-coverage"] = "code-coverage/docs"
66 SPHINX_TREES["profiler"] = "profiler/docs"
68 with Files("tryselect/docs/**"):
69     SCHEDULES.exclusive = ["docs"]
71 PYTHON_UNITTEST_MANIFESTS += [
72     "fuzzing/smoke/python.toml",
73     "lint/test/python.toml",
74     "tryselect/test/python.toml",