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/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Site Identity and Permission Panels")
|
|
|
|
|
|
|
|
with Files("devtools/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Developer Tools")
|
|
|
|
|
|
|
|
with Files("permissionPrompts/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Site Identity and Permission Panels")
|
|
|
|
|
|
|
|
with Files("preferences/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "preferences")
|
|
|
|
|
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.
|
|
|
|
'browser.ini',
|
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',
|
|
|
|
]
|
2016-01-20 09:40:34 +03:00
|
|
|
|
|
|
|
TEST_DIRS += [
|
|
|
|
'mozscreenshots/extension',
|
|
|
|
]
|