mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
74 lines
1.8 KiB
Python
74 lines
1.8 KiB
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
DIRS += ['test']
|
|
|
|
EXTRA_COMPONENTS += [
|
|
'ActivitiesGlue.js',
|
|
'AlertsService.js',
|
|
'B2GAboutRedirector.js',
|
|
'B2GAppMigrator.js',
|
|
'B2GPresentationDevicePrompt.js',
|
|
'BootstrapCommandLine.js',
|
|
'ContentPermissionPrompt.js',
|
|
'FilePicker.js',
|
|
'FxAccountsUIGlue.js',
|
|
'HelperAppDialog.js',
|
|
'InterAppCommUIGlue.js',
|
|
'MailtoProtocolHandler.js',
|
|
'MobileIdentityUIGlue.js',
|
|
'OMAContentHandler.js',
|
|
'PaymentGlue.js',
|
|
'PaymentProviderStrategy.js',
|
|
'ProcessGlobal.js',
|
|
'SmsProtocolHandler.js',
|
|
'SystemMessageGlue.js',
|
|
'TelProtocolHandler.js',
|
|
'WebappsUpdateTimer.js',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
|
|
EXTRA_COMPONENTS += [
|
|
'CommandLine.js',
|
|
'OopCommandLine.js',
|
|
'SimulatorScreen.js'
|
|
]
|
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
'B2GComponents.manifest',
|
|
'DirectoryProvider.js',
|
|
'RecoveryService.js',
|
|
]
|
|
|
|
if CONFIG['MOZ_UPDATER']:
|
|
EXTRA_PP_COMPONENTS += [
|
|
'UpdatePrompt.js',
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'AlertsHelper.jsm',
|
|
'Bootstraper.jsm',
|
|
'ContentRequestHelper.jsm',
|
|
'DebuggerActors.js',
|
|
'ErrorPage.jsm',
|
|
'Frames.jsm',
|
|
'FxAccountsMgmtService.jsm',
|
|
'LogCapture.jsm',
|
|
'LogParser.jsm',
|
|
'LogShake.jsm',
|
|
'OrientationChangeHandler.jsm',
|
|
'Screenshot.jsm',
|
|
'SignInToWebsite.jsm',
|
|
'SystemAppProxy.jsm',
|
|
'TelURIParser.jsm',
|
|
'WebappsUpdater.jsm',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
|
|
EXTRA_JS_MODULES += [
|
|
'GlobalSimulatorScreen.jsm'
|
|
]
|