mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
58 lines
2.0 KiB
Python
58 lines
2.0 KiB
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
MOCHITEST_MANIFESTS += [
|
|
'mochitest/ajax/jquery/mochitest.ini',
|
|
'mochitest/ajax/lib/mochitest.ini',
|
|
'mochitest/ajax/mochikit/mochitest.ini',
|
|
'mochitest/ajax/mochikit/tests/mochitest.ini',
|
|
'mochitest/ajax/offline/mochitest.ini',
|
|
'mochitest/ajax/prototype/mochitest.ini',
|
|
'mochitest/ajax/scriptaculous/mochitest.ini',
|
|
'mochitest/beacon/mochitest.ini',
|
|
'mochitest/bugs/mochitest.ini',
|
|
'mochitest/crypto/mochitest.ini',
|
|
'mochitest/dom-level0/mochitest.ini',
|
|
'mochitest/dom-level1-core/mochitest.ini',
|
|
'mochitest/dom-level2-core/mochitest.ini',
|
|
'mochitest/dom-level2-html/mochitest.ini',
|
|
'mochitest/fetch/mochitest.ini',
|
|
'mochitest/general/mochitest.ini',
|
|
'mochitest/geolocation/mochitest.ini',
|
|
'mochitest/localstorage/mochitest.ini',
|
|
'mochitest/notification/mochitest.ini',
|
|
'mochitest/orientation/mochitest.ini',
|
|
'mochitest/sessionstorage/mochitest.ini',
|
|
'mochitest/storageevent/mochitest.ini',
|
|
'mochitest/webapps/mochitest.ini',
|
|
'mochitest/webcomponents/mochitest.ini',
|
|
'mochitest/whatwg/mochitest.ini',
|
|
]
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += [
|
|
'mochitest/beacon/chrome.ini',
|
|
'mochitest/chrome/chrome.ini',
|
|
'mochitest/general/chrome.ini',
|
|
'mochitest/localstorage/chrome.ini',
|
|
'mochitest/sessionstorage/chrome.ini',
|
|
'mochitest/webapps/chrome.ini',
|
|
'mochitest/whatwg/chrome.ini',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gtk2':
|
|
# Bug 788164.
|
|
MOCHITEST_MANIFESTS += [
|
|
'mochitest/pointerlock/mochitest.ini',
|
|
]
|
|
|
|
if CONFIG['MOZ_GAMEPAD']:
|
|
MOCHITEST_MANIFESTS += [
|
|
'mochitest/gamepad/mochitest.ini',
|
|
]
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['unit/xpcshell.ini']
|
|
BROWSER_CHROME_MANIFESTS += ['browser/browser.ini']
|