1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/b2g/components/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,62 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +DIRS += ['test'] 1.11 + 1.12 +EXTRA_COMPONENTS += [ 1.13 + 'ActivitiesGlue.js', 1.14 + 'AlertsService.js', 1.15 + 'B2GAboutRedirector.js', 1.16 + 'ContentHandler.js', 1.17 + 'ContentPermissionPrompt.js', 1.18 + 'FilePicker.js', 1.19 + 'HelperAppDialog.js', 1.20 + 'MailtoProtocolHandler.js', 1.21 + 'PaymentGlue.js', 1.22 + 'ProcessGlobal.js', 1.23 + 'SmsProtocolHandler.js', 1.24 + 'TelProtocolHandler.js', 1.25 + 'WebappsUpdateTimer.js', 1.26 + 'YoutubeProtocolHandler.js', 1.27 +] 1.28 + 1.29 +if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk': 1.30 + EXTRA_COMPONENTS += [ 1.31 + 'OopCommandLine.js', 1.32 + 'SimulatorScreen.js' 1.33 + ] 1.34 + 1.35 +EXTRA_PP_COMPONENTS += [ 1.36 + 'B2GComponents.manifest', 1.37 + 'DirectoryProvider.js', 1.38 + 'RecoveryService.js', 1.39 +] 1.40 + 1.41 +if CONFIG['MOZ_UPDATER']: 1.42 + EXTRA_PP_COMPONENTS += [ 1.43 + 'UpdatePrompt.js', 1.44 + ] 1.45 + 1.46 +EXTRA_JS_MODULES += [ 1.47 + 'ErrorPage.jsm', 1.48 + 'SignInToWebsite.jsm', 1.49 + 'SystemAppProxy.jsm', 1.50 + 'TelURIParser.jsm', 1.51 + 'WebappsUpdater.jsm', 1.52 +] 1.53 + 1.54 +if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk': 1.55 + EXTRA_JS_MODULES += [ 1.56 + 'GlobalSimulatorScreen.jsm' 1.57 + ] 1.58 + 1.59 +if CONFIG['MOZ_SERVICES_FXACCOUNTS']: 1.60 + EXTRA_COMPONENTS += [ 1.61 + 'FxAccountsUIGlue.js' 1.62 + ] 1.63 + EXTRA_JS_MODULES += [ 1.64 + 'FxAccountsMgmtService.jsm' 1.65 + ]