Bumping manifests a=b2g-bump
[gecko.git] / toolkit / moz.build
blob3784ce8f641890b4fc15b34f8727d2ac47b70277
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 DIRS += [
8     'components',
9     'content',
10     'devtools',
11     'forgetaboutsite',
12     'identity',
13     'locales',
14     'modules',
15     'mozapps/downloads',
16     'mozapps/extensions',
17     'mozapps/handling',
18     'mozapps/preferences',
19     'mozapps/plugins',
20     'obsolete',
21     'profile',
22     'themes',
23     'webapps',
26 DIRS += ['mozapps/update']
28 if CONFIG['MOZ_MAINTENANCE_SERVICE']:
29     DIRS += ['components/maintenanceservice']
31 DIRS += ['xre']
33 if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'):
34     DIRS += ['system/unixproxy']
35 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
36     DIRS += ['system/osxproxy']
37 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
38     DIRS += ['system/windowsproxy']
39 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
40     DIRS += ['system/androidproxy']
42 if CONFIG['MOZ_CRASHREPORTER']:
43     DIRS += ['crashreporter']
44 elif CONFIG['MOZ_ENABLE_PROFILER_SPS']:
45     # Profiler requires some crashreporter code,
46     # so build it even if crashreporter is disabled.
47     DIRS += [
48     'crashreporter/google-breakpad/src/common',
49     'crashreporter/google-breakpad/src/processor',
50     ]
51     if CONFIG['OS_ARCH'] == 'Darwin':
52         DIRS += ['crashreporter/google-breakpad/src/common/mac']
53     elif CONFIG['OS_ARCH'] == 'Linux':
54         DIRS += ['crashreporter/google-breakpad/src/common/linux']