Bug 1690340 - Part 5: Remove the menu separators from the developer tools menu. r...
[gecko.git] / accessible / moz.build
blobf0ddf25cb39612e1fa66583a12a5ddde8ab55c45
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 += ["aom", "base", "generic", "html", "interfaces", "ipc", "xpcom"]
22 if CONFIG["MOZ_XUL"]:
23     DIRS += ["xul"]
25 TEST_DIRS += ["tests/mochitest"]
27 BROWSER_CHROME_MANIFESTS += [
28     "tests/browser/bounds/browser.ini",
29     "tests/browser/browser.ini",
30     "tests/browser/e10s/browser.ini",
31     "tests/browser/events/browser.ini",
32     "tests/browser/fission/browser.ini",
33     "tests/browser/general/browser.ini",
34     "tests/browser/hittest/browser.ini",
35     "tests/browser/mac/browser.ini",
36     "tests/browser/scroll/browser.ini",
37     "tests/browser/states/browser.ini",
38     "tests/browser/telemetry/browser.ini",
39     "tests/browser/tree/browser.ini",
42 with Files("**"):
43     BUG_COMPONENT = ("Core", "Disability Access APIs")