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/.
18 'mozapps/preferences',
26 DIRS += ['mozapps/update']
28 if CONFIG['MOZ_MAINTENANCE_SERVICE']:
29 DIRS += ['components/maintenanceservice']
33 if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', '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.
48 'crashreporter/google-breakpad/src/common',
49 'crashreporter/google-breakpad/src/processor',
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']