Bug 1842773 - Part 8: Implement ArrayBuffer.prototype.resize method. r=sfink
[gecko.git] / dom / moz.build
blob737a42700590c6b54eb1701dd2f8ea70d27f907a
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     "prototype",
72     "indexedDB",
73     "system",
74     "ipc",
75     "workers",
76     "audiochannel",
77     "broadcastchannel",
78     "messagechannel",
79     "promise",
80     "smil",
81     "streams",
82     "url",
83     "webauthn",
84     "webidl",
85     "webshare",
86     "webtransport",
87     "xml",
88     "xslt",
89     "xul",
90     "manifest",
91     "vr",
92     "console",
93     "performance",
94     "webbrowserpersist",
95     "xhr",
96     "worklet",
97     "script",
98     "payments",
99     "websocket",
100     "serializers",
101     "serviceworkers",
102     "simpledb",
103     "reporting",
104     "localstorage",
105     "l10n",
106     "origin-trials",
107     "webscheduling",
111 TEST_DIRS += [
112     "tests",
113     "imptests",
116 if CONFIG["MOZ_WIDGET_TOOLKIT"] in ("gtk", "cocoa", "windows"):
117     TEST_DIRS += ["plugins/test"]
119 SPHINX_TREES["/dom"] = "docs"