michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: DIRS += [ michael@0: 'dom-level0', michael@0: 'ajax', michael@0: 'beacon', michael@0: 'bugs', michael@0: 'general', michael@0: 'geolocation', michael@0: 'localstorage', michael@0: 'orientation', michael@0: 'sessionstorage', michael@0: 'storageevent', michael@0: 'notification', michael@0: 'webcomponents', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_GAMEPAD']: michael@0: DIRS += ['gamepad'] michael@0: michael@0: MOCHITEST_MANIFESTS += [ michael@0: 'crypto/mochitest.ini', michael@0: 'dom-level1-core/mochitest.ini', michael@0: 'dom-level2-core/mochitest.ini', michael@0: 'dom-level2-html/mochitest.ini', michael@0: 'webapps/mochitest.ini', michael@0: 'whatwg/mochitest.ini', michael@0: ] michael@0: michael@0: MOCHITEST_CHROME_MANIFESTS += [ michael@0: 'chrome/chrome.ini', michael@0: 'webapps/chrome.ini', michael@0: 'whatwg/chrome.ini', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gtk2': michael@0: # Bug 788164. michael@0: MOCHITEST_MANIFESTS += [ michael@0: 'pointerlock/mochitest.ini', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_DISABLE_CRYPTOLEGACY']: michael@0: MOCHITEST_MANIFESTS += [ michael@0: 'crypto/mochitest-no-legacy.ini', michael@0: ] michael@0: else: michael@0: MOCHITEST_MANIFESTS += [ michael@0: 'crypto/mochitest-legacy.ini', michael@0: ]