toolkit/components/moz.build

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

michael@0 1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
michael@0 2 # vim: set filetype=python:
michael@0 3 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 6
michael@0 7 # These component dirs are built for all apps (including suite)
michael@0 8 if CONFIG['MOZ_ENABLE_XREMOTE']:
michael@0 9 PARALLEL_DIRS += ['remote']
michael@0 10
michael@0 11 PARALLEL_DIRS += [
michael@0 12 'aboutmemory',
michael@0 13 'alerts',
michael@0 14 'apppicker',
michael@0 15 'commandlines',
michael@0 16 'console',
michael@0 17 'contentprefs',
michael@0 18 'cookie',
michael@0 19 'crashmonitor',
michael@0 20 'diskspacewatcher',
michael@0 21 'downloads',
michael@0 22 'exthelper',
michael@0 23 'filepicker',
michael@0 24 'finalizationwitness',
michael@0 25 'find',
michael@0 26 'intl',
michael@0 27 'jsdownloads',
michael@0 28 'mediasniffer',
michael@0 29 'microformats',
michael@0 30 'osfile',
michael@0 31 'parentalcontrols',
michael@0 32 'passwordmgr',
michael@0 33 'perf',
michael@0 34 'places',
michael@0 35 'prompts',
michael@0 36 'protobuf',
michael@0 37 'reflect',
michael@0 38 'sqlite',
michael@0 39 'startup',
michael@0 40 'statusfilter',
michael@0 41 'telemetry',
michael@0 42 'thumbnails',
michael@0 43 'typeaheadfind',
michael@0 44 'urlformatter',
michael@0 45 'viewconfig',
michael@0 46 'viewsource',
michael@0 47 'workerloader',
michael@0 48 'workerlz4',
michael@0 49 ]
michael@0 50
michael@0 51 if CONFIG['MOZ_CRASHREPORTER']:
michael@0 52 PARALLEL_DIRS += ['crashes']
michael@0 53
michael@0 54 if CONFIG['MOZ_SOCIAL']:
michael@0 55 PARALLEL_DIRS += ['social']
michael@0 56
michael@0 57 if CONFIG['BUILD_CTYPES']:
michael@0 58 PARALLEL_DIRS += ['ctypes']
michael@0 59
michael@0 60 if CONFIG['MOZ_FEEDS']:
michael@0 61 PARALLEL_DIRS += ['feeds']
michael@0 62
michael@0 63 if CONFIG['MOZ_HELP_VIEWER']:
michael@0 64 PARALLEL_DIRS += ['help']
michael@0 65
michael@0 66 if CONFIG['NS_PRINTING']:
michael@0 67 PARALLEL_DIRS += ['printing']
michael@0 68
michael@0 69 if CONFIG['MOZ_XUL']:
michael@0 70 PARALLEL_DIRS += ['autocomplete', 'satchel']
michael@0 71
michael@0 72 if CONFIG['MOZ_TOOLKIT_SEARCH']:
michael@0 73 PARALLEL_DIRS += ['search']
michael@0 74
michael@0 75 if CONFIG['MOZ_URL_CLASSIFIER']:
michael@0 76 PARALLEL_DIRS += ['url-classifier']
michael@0 77
michael@0 78 if CONFIG['MOZ_CAPTIVEDETECT']:
michael@0 79 PARALLEL_DIRS += ['captivedetect']
michael@0 80
michael@0 81 DIRS += ['build']
michael@0 82
michael@0 83 EXTRA_COMPONENTS += [
michael@0 84 'nsDefaultCLH.js',
michael@0 85 'nsDefaultCLH.manifest',
michael@0 86 ]

mercurial