Bug 1732219 - Add API for fetching the preview image. r=geckoview-reviewers,agi,mconley
[gecko.git] / dom / moz.build
blobc9f01f40e3c223113f36f417f1ab28654db2450d
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 with Files("plugins/**"):
12     BUG_COMPONENT = ("Core", "Plug-ins")
14 JAR_MANIFESTS += ["jar.mn"]
16 interfaces = [
17     "base",
18     "html",
19     "events",
20     "sidebar",
21     "xul",
22     "security",
23     "storage",
24     "geolocation",
25     "notification",
26     "push",
27     "payments",
30 DIRS += ["interfaces/" + i for i in interfaces]
32 DIRS += [
33     "abort",
34     "animation",
35     "base",
36     "bindings",
37     "battery",
38     "browser-element",
39     "cache",
40     "canvas",
41     "webgpu",
42     "chrome-webidl",
43     "clients",
44     "commandhandler",
45     "credentialmanagement",
46     "crypto",
47     "debugger",
48     "encoding",
49     "events",
50     "fetch",
51     "file",
52     "filehandle",
53     "filesystem",
54     "flex",
55     "gamepad",
56     "geolocation",
57     "grid",
58     "html",
59     "jsurl",
60     "mathml",
61     "media",
62     "midi",
63     "notification",
64     "offline",
65     "power",
66     "push",
67     "quota",
68     "security",
69     "storage",
70     "svg",
71     "locales",
72     "locks",
73     "network",
74     "permission",
75     "plugins/base",
76     "prototype",
77     "indexedDB",
78     "system",
79     "ipc",
80     "workers",
81     "audiochannel",
82     "broadcastchannel",
83     "messagechannel",
84     "promise",
85     "smil",
86     "url",
87     "webauthn",
88     "webidl",
89     "webshare",
90     "xml",
91     "xslt",
92     "xul",
93     "manifest",
94     "vr",
95     "u2f",
96     "console",
97     "performance",
98     "webbrowserpersist",
99     "xhr",
100     "worklet",
101     "script",
102     "payments",
103     "websocket",
104     "serializers",
105     "serviceworkers",
106     "simpledb",
107     "reporting",
108     "localstorage",
109     "prio",
110     "l10n",
113 if CONFIG["MOZ_DOM_STREAMS"]:
114     DIRS += ["streams"]
116 TEST_DIRS += [
117     "tests",
118     "imptests",
121 if CONFIG["MOZ_WIDGET_TOOLKIT"] in ("gtk", "cocoa", "windows"):
122     TEST_DIRS += ["plugins/test"]
124 SPHINX_TREES["/dom"] = "docs"