2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:05:39 +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-11-19 16:53:18 +04:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini']
|
2013-11-21 14:26:33 +04:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['tests/browser/browser.ini']
|
2014-07-03 03:43:41 +04:00
|
|
|
|
|
|
|
TESTING_JS_MODULES += [
|
2016-06-20 18:53:55 +03:00
|
|
|
'ajv-4.1.1.js',
|
2014-07-03 03:43:41 +04:00
|
|
|
'AppData.jsm',
|
|
|
|
'AppInfo.jsm',
|
|
|
|
'Assert.jsm',
|
2015-12-24 01:04:49 +03:00
|
|
|
'CoverageUtils.jsm',
|
2015-03-25 02:15:00 +03:00
|
|
|
'MockRegistrar.jsm',
|
2017-06-02 22:50:30 +03:00
|
|
|
'sinon-2.3.2.js',
|
2014-07-22 01:34:01 +04:00
|
|
|
'StructuredLog.jsm',
|
2015-02-23 07:11:22 +03:00
|
|
|
'TestUtils.jsm',
|
2014-07-03 03:43:41 +04:00
|
|
|
]
|
2015-09-04 21:37:32 +03:00
|
|
|
|
2016-06-14 15:27:36 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
|
|
|
TESTING_JS_MODULES += [
|
|
|
|
'MockRegistry.jsm',
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2015-09-04 21:37:32 +03:00
|
|
|
TEST_HARNESS_FILES.testing.mochitest.tests.SimpleTest += ['StructuredLog.jsm']
|
2016-12-31 00:16:56 +03:00
|
|
|
|
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "General")
|
|
|
|
|
|
|
|
with Files("tests/xpcshell/**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "XPCShell Harness")
|
|
|
|
|
|
|
|
with Files("tests/browser/**"):
|
|
|
|
BUG_COMPONENT = ("Testing", "BrowserTest")
|