Bug 1753424 - Add SandboxingKind for UtilityProcess crash annotations r=gsvelto
[gecko.git] / toolkit / toolkit.mozbuild
blob79df0d9e61a645f23d1c9544841f6963a94fc43c
1 # -*- Mode: python; c-basic-offset: 4; 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('/js/app.mozbuild')
9 PYTHON_UNITTEST_MANIFESTS += [
10     '/layout/tools/reftest/selftest/python.ini',
11     '/testing/condprofile/condprof/tests/python.ini',
12     '/testing/marionette/harness/marionette_harness/tests/harness_unit/python.ini',
13     '/testing/mochitest/tests/python/python.ini',
14     '/testing/raptor/test/python.ini',
15     '/testing/talos/talos/unittests/python.ini'
18 DIRS += [
19     '/tools',
20     '/xpcom/xpidl',
23 if CONFIG['COMPILE_ENVIRONMENT']:
24     DIRS += [
25         '/config/external',
26         '/security',
27     ]
29 if CONFIG['ENABLE_TESTS']:
30     DIRS += [
31         '/toolkit/library/gtest/rust',
32     ]
34 DIRS += [
35     '/toolkit/library/rust',
38 if CONFIG['MOZ_SANDBOX']:
39     DIRS += ['/security/sandbox']
41 if CONFIG["MOZ_USING_WASM_SANDBOXING"] and CONFIG["COMPILE_ENVIRONMENT"]:
42     DIRS += ["/security/rlbox"]
44 DIRS += [
45     # Depends on NSS and NSPR
46     '/security/certverifier',
47     # Depends on certverifier
48     '/security/apps',
51 # the signing related bits of libmar depend on nss
52 if CONFIG['MOZ_UPDATER']:
53     DIRS += ['/modules/libmar']
55 DIRS += [
56     '/config/external/freetype2',
57     '/xpcom',
58     '/modules/libpref',
59     '/intl',
60     '/netwerk',
63 if CONFIG['MOZ_AUTH_EXTENSION']:
64     DIRS += ['/extensions/auth']
66 if CONFIG['MOZ_UPDATER'] and CONFIG['OS_TARGET'] != 'Android':
67     DIRS += [
68         '/toolkit/mozapps/update/updater/bspatch',
69         '/other-licenses/bsdiff',
70     ]
72 # Gecko/Core components.
74 DIRS += [
75     '/ipc',
76     '/hal',
77     '/js/loader',
78     '/js/xpconnect',
79     '/modules/libjar',
80     '/storage',
83 if CONFIG['COMPILE_ENVIRONMENT']:
84     DIRS += [
85         '/media/libyuv',
86     ]
88 DIRS += [
89     '/extensions/permissions',
92 if CONFIG['MOZ_WEBRTC'] and CONFIG['COMPILE_ENVIRONMENT']:
93     DIRS += [
94         '/media/webrtc',
95         '/dom/media/webrtc/transport',
96     ]
98 if CONFIG['ENABLE_TESTS']:
99     DIRS += ['/testing/specialpowers']
101 DIRS += [
102     '/testing/gtest',
103     '/uriloader',
104     '/caps',
105     '/parser',
106     '/gfx',
107     '/image',
108     '/dom',
109     '/view',
110     '/widget',
111     '/editor',
112     '/layout',
113     '/docshell',
114     '/xpfe/appshell'
117 if CONFIG['MOZ_UNIVERSALCHARDET']:
118     DIRS += ['/extensions/universalchardet']
120 if CONFIG['ACCESSIBILITY']:
121     DIRS += ['/accessible']
122 else:
123     DIRS += ['/accessible/ipc']
125 # toolkit
127 # This must precede xpfe.
128 if CONFIG['MOZ_JPROF']:
129     DIRS += ['/tools/jprof']
131 DIRS += [
132     '/tools/code-coverage',
133     '/tools/performance',
134     '/tools/power',
135     '/tools/profiler',
136     '/extensions/spellcheck',
137     '/security/manager',
138     '/toolkit',
141 if CONFIG['MOZ_PREF_EXTENSIONS']:
142     DIRS += ['/extensions/pref']
144 DIRS += [
145     '/devtools',
146     '/toolkit/library',
147     '/services',
148     '/startupcache',
149     '/js/ductwork/debugger',
150     '/other-licenses/snappy',
153 if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk':
154     DIRS += [
155         '/toolkit/system/gnome',
156     ]
158 if CONFIG['ENABLE_WEBDRIVER']:
159     DIRS += [
160         '/remote',
161         '/testing/firefox-ui',
162         '/testing/marionette',
163         '/toolkit/components/telemetry/tests/marionette',
164     ]
166 if CONFIG['MOZ_GECKODRIVER'] and not CONFIG['MOZ_TSAN'] and not CONFIG['FUZZING_INTERFACES']:
167     DIRS += ['/testing/geckodriver']
169 DIRS += [
170     '/tools/quitter',
171     '/media/gmp-clearkey/0.1',
174 if CONFIG['ENABLE_TESTS']:
175     DIRS += [
176         '/testing/mochitest',
177         '/testing/xpcshell',
178         '/testing/tools/minidumpwriter',
179         '/testing/tools/screenshot',
180         '/testing/profiles',
181         '/testing/modules',
182         '/testing/runtimes',
183         '/testing/web-platform',
184         '/testing/extensions',
185     ]
187     if CONFIG['MOZ_MEMORY']:
188         DIRS += ['/memory/gtest']
190     if CONFIG['MOZ_WEBRTC']:
191         DIRS += [
192             '/dom/media/webrtc/transport/test',
193         ]
195 if CONFIG['FUZZING']:
196     DIRS += ['/tools/fuzzing']
198 if CONFIG['MOZ_WAYLAND']:
199     DIRS += ['/media/mozva']