1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/components/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,86 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +# These component dirs are built for all apps (including suite) 1.11 +if CONFIG['MOZ_ENABLE_XREMOTE']: 1.12 + PARALLEL_DIRS += ['remote'] 1.13 + 1.14 +PARALLEL_DIRS += [ 1.15 + 'aboutmemory', 1.16 + 'alerts', 1.17 + 'apppicker', 1.18 + 'commandlines', 1.19 + 'console', 1.20 + 'contentprefs', 1.21 + 'cookie', 1.22 + 'crashmonitor', 1.23 + 'diskspacewatcher', 1.24 + 'downloads', 1.25 + 'exthelper', 1.26 + 'filepicker', 1.27 + 'finalizationwitness', 1.28 + 'find', 1.29 + 'intl', 1.30 + 'jsdownloads', 1.31 + 'mediasniffer', 1.32 + 'microformats', 1.33 + 'osfile', 1.34 + 'parentalcontrols', 1.35 + 'passwordmgr', 1.36 + 'perf', 1.37 + 'places', 1.38 + 'prompts', 1.39 + 'protobuf', 1.40 + 'reflect', 1.41 + 'sqlite', 1.42 + 'startup', 1.43 + 'statusfilter', 1.44 + 'telemetry', 1.45 + 'thumbnails', 1.46 + 'typeaheadfind', 1.47 + 'urlformatter', 1.48 + 'viewconfig', 1.49 + 'viewsource', 1.50 + 'workerloader', 1.51 + 'workerlz4', 1.52 +] 1.53 + 1.54 +if CONFIG['MOZ_CRASHREPORTER']: 1.55 + PARALLEL_DIRS += ['crashes'] 1.56 + 1.57 +if CONFIG['MOZ_SOCIAL']: 1.58 + PARALLEL_DIRS += ['social'] 1.59 + 1.60 +if CONFIG['BUILD_CTYPES']: 1.61 + PARALLEL_DIRS += ['ctypes'] 1.62 + 1.63 +if CONFIG['MOZ_FEEDS']: 1.64 + PARALLEL_DIRS += ['feeds'] 1.65 + 1.66 +if CONFIG['MOZ_HELP_VIEWER']: 1.67 + PARALLEL_DIRS += ['help'] 1.68 + 1.69 +if CONFIG['NS_PRINTING']: 1.70 + PARALLEL_DIRS += ['printing'] 1.71 + 1.72 +if CONFIG['MOZ_XUL']: 1.73 + PARALLEL_DIRS += ['autocomplete', 'satchel'] 1.74 + 1.75 +if CONFIG['MOZ_TOOLKIT_SEARCH']: 1.76 + PARALLEL_DIRS += ['search'] 1.77 + 1.78 +if CONFIG['MOZ_URL_CLASSIFIER']: 1.79 + PARALLEL_DIRS += ['url-classifier'] 1.80 + 1.81 +if CONFIG['MOZ_CAPTIVEDETECT']: 1.82 + PARALLEL_DIRS += ['captivedetect'] 1.83 + 1.84 +DIRS += ['build'] 1.85 + 1.86 +EXTRA_COMPONENTS += [ 1.87 + 'nsDefaultCLH.js', 1.88 + 'nsDefaultCLH.manifest', 1.89 +]