2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +04:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2013-06-10 19:19:28 +04:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'SettingsManager.js',
|
|
|
|
'SettingsManager.manifest',
|
|
|
|
]
|
2013-06-10 20:08:47 +04:00
|
|
|
|
2014-02-19 22:26:49 +04:00
|
|
|
if CONFIG['MOZ_B2G']:
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'SettingsService.js',
|
|
|
|
'SettingsService.manifest',
|
|
|
|
]
|
|
|
|
|
2014-07-26 10:17:24 +04:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/chrome.ini']
|
|
|
|
|
2013-06-10 20:08:47 +04:00
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'SettingsDB.jsm',
|
2014-08-28 08:01:29 +04:00
|
|
|
'SettingsRequestManager.jsm'
|
2013-06-10 20:08:47 +04:00
|
|
|
]
|
2014-07-26 10:17:24 +04:00
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest.ini']
|
2014-10-09 13:12:00 +04:00
|
|
|
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini']
|