toolkit/mozapps/extensions/internal/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/mozapps/extensions/internal/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,31 @@
     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 +JS_MODULES_PATH = 'modules/addons'
    1.11 +
    1.12 +EXTRA_JS_MODULES += [
    1.13 +    'AddonLogging.jsm',
    1.14 +    'AddonRepository.jsm',
    1.15 +    'AddonRepository_SQLiteMigrator.jsm',
    1.16 +    'AddonUpdateChecker.jsm',
    1.17 +    'Content.js',
    1.18 +    'LightweightThemeImageOptimizer.jsm',
    1.19 +    'PluginProvider.jsm',
    1.20 +    'SpellCheckDictionaryBootstrap.js',
    1.21 +]
    1.22 +
    1.23 +EXTRA_PP_JS_MODULES += [
    1.24 +    'XPIProvider.jsm',
    1.25 +    'XPIProviderUtils.js',
    1.26 +]
    1.27 +
    1.28 +# This is used in multiple places, so is defined here to avoid it getting
    1.29 +# out of sync.
    1.30 +DEFINES['MOZ_EXTENSIONS_DB_SCHEMA'] = 16
    1.31 +
    1.32 +# Additional debugging info is exposed in debug builds
    1.33 +if CONFIG['MOZ_EM_DEBUG']:
    1.34 +    DEFINES['MOZ_EM_DEBUG'] = 1

mercurial