Bug 1867925 - Mark some storage-access-api tests as intermittent after wpt-sync....
[gecko.git] / accessible / moz.build
blobed05b5b50ed343f030e29d587827569b7fc6a4f4
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 toolkit = CONFIG["MOZ_WIDGET_TOOLKIT"]
9 if toolkit == "gtk":
10     DIRS += ["atk"]
11 elif toolkit == "windows":
12     DIRS += ["windows"]
13 elif toolkit == "cocoa":
14     DIRS += ["mac"]
15 elif toolkit == "android":
16     DIRS += ["android"]
17 else:
18     DIRS += ["other"]
20 DIRS += [
21     "aom",
22     "base",
23     "basetypes",
24     "generic",
25     "html",
26     "interfaces",
27     "ipc",
28     "xpcom",
29     "xul",
32 TEST_DIRS += ["tests/mochitest"]
34 BROWSER_CHROME_MANIFESTS += [
35     "tests/browser/atk/browser.toml",
36     "tests/browser/bounds/browser.toml",
37     "tests/browser/browser.toml",
38     "tests/browser/e10s/browser.toml",
39     "tests/browser/events/browser.toml",
40     "tests/browser/fission/browser.toml",
41     "tests/browser/general/browser.toml",
42     "tests/browser/hittest/browser.toml",
43     "tests/browser/mac/browser.toml",
44     "tests/browser/pivot/browser.toml",
45     "tests/browser/role/browser.toml",
46     "tests/browser/scroll/browser.toml",
47     "tests/browser/selectable/browser.toml",
48     "tests/browser/states/browser.toml",
49     "tests/browser/telemetry/browser.toml",
50     "tests/browser/text/browser.toml",
51     "tests/browser/tree/browser.toml",
52     "tests/browser/windows/ia2/browser.toml",
53     "tests/browser/windows/uia/browser.toml",
56 with Files("**"):
57     BUG_COMPONENT = ("Core", "Disability Access APIs")
59 SPHINX_TREES["/accessible"] = "docs"
61 with Files("docs/**"):
62     SCHEDULES.exclusive = ["docs"]