Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
michael@0 | 2 | # vim: set filetype=python: |
michael@0 | 3 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | |
michael@0 | 7 | DIRS += ['test'] |
michael@0 | 8 | |
michael@0 | 9 | EXTRA_COMPONENTS += [ |
michael@0 | 10 | 'ActivitiesGlue.js', |
michael@0 | 11 | 'AlertsService.js', |
michael@0 | 12 | 'B2GAboutRedirector.js', |
michael@0 | 13 | 'ContentHandler.js', |
michael@0 | 14 | 'ContentPermissionPrompt.js', |
michael@0 | 15 | 'FilePicker.js', |
michael@0 | 16 | 'HelperAppDialog.js', |
michael@0 | 17 | 'MailtoProtocolHandler.js', |
michael@0 | 18 | 'PaymentGlue.js', |
michael@0 | 19 | 'ProcessGlobal.js', |
michael@0 | 20 | 'SmsProtocolHandler.js', |
michael@0 | 21 | 'TelProtocolHandler.js', |
michael@0 | 22 | 'WebappsUpdateTimer.js', |
michael@0 | 23 | 'YoutubeProtocolHandler.js', |
michael@0 | 24 | ] |
michael@0 | 25 | |
michael@0 | 26 | if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk': |
michael@0 | 27 | EXTRA_COMPONENTS += [ |
michael@0 | 28 | 'OopCommandLine.js', |
michael@0 | 29 | 'SimulatorScreen.js' |
michael@0 | 30 | ] |
michael@0 | 31 | |
michael@0 | 32 | EXTRA_PP_COMPONENTS += [ |
michael@0 | 33 | 'B2GComponents.manifest', |
michael@0 | 34 | 'DirectoryProvider.js', |
michael@0 | 35 | 'RecoveryService.js', |
michael@0 | 36 | ] |
michael@0 | 37 | |
michael@0 | 38 | if CONFIG['MOZ_UPDATER']: |
michael@0 | 39 | EXTRA_PP_COMPONENTS += [ |
michael@0 | 40 | 'UpdatePrompt.js', |
michael@0 | 41 | ] |
michael@0 | 42 | |
michael@0 | 43 | EXTRA_JS_MODULES += [ |
michael@0 | 44 | 'ErrorPage.jsm', |
michael@0 | 45 | 'SignInToWebsite.jsm', |
michael@0 | 46 | 'SystemAppProxy.jsm', |
michael@0 | 47 | 'TelURIParser.jsm', |
michael@0 | 48 | 'WebappsUpdater.jsm', |
michael@0 | 49 | ] |
michael@0 | 50 | |
michael@0 | 51 | if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk': |
michael@0 | 52 | EXTRA_JS_MODULES += [ |
michael@0 | 53 | 'GlobalSimulatorScreen.jsm' |
michael@0 | 54 | ] |
michael@0 | 55 | |
michael@0 | 56 | if CONFIG['MOZ_SERVICES_FXACCOUNTS']: |
michael@0 | 57 | EXTRA_COMPONENTS += [ |
michael@0 | 58 | 'FxAccountsUIGlue.js' |
michael@0 | 59 | ] |
michael@0 | 60 | EXTRA_JS_MODULES += [ |
michael@0 | 61 | 'FxAccountsMgmtService.jsm' |
michael@0 | 62 | ] |