2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:17 +04: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 17:59:48 +04:00
|
|
|
DIRS += ['test']
|
2013-03-12 21:17:46 +04:00
|
|
|
|
2013-07-11 01:57:21 +04:00
|
|
|
EXTRA_COMPONENTS += [
|
2013-06-14 22:07:19 +04:00
|
|
|
'ActivitiesGlue.js',
|
|
|
|
'AlertsService.js',
|
|
|
|
'B2GAboutRedirector.js',
|
2014-08-26 00:30:07 +04:00
|
|
|
'B2GAppMigrator.js',
|
2014-10-13 13:05:50 +04:00
|
|
|
'B2GPresentationDevicePrompt.js',
|
2015-01-23 21:23:45 +03:00
|
|
|
'BootstrapCommandLine.js',
|
2013-06-14 22:07:19 +04:00
|
|
|
'ContentPermissionPrompt.js',
|
|
|
|
'FilePicker.js',
|
2014-07-08 11:11:23 +04:00
|
|
|
'FxAccountsUIGlue.js',
|
2013-11-13 01:17:24 +04:00
|
|
|
'HelperAppDialog.js',
|
2014-05-26 07:53:44 +04:00
|
|
|
'InterAppCommUIGlue.js',
|
2015-08-26 10:11:00 +03:00
|
|
|
'KillSwitch.js',
|
2013-06-14 22:07:19 +04:00
|
|
|
'MailtoProtocolHandler.js',
|
2014-06-07 21:30:19 +04:00
|
|
|
'MobileIdentityUIGlue.js',
|
2014-06-17 17:44:00 +04:00
|
|
|
'OMAContentHandler.js',
|
2013-06-14 22:07:19 +04:00
|
|
|
'PaymentGlue.js',
|
2015-01-19 16:50:32 +03:00
|
|
|
'PaymentProviderStrategy.js',
|
2015-03-30 10:48:11 +03:00
|
|
|
'PresentationRequestUIGlue.js',
|
2013-06-14 22:07:19 +04:00
|
|
|
'ProcessGlobal.js',
|
|
|
|
'SmsProtocolHandler.js',
|
2014-05-30 11:48:25 +04:00
|
|
|
'SystemMessageGlue.js',
|
2013-06-14 22:07:19 +04:00
|
|
|
'TelProtocolHandler.js',
|
2013-09-11 16:00:48 +04:00
|
|
|
'WebappsUpdateTimer.js',
|
2013-06-14 22:07:19 +04:00
|
|
|
]
|
|
|
|
|
2015-08-25 23:42:24 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk' and CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
2014-03-19 16:38:59 +04:00
|
|
|
EXTRA_COMPONENTS += [
|
2014-08-28 12:10:00 +04:00
|
|
|
'CommandLine.js',
|
2014-04-24 22:06:57 +04:00
|
|
|
'OopCommandLine.js',
|
2014-03-19 16:38:59 +04:00
|
|
|
'SimulatorScreen.js'
|
|
|
|
]
|
|
|
|
|
2013-07-11 01:57:21 +04:00
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'B2GComponents.manifest',
|
|
|
|
]
|
|
|
|
|
2015-08-25 23:42:24 +03:00
|
|
|
if CONFIG['MOZ_B2G'] and not CONFIG['MOZ_B2GDROID']:
|
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'DirectoryProvider.js',
|
|
|
|
'RecoveryService.js',
|
|
|
|
]
|
|
|
|
|
2013-06-14 22:07:19 +04:00
|
|
|
if CONFIG['MOZ_UPDATER']:
|
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'UpdatePrompt.js',
|
|
|
|
]
|
2013-07-01 19:34:30 +04:00
|
|
|
|
|
|
|
EXTRA_JS_MODULES += [
|
2015-05-07 11:35:21 +03:00
|
|
|
'AboutServiceWorkers.jsm',
|
2015-08-22 01:37:46 +03:00
|
|
|
'ActivityChannel.jsm',
|
2014-05-01 13:23:00 +04:00
|
|
|
'AlertsHelper.jsm',
|
2015-01-23 21:23:45 +03:00
|
|
|
'Bootstraper.jsm',
|
2014-06-07 21:30:19 +04:00
|
|
|
'ContentRequestHelper.jsm',
|
2014-10-13 18:47:00 +04:00
|
|
|
'DebuggerActors.js',
|
2013-07-01 19:34:30 +04:00
|
|
|
'ErrorPage.jsm',
|
2014-10-13 10:43:00 +04:00
|
|
|
'Frames.jsm',
|
2014-07-08 11:11:23 +04:00
|
|
|
'FxAccountsMgmtService.jsm',
|
2014-08-22 12:32:00 +04:00
|
|
|
'LogCapture.jsm',
|
|
|
|
'LogParser.jsm',
|
|
|
|
'LogShake.jsm',
|
2015-09-29 20:41:00 +03:00
|
|
|
'MultiscreenHandler.jsm',
|
2015-02-01 01:36:51 +03:00
|
|
|
'OrientationChangeHandler.jsm',
|
2015-09-04 21:12:53 +03:00
|
|
|
'SafeMode.jsm',
|
2015-03-11 08:35:00 +03:00
|
|
|
'Screenshot.jsm',
|
2013-07-01 19:34:30 +04:00
|
|
|
'SignInToWebsite.jsm',
|
2014-04-07 17:59:48 +04:00
|
|
|
'SystemAppProxy.jsm',
|
2013-07-01 19:34:30 +04:00
|
|
|
'TelURIParser.jsm',
|
2013-09-11 16:00:48 +04:00
|
|
|
'WebappsUpdater.jsm',
|
2013-07-01 19:34:30 +04:00
|
|
|
]
|
2014-03-17 20:58:16 +04:00
|
|
|
|
2015-08-26 10:11:00 +03:00
|
|
|
EXTRA_PP_JS_MODULES += [
|
|
|
|
'KillSwitchMain.jsm'
|
|
|
|
]
|
|
|
|
|
2014-03-19 16:38:59 +04:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
|
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'GlobalSimulatorScreen.jsm'
|
|
|
|
]
|