2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-01-20 09:40:34 +03: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/.
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
|
|
|
with Files("controlCenter/**"):
|
2019-10-11 11:44:00 +03:00
|
|
|
BUG_COMPONENT = ("Firefox", "Site Identity")
|
2017-04-19 15:11:47 +03:00
|
|
|
|
|
|
|
with Files("devtools/**"):
|
2018-06-20 21:34:40 +03:00
|
|
|
BUG_COMPONENT = ("DevTools", "General")
|
2017-04-19 15:11:47 +03:00
|
|
|
|
|
|
|
with Files("permissionPrompts/**"):
|
2019-10-11 11:44:00 +03:00
|
|
|
BUG_COMPONENT = ("Firefox", "Site Permissions")
|
2017-04-19 15:11:47 +03:00
|
|
|
|
|
|
|
with Files("preferences/**"):
|
2022-10-26 12:30:07 +03:00
|
|
|
BUG_COMPONENT = ("Firefox", "Settings UI")
|
2017-04-19 15:11:47 +03:00
|
|
|
|
2016-02-14 04:44:05 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
|
|
|
# Each test is in it's own directory so it gets run in a clean profile with
|
|
|
|
# run-by-dir.
|
2016-07-25 13:49:53 +03:00
|
|
|
"controlCenter/browser.ini",
|
2016-02-14 04:44:05 +03:00
|
|
|
"devtools/browser.ini",
|
2016-05-27 02:23:14 +03:00
|
|
|
"permissionPrompts/browser.ini",
|
2016-02-14 04:44:05 +03:00
|
|
|
"preferences/browser.ini",
|
|
|
|
"primaryUI/browser.ini",
|
2020-04-25 20:37:10 +03:00
|
|
|
"tests/browser/browser.ini",
|
2016-02-14 04:44:05 +03:00
|
|
|
]
|
2016-01-20 09:40:34 +03:00
|
|
|
|
|
|
|
TEST_DIRS += [
|
|
|
|
"mozscreenshots/extension",
|
|
|
|
]
|
2016-02-10 06:12:40 +03:00
|
|
|
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ["tests/xpcshell/xpcshell.ini"]
|