blob: bc995e34c5a0e93ea7ddcfc4cb0707596bc1729a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
with Files("**"):
BUG_COMPONENT = ("Testing", "General")
with Files("*cppunittest*"):
BUG_COMPONENT = ("Testing", "CPPUnitTest")
SCHEDULES.exclusive = ["cppunittest"]
with Files("remote*"):
BUG_COMPONENT = ("GeckoView", "General")
SPHINX_TREES["/testing"] = "docs"
DIRS += ["mozbase"]
PERFTESTS_MANIFESTS += [
"performance/perftest.ini",
]
|