2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:17 +00: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 13:59:48 +00:00
|
|
|
DIRS += ['test']
|
2013-03-12 17:17:46 +00:00
|
|
|
|
2013-07-10 21:57:21 +00:00
|
|
|
EXTRA_COMPONENTS += [
|
2013-06-14 18:07:19 +00:00
|
|
|
'ActivitiesGlue.js',
|
|
|
|
'AlertsService.js',
|
|
|
|
'B2GAboutRedirector.js',
|
|
|
|
'ContentPermissionPrompt.js',
|
|
|
|
'FilePicker.js',
|
2013-11-12 21:17:24 +00:00
|
|
|
'HelperAppDialog.js',
|
2014-05-26 03:53:44 +00:00
|
|
|
'InterAppCommUIGlue.js',
|
2013-06-14 18:07:19 +00:00
|
|
|
'MailtoProtocolHandler.js',
|
|
|
|
'PaymentGlue.js',
|
|
|
|
'ProcessGlobal.js',
|
|
|
|
'SmsProtocolHandler.js',
|
|
|
|
'TelProtocolHandler.js',
|
2013-09-11 12:00:48 +00:00
|
|
|
'WebappsUpdateTimer.js',
|
2013-06-14 18:07:19 +00:00
|
|
|
'YoutubeProtocolHandler.js',
|
|
|
|
]
|
|
|
|
|
2014-03-19 12:38:59 +00:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
|
|
|
|
EXTRA_COMPONENTS += [
|
2014-04-24 18:06:57 +00:00
|
|
|
'OopCommandLine.js',
|
2014-03-19 12:38:59 +00:00
|
|
|
'SimulatorScreen.js'
|
|
|
|
]
|
|
|
|
|
2013-07-10 21:57:21 +00:00
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'B2GComponents.manifest',
|
|
|
|
'DirectoryProvider.js',
|
|
|
|
'RecoveryService.js',
|
|
|
|
]
|
|
|
|
|
2013-06-14 18:07:19 +00:00
|
|
|
if CONFIG['MOZ_UPDATER']:
|
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'UpdatePrompt.js',
|
|
|
|
]
|
2013-07-01 15:34:30 +00:00
|
|
|
|
|
|
|
EXTRA_JS_MODULES += [
|
2014-05-01 09:23:00 +00:00
|
|
|
'AlertsHelper.jsm',
|
2013-07-01 15:34:30 +00:00
|
|
|
'ErrorPage.jsm',
|
|
|
|
'SignInToWebsite.jsm',
|
2014-04-07 13:59:48 +00:00
|
|
|
'SystemAppProxy.jsm',
|
2013-07-01 15:34:30 +00:00
|
|
|
'TelURIParser.jsm',
|
2013-09-11 12:00:48 +00:00
|
|
|
'WebappsUpdater.jsm',
|
2013-07-01 15:34:30 +00:00
|
|
|
]
|
2014-03-17 16:58:16 +00:00
|
|
|
|
2014-03-19 12:38:59 +00:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
|
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'GlobalSimulatorScreen.jsm'
|
|
|
|
]
|
|
|
|
|
2014-03-17 16:58:16 +00:00
|
|
|
if CONFIG['MOZ_SERVICES_FXACCOUNTS']:
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'FxAccountsUIGlue.js'
|
|
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'FxAccountsMgmtService.jsm'
|
|
|
|
]
|