Bug 1708422: part 16) Rename `mozInlineSpellChecker::SpellCheckerTimeSlice` to `mozIn...
[gecko.git] / testing / mozbase / moz.build
blob3cb529731101b9c84a3f25929b483bf725ed87e3
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 PYTHON_UNITTEST_MANIFESTS += [
8     "manifestparser/tests/manifest.ini",
9     "mozcrash/tests/manifest.ini",
10     "mozdebug/tests/manifest.ini",
11     "mozdevice/tests/manifest.ini",
12     "mozfile/tests/manifest.ini",
13     "mozgeckoprofiler/tests/manifest.ini",
14     "mozhttpd/tests/manifest.ini",
15     "mozinfo/tests/manifest.ini",
16     "mozinstall/tests/manifest.ini",
17     "mozleak/tests/manifest.ini",
18     "mozlog/tests/manifest.ini",
19     "moznetwork/tests/manifest.ini",
20     "mozpower/tests/manifest.ini",
21     "mozprocess/tests/manifest.ini",
22     "mozprofile/tests/manifest.ini",
23     "mozproxy/tests/manifest.ini",
24     "mozrunner/tests/manifest.ini",
25     "mozsystemmonitor/tests/manifest.ini",
26     "moztest/tests/manifest.ini",
27     "mozversion/tests/manifest.ini",
30 python_modules = [
31     "manifestparser",
32     "mozcrash",
33     "mozdebug",
34     "mozdevice",
35     "mozfile",
36     "mozgeckoprofiler",
37     "mozhttpd",
38     "mozinfo",
39     "mozinstall",
40     "mozleak",
41     "mozlog",
42     "moznetwork",
43     "mozpower",
44     "mozprocess",
45     "mozprofile",
46     "mozproxy",
47     "mozrunner",
48     "mozscreenshot",
49     "mozsystemmonitor",
50     "moztest",
51     "mozversion",
54 TEST_HARNESS_FILES.mozbase += [m + "/**" for m in python_modules]
56 TEST_HARNESS_FILES.mozbase += [
57     "setup_development.py",
60 SPHINX_TREES["/mozbase"] = "docs"
62 with Files("docs/**"):
63     SCHEDULES.exclusive = ["docs"]
65 with Files("**"):
66     BUG_COMPONENT = ("Testing", "Mozbase")
68 with Files("rust/**"):
69     BUG_COMPONENT = ("Testing", "Mozbase Rust")