2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:20:01 +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/.
|
|
|
|
|
2014-02-07 01:00:20 +04:00
|
|
|
MOCHITEST_MANIFESTS += ["mochitest/mochitest.ini"]
|
2015-01-03 04:00:20 +03:00
|
|
|
|
2013-04-29 22:49:00 +04:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ["unit/xpcshell.ini"]
|
|
|
|
|
2015-12-17 20:28:15 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ["mochitest/browser.ini"]
|
|
|
|
|
2022-01-17 15:09:52 +03:00
|
|
|
TEST_DIRS += [
|
|
|
|
"gtest",
|
|
|
|
]
|
|
|
|
|
2017-04-04 19:20:37 +03:00
|
|
|
TESTING_JS_MODULES += [
|
|
|
|
"HandlerServiceTestUtils.jsm",
|
|
|
|
]
|
|
|
|
|
2014-10-30 07:06:12 +03:00
|
|
|
GeckoSimplePrograms(
|
|
|
|
[
|
2013-08-14 11:00:13 +04:00
|
|
|
"WriteArgument",
|
2014-10-30 07:06:12 +03:00
|
|
|
],
|
|
|
|
linkage=None,
|
|
|
|
)
|
2013-08-14 11:00:13 +04:00
|
|
|
|
2017-02-03 23:18:16 +03:00
|
|
|
if CONFIG["COMPILE_ENVIRONMENT"]:
|
|
|
|
TEST_HARNESS_FILES.xpcshell.uriloader.exthandler.tests.unit += [
|
|
|
|
"!WriteArgument%s" % CONFIG["BIN_SUFFIX"]
|
|
|
|
]
|
|
|
|
|
2014-08-07 09:21:03 +04:00
|
|
|
USE_LIBS += [
|
|
|
|
"nspr",
|
|
|
|
]
|