Bug 1669129 - [devtools] Enable devtools.overflow.debugging.enabled. r=jdescottes
[gecko.git] / toolkit / moz.build
blobb6f792da7124bfebc1cdf5738b2b49f81619a807
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 SPHINX_TREES['/toolkit'] = 'docs'
9 EXTRA_COMPONENTS += [
10     'l10n-registry.manifest',
13 DIRS += [
14     'actors',
15     'components',
16     'content',
17     'crashreporter',
18     'locales',
19     'modules',
20     'mozapps/downloads',
21     'mozapps/extensions',
22     'mozapps/preferences',
23     'pluginproblem',
24     'profile',
25     'themes',
28 if CONFIG['OS_ARCH'] == 'WINNT' and CONFIG['MOZ_DEFAULT_BROWSER_AGENT']:
29     DIRS += ['mozapps/defaultagent']
31 if CONFIG['MOZ_UPDATER'] and CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
32     DIRS += ['mozapps/update']
34 if CONFIG['MOZ_MAINTENANCE_SERVICE'] or CONFIG['MOZ_UPDATER']:
35     DIRS += [
36         'mozapps/update/common',
37     ]
39 if CONFIG['MOZ_MAINTENANCE_SERVICE']:
40     DIRS += [
41         'components/maintenanceservice'
42     ]
44 if CONFIG['MOZ_UPDATE_AGENT']:
45     DIRS += [
46         'components/updateagent'
47     ]
49 DIRS += ['xre']
51 if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
52     DIRS += ['mozapps/handling']
53 if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk':
54     DIRS += ['system/unixproxy']
55 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
56     DIRS += ['system/osxproxy']
57 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
58     DIRS += ['system/windowsproxy',
59             'system/windowsDHCPClient']
60 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
61     DIRS += ['system/androidproxy']
63 TEST_HARNESS_FILES.testing.mochitest.browser.toolkit.crashreporter.test.browser += [
64     'crashreporter/test/browser/crashreport.sjs',
67 with Files('docs/**'):
68     BUG_COMPONENT = ('Toolkit', 'General')
70 with Files('moz.*'):
71     BUG_COMPONENT = ('Firefox Build System', 'General')
73 with Files('toolkit.mozbuild'):
74     BUG_COMPONENT = ('Firefox Build System', 'General')
76 with Files('library/**'):
77     BUG_COMPONENT = ('Firefox Build System', 'General')
79 with Files('mozapps/installer/windows/**'):
80     BUG_COMPONENT = ('Toolkit', 'NSIS Installer')
82 with Files('mozapps/preferences/**'):
83     BUG_COMPONENT = ('Toolkit', 'Preferences')
85 with Files('pluginproblem/**'):
86     BUG_COMPONENT = ('Core', 'Plug-ins')
88 with Files('l10n-registry.manifest'):
89     BUG_COMPONENT = ('Core', 'Localization')