Bug 1797238 [wpt PR 36638] - Screen orientation: simplify non-fully-active.html,...
[gecko.git] / accessible / moz.build
blob18870b565a3e1bedcf937ce5cbe54871e7fff1ed
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/bounds/browser.ini",
36     "tests/browser/browser.ini",
37     "tests/browser/e10s/browser.ini",
38     "tests/browser/events/browser.ini",
39     "tests/browser/fission/browser.ini",
40     "tests/browser/general/browser.ini",
41     "tests/browser/hittest/browser.ini",
42     "tests/browser/mac/browser.ini",
43     "tests/browser/scroll/browser.ini",
44     "tests/browser/selectable/browser.ini",
45     "tests/browser/states/browser.ini",
46     "tests/browser/telemetry/browser.ini",
47     "tests/browser/tree/browser.ini",
50 with Files("**"):
51     BUG_COMPONENT = ("Core", "Disability Access APIs")
53 SPHINX_TREES["/accessible"] = "docs"
55 with Files("docs/**"):
56     SCHEDULES.exclusive = ["docs"]