b2g/components/moz.build

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

mercurial