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: # These component dirs are built for all apps (including suite) michael@0: if CONFIG['MOZ_ENABLE_XREMOTE']: michael@0: PARALLEL_DIRS += ['remote'] michael@0: michael@0: PARALLEL_DIRS += [ michael@0: 'aboutmemory', michael@0: 'alerts', michael@0: 'apppicker', michael@0: 'commandlines', michael@0: 'console', michael@0: 'contentprefs', michael@0: 'cookie', michael@0: 'crashmonitor', michael@0: 'diskspacewatcher', michael@0: 'downloads', michael@0: 'exthelper', michael@0: 'filepicker', michael@0: 'finalizationwitness', michael@0: 'find', michael@0: 'intl', michael@0: 'jsdownloads', michael@0: 'mediasniffer', michael@0: 'microformats', michael@0: 'osfile', michael@0: 'parentalcontrols', michael@0: 'passwordmgr', michael@0: 'perf', michael@0: 'places', michael@0: 'prompts', michael@0: 'protobuf', michael@0: 'reflect', michael@0: 'sqlite', michael@0: 'startup', michael@0: 'statusfilter', michael@0: 'telemetry', michael@0: 'thumbnails', michael@0: 'typeaheadfind', michael@0: 'urlformatter', michael@0: 'viewconfig', michael@0: 'viewsource', michael@0: 'workerloader', michael@0: 'workerlz4', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_CRASHREPORTER']: michael@0: PARALLEL_DIRS += ['crashes'] michael@0: michael@0: if CONFIG['MOZ_SOCIAL']: michael@0: PARALLEL_DIRS += ['social'] michael@0: michael@0: if CONFIG['BUILD_CTYPES']: michael@0: PARALLEL_DIRS += ['ctypes'] michael@0: michael@0: if CONFIG['MOZ_FEEDS']: michael@0: PARALLEL_DIRS += ['feeds'] michael@0: michael@0: if CONFIG['MOZ_HELP_VIEWER']: michael@0: PARALLEL_DIRS += ['help'] michael@0: michael@0: if CONFIG['NS_PRINTING']: michael@0: PARALLEL_DIRS += ['printing'] michael@0: michael@0: if CONFIG['MOZ_XUL']: michael@0: PARALLEL_DIRS += ['autocomplete', 'satchel'] michael@0: michael@0: if CONFIG['MOZ_TOOLKIT_SEARCH']: michael@0: PARALLEL_DIRS += ['search'] michael@0: michael@0: if CONFIG['MOZ_URL_CLASSIFIER']: michael@0: PARALLEL_DIRS += ['url-classifier'] michael@0: michael@0: if CONFIG['MOZ_CAPTIVEDETECT']: michael@0: PARALLEL_DIRS += ['captivedetect'] michael@0: michael@0: DIRS += ['build'] michael@0: michael@0: EXTRA_COMPONENTS += [ michael@0: 'nsDefaultCLH.js', michael@0: 'nsDefaultCLH.manifest', michael@0: ]