michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: PARALLEL_DIRS += [ michael@0: 'components', michael@0: 'content', michael@0: 'devtools', michael@0: 'forgetaboutsite', michael@0: 'identity', michael@0: 'locales', michael@0: 'modules', michael@0: 'mozapps/downloads', michael@0: 'mozapps/extensions', michael@0: 'mozapps/handling', michael@0: 'mozapps/preferences', michael@0: 'mozapps/plugins', michael@0: 'obsolete', michael@0: 'profile', michael@0: 'themes', michael@0: 'webapps', michael@0: ] michael@0: michael@0: DIRS += ['mozapps/update'] michael@0: michael@0: if CONFIG['MOZ_MAINTENANCE_SERVICE']: michael@0: DIRS += ['components/maintenanceservice'] michael@0: michael@0: DIRS += ['xre'] michael@0: michael@0: if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): michael@0: PARALLEL_DIRS += ['system/unixproxy'] michael@0: elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': michael@0: PARALLEL_DIRS += ['system/osxproxy'] michael@0: elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': michael@0: PARALLEL_DIRS += ['system/windowsproxy'] michael@0: elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android': michael@0: PARALLEL_DIRS += ['system/androidproxy'] michael@0: michael@0: if CONFIG['MOZ_CRASHREPORTER']: michael@0: PARALLEL_DIRS += ['crashreporter'] michael@0: elif CONFIG['MOZ_ENABLE_PROFILER_SPS']: michael@0: # Profiler requires some crashreporter code, michael@0: # so build it even if crashreporter is disabled. michael@0: PARALLEL_DIRS += [ michael@0: 'crashreporter/google-breakpad/src/common', michael@0: 'crashreporter/google-breakpad/src/processor', michael@0: ] michael@0: if CONFIG['OS_ARCH'] == 'Darwin': michael@0: PARALLEL_DIRS += ['crashreporter/google-breakpad/src/common/mac'] michael@0: elif CONFIG['OS_ARCH'] == 'Linux': michael@0: PARALLEL_DIRS += ['crashreporter/google-breakpad/src/common/linux']