Backed out 2 changesets (bug 1943998) for causing wd failures @ phases.py CLOSED...
[gecko.git] / devtools / shared / moz.build
blob338653c0c438910a1016375e10c9b96ecff506a9
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 include("../templates.mozbuild")
9 DIRS += [
10     "css",
11     "commands",
12     "compatibility",
13     "discovery",
14     "heapsnapshot",
15     "images",
16     "inspector",
17     "jsbeautify",
18     "layout",
19     "loader",
20     "locales",
21     "network-observer",
22     "node-properties",
23     "performance-new",
24     "platform",
25     "protocol",
26     "qrcode",
27     "security",
28     "sprintfjs",
29     "specs",
30     "storage",
31     "test-helpers",
32     "transport",
33     "webconsole",
34     "worker",
37 if CONFIG["MOZ_BUILD_APP"] != "mobile/android":
38     BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.toml"]
40 BROWSER_CHROME_MANIFESTS += ["test-helpers/browser.toml"]
42 MOCHITEST_CHROME_MANIFESTS += ["tests/chrome/chrome.toml"]
43 XPCSHELL_TESTS_MANIFESTS += ["tests/xpcshell/xpcshell.toml"]
45 JAR_MANIFESTS += ["jar.mn"]
47 DevToolsModules(
48     "accessibility.js",
49     "async-storage.js",
50     "async-utils.js",
51     "constants.js",
52     "content-observer.js",
53     "debounce.js",
54     "DevToolsInfaillibleUtils.sys.mjs",
55     "DevToolsUtils.js",
56     "dom-helpers.js",
57     "dom-node-constants.js",
58     "dom-node-filter-constants.js",
59     "event-emitter.js",
60     "extend.js",
61     "flags.js",
62     "generate-uuid.js",
63     "highlighters.mjs",
64     "indentation.js",
65     "indexed-db.js",
66     "l10n.js",
67     "natural-sort.js",
68     "path.js",
69     "picker-constants.js",
70     "plural-form.js",
71     "protocol.js",
72     "string.js",
73     "system.js",
74     "ThreadSafeDevToolsUtils.js",
75     "throttle.js",
76     "validate-breakpoint.sys.mjs",
79 with Files("**"):
80     BUG_COMPONENT = ("DevTools", "General")