123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
- # This Source Code Form is subject to the terms of the Mozilla Public
- # License, v. 2.0. If a copy of the MPL was not distributed with this
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
- if CONFIG['MOZ_MAILNEWS']:
- DIRS += [
- '/ldap',
- '/db/mork',
- '/mailnews',
- ]
- DIRS += [
- # Depends on NSS and NSPR
- '/security/certverifier',
- # Depends on certverifier
- '/security/apps',
- ]
- # the signing related bits of libmar depend on nss
- if CONFIG['MOZ_UPDATER']:
- DIRS += ['/modules/libmar']
- DIRS += [
- '/config/external/freetype2',
- '/xpcom',
- '/modules/libpref',
- '/intl',
- '/netwerk',
- ]
- if CONFIG['MOZ_AUTH_EXTENSION']:
- DIRS += ['/extensions/auth']
- if CONFIG['MOZ_UPDATER']:
- DIRS += ['/other-licenses/bsdiff']
- # Gecko/Core components.
- DIRS += [
- '/ipc',
- '/js/ipc',
- '/hal',
- '/js/xpconnect',
- '/intl/chardet',
- '/media/libyuv',
- '/modules/libjar',
- '/storage',
- ]
- if CONFIG['MOZ_PERMISSIONS']:
- DIRS += [
- '/extensions/cookie',
- '/extensions/permissions',
- ]
- DIRS += [
- '/rdf',
- ]
- if CONFIG['MOZ_WEBRTC']:
- DIRS += [
- '/media/webrtc',
- '/media/mtransport',
- ]
- if CONFIG['ENABLE_TESTS']:
- DIRS += ['/testing/specialpowers']
- DIRS += [
- '/testing/gtest',
- '/uriloader',
- '/caps',
- '/parser',
- '/gfx',
- '/image',
- '/dom',
- '/view',
- '/widget',
- '/editor',
- '/layout',
- '/docshell',
- '/embedding',
- '/xpfe/appshell'
- ]
- if CONFIG['MOZ_UNIVERSALCHARDET']:
- DIRS += ['/extensions/universalchardet']
- if CONFIG['ACCESSIBILITY']:
- DIRS += ['/accessible']
- else:
- DIRS += ['/accessible/ipc']
- # toolkit
- DIRS += [
- '/tools/power',
- '/tools/profiler',
- '/tools/memory-profiler',
- '/xpfe/components',
- ]
- if CONFIG['MOZ_ENABLE_XREMOTE']:
- DIRS += ['/widget/xremoteclient']
- if CONFIG['MOZ_SPELLCHECK']:
- DIRS += ['/extensions/spellcheck']
- DIRS += [
- '/security/manager',
- '/toolkit',
- ]
- if CONFIG['MOZ_PREF_EXTENSIONS']:
- DIRS += ['/extensions/pref']
- if CONFIG['MOZ_DEVTOOLS_SERVER']:
- DIRS += ['/devtools']
- DIRS += [
- '/services',
- '/startupcache',
- '/js/ductwork',
- '/other-licenses/snappy',
- ]
- if CONFIG['MOZ_GIO_COMPONENT']:
- DIRS += ['/extensions/gio']
- DIRS += [
- '/toolkit/library/StaticXULComponentsEnd',
- '/toolkit/library',
- ]
- if 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']:
- DIRS += ['/toolkit/system/gnome']
- if CONFIG['ENABLE_MARIONETTE'] or True:
- DIRS += [
- '/testing/firefox-ui',
- '/testing/marionette',
- ]
- DIRS += [
- '/tools/quitter',
- ]
- if CONFIG['MOZ_EME']:
- DIRS += [
- '/media/gmp-clearkey/0.1',
- ]
- if CONFIG['ENABLE_TESTS']:
- DIRS += [
- '/testing/mochitest',
- '/testing/xpcshell',
- '/testing/tools/minidumpwriter',
- '/testing/tools/screenshot',
- '/testing/profiles',
- '/testing/mozbase',
- '/testing/modules',
- '/testing/runtimes',
- '/testing/web-platform',
- ]
- if CONFIG['MOZ_MEMORY']:
- DIRS += ['/memory/gtest']
- if CONFIG['MOZ_WEBRTC'] and not CONFIG['MOZ_TASK_TRACER']:
- DIRS += [
- '/media/webrtc/signaling/test',
- '/media/mtransport/test',
- ]
- if CONFIG['FUZZING']:
- DIRS += ['/tools/fuzzing']
|