b2g/components/moz.build

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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/.
     7 DIRS += ['test']
     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 ]
    26 if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
    27     EXTRA_COMPONENTS += [
    28       'OopCommandLine.js',
    29       'SimulatorScreen.js'
    30     ]
    32 EXTRA_PP_COMPONENTS += [
    33     'B2GComponents.manifest',
    34     'DirectoryProvider.js',
    35     'RecoveryService.js',
    36 ]
    38 if CONFIG['MOZ_UPDATER']:
    39     EXTRA_PP_COMPONENTS += [
    40         'UpdatePrompt.js',
    41     ]
    43 EXTRA_JS_MODULES += [
    44     'ErrorPage.jsm',
    45     'SignInToWebsite.jsm',
    46     'SystemAppProxy.jsm',
    47     'TelURIParser.jsm',
    48     'WebappsUpdater.jsm',
    49 ]
    51 if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
    52     EXTRA_JS_MODULES += [
    53       'GlobalSimulatorScreen.jsm'
    54     ]
    56 if CONFIG['MOZ_SERVICES_FXACCOUNTS']:
    57     EXTRA_COMPONENTS += [
    58         'FxAccountsUIGlue.js'
    59     ]
    60     EXTRA_JS_MODULES += [
    61         'FxAccountsMgmtService.jsm'
    62     ]

mercurial