Bug 1858921 - Part 6: Remove unused default template arguments r=sfink
[gecko.git] / dom / moz.build
blob5a3b2d26d34771b10fb008c36ea4713f0e4028bf
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 # interfaces/*/ are annotated per directory, this is for new files
8 with Files("**"):
9     BUG_COMPONENT = ("Core", "DOM: Core & HTML")
11 JAR_MANIFESTS += ["jar.mn"]
13 interfaces = [
14     "base",
15     "html",
16     "events",
17     "sidebar",
18     "xul",
19     "security",
20     "storage",
21     "geolocation",
22     "notification",
23     "push",
24     "payments",
27 DIRS += ["interfaces/" + i for i in interfaces]
29 DIRS += [
30     "abort",
31     "animation",
32     "base",
33     "bindings",
34     "battery",
35     "browser-element",
36     "cache",
37     "canvas",
38     "webgpu",
39     "chrome-webidl",
40     "clients",
41     "commandhandler",
42     "credentialmanagement",
43     "crypto",
44     "debugger",
45     "encoding",
46     "events",
47     "fetch",
48     "file",
49     "filesystem",
50     "flex",
51     "fs",
52     "gamepad",
53     "geolocation",
54     "grid",
55     "html",
56     "jsurl",
57     "mathml",
58     "media",
59     "midi",
60     "notification",
61     "power",
62     "push",
63     "quota",
64     "security",
65     "storage",
66     "svg",
67     "locales",
68     "locks",
69     "network",
70     "permission",
71     "plugins/base",
72     "prototype",
73     "indexedDB",
74     "system",
75     "ipc",
76     "workers",
77     "audiochannel",
78     "broadcastchannel",
79     "messagechannel",
80     "promise",
81     "smil",
82     "streams",
83     "url",
84     "webauthn",
85     "webidl",
86     "webshare",
87     "webtransport",
88     "xml",
89     "xslt",
90     "xul",
91     "manifest",
92     "vr",
93     "console",
94     "performance",
95     "webbrowserpersist",
96     "xhr",
97     "worklet",
98     "script",
99     "payments",
100     "websocket",
101     "serializers",
102     "serviceworkers",
103     "simpledb",
104     "reporting",
105     "localstorage",
106     "l10n",
107     "origin-trials",
108     "webscheduling",
112 TEST_DIRS += [
113     "tests",
114     "imptests",
117 if CONFIG["MOZ_WIDGET_TOOLKIT"] in ("gtk", "cocoa", "windows"):
118     TEST_DIRS += ["plugins/test"]
120 SPHINX_TREES["/dom"] = "docs"