Bug 839650: proxy AddTrack() to MSG thread via a custom command so we can get access...
[gecko.git] / toolkit / moz.build
blob513998dffc55b26f4283663bf96846efa3b54686
1 # vim: set filetype=python:
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 PARALLEL_DIRS += [
7     'components',
8     'content',
9     'devtools',
10     'forgetaboutsite',
11     'identity',
12     'locales',
13     'modules',
14     'mozapps/downloads',
15     'mozapps/extensions',
16     'mozapps/handling',
17     'mozapps/preferences',
18     'mozapps/plugins',
19     'mozapps/shared',
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', 'qt'):
34     PARALLEL_DIRS += ['system/unixproxy']
35 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
36     PARALLEL_DIRS += ['system/osxproxy']
37 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
38     PARALLEL_DIRS += ['system/windowsproxy']
39 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
40     PARALLEL_DIRS += ['system/androidproxy']
42 if CONFIG['MOZ_CRASHREPORTER']:
43     PARALLEL_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     PARALLEL_DIRS += [
48     'crashreporter/google-breakpad/src/common',
49     'crashreporter/google-breakpad/src/processor',
50     ]
51     if CONFIG['OS_ARCH'] == 'Darwin':
52         PARALLEL_DIRS += ['crashreporter/google-breakpad/src/common/mac']
53     elif CONFIG['OS_ARCH'] == 'Linux':
54         PARALLEL_DIRS += ['crashreporter/google-breakpad/src/common/linux']