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:17 -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/.
|
|
|
|
|
2014-04-07 06:59:48 -07:00
|
|
|
DIRS += ['test']
|
2013-03-12 10:17:46 -07:00
|
|
|
|
2013-07-10 14:57:21 -07:00
|
|
|
EXTRA_COMPONENTS += [
|
2013-06-14 11:07:19 -07:00
|
|
|
'ActivitiesGlue.js',
|
|
|
|
'AlertsService.js',
|
|
|
|
'B2GAboutRedirector.js',
|
2014-08-25 13:30:07 -07:00
|
|
|
'B2GAppMigrator.js',
|
2013-06-14 11:07:19 -07:00
|
|
|
'ContentPermissionPrompt.js',
|
|
|
|
'FilePicker.js',
|
2014-07-08 00:11:23 -07:00
|
|
|
'FxAccountsUIGlue.js',
|
2013-11-12 13:17:24 -08:00
|
|
|
'HelperAppDialog.js',
|
2014-05-25 20:53:44 -07:00
|
|
|
'InterAppCommUIGlue.js',
|
2013-06-14 11:07:19 -07:00
|
|
|
'MailtoProtocolHandler.js',
|
2014-06-07 10:30:19 -07:00
|
|
|
'MobileIdentityUIGlue.js',
|
2014-06-17 06:44:00 -07:00
|
|
|
'OMAContentHandler.js',
|
2013-06-14 11:07:19 -07:00
|
|
|
'PaymentGlue.js',
|
|
|
|
'ProcessGlobal.js',
|
|
|
|
'SmsProtocolHandler.js',
|
2014-05-30 00:48:25 -07:00
|
|
|
'SystemMessageGlue.js',
|
2013-06-14 11:07:19 -07:00
|
|
|
'TelProtocolHandler.js',
|
2013-09-11 05:00:48 -07:00
|
|
|
'WebappsUpdateTimer.js',
|
2013-06-14 11:07:19 -07:00
|
|
|
'YoutubeProtocolHandler.js',
|
|
|
|
]
|
|
|
|
|
2014-03-19 05:38:59 -07:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
|
|
|
|
EXTRA_COMPONENTS += [
|
2014-08-28 01:10:00 -07:00
|
|
|
'CommandLine.js',
|
2014-04-24 11:06:57 -07:00
|
|
|
'OopCommandLine.js',
|
2014-03-19 05:38:59 -07:00
|
|
|
'SimulatorScreen.js'
|
|
|
|
]
|
|
|
|
|
2013-07-10 14:57:21 -07:00
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'B2GComponents.manifest',
|
|
|
|
'DirectoryProvider.js',
|
|
|
|
'RecoveryService.js',
|
|
|
|
]
|
|
|
|
|
2013-06-14 11:07:19 -07:00
|
|
|
if CONFIG['MOZ_UPDATER']:
|
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'UpdatePrompt.js',
|
|
|
|
]
|
2013-07-01 08:34:30 -07:00
|
|
|
|
|
|
|
EXTRA_JS_MODULES += [
|
2014-05-01 02:23:00 -07:00
|
|
|
'AlertsHelper.jsm',
|
2014-06-30 03:16:00 -07:00
|
|
|
'AppFrames.jsm',
|
2014-06-07 10:30:19 -07:00
|
|
|
'ContentRequestHelper.jsm',
|
2013-07-01 08:34:30 -07:00
|
|
|
'ErrorPage.jsm',
|
2014-07-08 00:11:23 -07:00
|
|
|
'FxAccountsMgmtService.jsm',
|
2014-08-22 01:32:00 -07:00
|
|
|
'LogCapture.jsm',
|
|
|
|
'LogParser.jsm',
|
|
|
|
'LogShake.jsm',
|
2013-07-01 08:34:30 -07:00
|
|
|
'SignInToWebsite.jsm',
|
2014-04-07 06:59:48 -07:00
|
|
|
'SystemAppProxy.jsm',
|
2013-07-01 08:34:30 -07:00
|
|
|
'TelURIParser.jsm',
|
2013-09-11 05:00:48 -07:00
|
|
|
'WebappsUpdater.jsm',
|
2013-07-01 08:34:30 -07:00
|
|
|
]
|
2014-03-17 09:58:16 -07:00
|
|
|
|
2014-03-19 05:38:59 -07:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
|
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'GlobalSimulatorScreen.jsm'
|
|
|
|
]
|