2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:20 -08:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
interfaces = [
|
|
|
|
'base',
|
|
|
|
'canvas',
|
|
|
|
'core',
|
|
|
|
'html',
|
|
|
|
'events',
|
|
|
|
'devicestorage',
|
|
|
|
'settings',
|
|
|
|
'stylesheets',
|
|
|
|
'sidebar',
|
|
|
|
'css',
|
|
|
|
'traversal',
|
|
|
|
'range',
|
|
|
|
'xbl',
|
|
|
|
'xpath',
|
|
|
|
'xul',
|
|
|
|
'storage',
|
|
|
|
'json',
|
|
|
|
'offline',
|
|
|
|
'geolocation',
|
|
|
|
'notification',
|
|
|
|
'permission',
|
|
|
|
'svg',
|
|
|
|
'smil',
|
|
|
|
'apps',
|
2011-08-03 11:12:08 -07:00
|
|
|
'gamepad',
|
2013-02-25 12:47:20 -08:00
|
|
|
]
|
|
|
|
|
|
|
|
PARALLEL_DIRS += ['interfaces/' + i for i in interfaces]
|
|
|
|
|
|
|
|
PARALLEL_DIRS += [
|
|
|
|
'apps',
|
|
|
|
'base',
|
|
|
|
'activities',
|
|
|
|
'bindings',
|
|
|
|
'battery',
|
|
|
|
'bluetooth',
|
|
|
|
'browser-element',
|
|
|
|
'contacts',
|
|
|
|
'phonenumberutils',
|
|
|
|
'alarm',
|
2013-10-02 10:27:07 -07:00
|
|
|
'datastore',
|
2013-02-25 12:47:20 -08:00
|
|
|
'devicestorage',
|
|
|
|
'encoding',
|
|
|
|
'file',
|
2013-09-03 15:26:33 -07:00
|
|
|
'fmradio',
|
2013-02-25 12:47:20 -08:00
|
|
|
'media',
|
|
|
|
'messages',
|
|
|
|
'power',
|
2013-03-28 20:49:41 -07:00
|
|
|
'push',
|
2013-02-25 12:47:20 -08:00
|
|
|
'quota',
|
|
|
|
'settings',
|
|
|
|
'mobilemessage',
|
|
|
|
'src',
|
|
|
|
'time',
|
|
|
|
'locales',
|
|
|
|
'network',
|
|
|
|
'permission',
|
|
|
|
'plugins/base',
|
|
|
|
'plugins/ipc',
|
|
|
|
'indexedDB',
|
|
|
|
'system',
|
|
|
|
'ipc',
|
|
|
|
'identity',
|
|
|
|
'workers',
|
|
|
|
'camera',
|
|
|
|
'audiochannel',
|
2013-07-11 13:40:36 -07:00
|
|
|
'promise',
|
2013-09-06 23:19:53 -07:00
|
|
|
'telephony',
|
2013-09-25 12:38:41 -07:00
|
|
|
'inputmethod',
|
2013-09-05 08:20:26 -07:00
|
|
|
'webidl',
|
2013-02-25 12:47:20 -08:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
PARALLEL_DIRS += ['plugins/ipc/hangui']
|
|
|
|
|
2013-10-29 01:12:45 -07:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
|
|
PARALLEL_DIRS += ['wifi']
|
|
|
|
|
2013-02-25 12:47:20 -08:00
|
|
|
if CONFIG['MOZ_B2G_RIL']:
|
|
|
|
PARALLEL_DIRS += [
|
|
|
|
'icc',
|
|
|
|
'cellbroadcast',
|
|
|
|
'voicemail',
|
2013-10-29 01:12:43 -07:00
|
|
|
'wappush',
|
2013-02-25 12:47:20 -08:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_PAY']:
|
|
|
|
PARALLEL_DIRS += ['payment']
|
|
|
|
|
2012-02-15 16:47:13 -08:00
|
|
|
if CONFIG['MOZ_GAMEPAD']:
|
|
|
|
PARALLEL_DIRS += ['gamepad']
|
|
|
|
|
2013-11-12 10:11:39 -08:00
|
|
|
if CONFIG['MOZ_NFC']:
|
|
|
|
PARALLEL_DIRS += ['nfc']
|
|
|
|
|
2013-02-25 12:47:20 -08:00
|
|
|
# bindings/test is here, because it needs to build after bindings/, and
|
|
|
|
# we build subdirectories before ourselves.
|
|
|
|
TEST_DIRS += [
|
|
|
|
'tests',
|
|
|
|
'imptests',
|
|
|
|
'bindings/test',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'cocoa', 'windows', 'android', 'qt', 'os2'):
|
|
|
|
TEST_DIRS += ['plugins/test']
|
|
|
|
|