michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: JS_MODULES_PATH = 'modules/addons' michael@0: michael@0: EXTRA_JS_MODULES += [ michael@0: 'AddonLogging.jsm', michael@0: 'AddonRepository.jsm', michael@0: 'AddonRepository_SQLiteMigrator.jsm', michael@0: 'AddonUpdateChecker.jsm', michael@0: 'Content.js', michael@0: 'LightweightThemeImageOptimizer.jsm', michael@0: 'PluginProvider.jsm', michael@0: 'SpellCheckDictionaryBootstrap.js', michael@0: ] michael@0: michael@0: EXTRA_PP_JS_MODULES += [ michael@0: 'XPIProvider.jsm', michael@0: 'XPIProviderUtils.js', michael@0: ] michael@0: michael@0: # This is used in multiple places, so is defined here to avoid it getting michael@0: # out of sync. michael@0: DEFINES['MOZ_EXTENSIONS_DB_SCHEMA'] = 16 michael@0: michael@0: # Additional debugging info is exposed in debug builds michael@0: if CONFIG['MOZ_EM_DEBUG']: michael@0: DEFINES['MOZ_EM_DEBUG'] = 1