dom/tests/mochitest/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/tests/mochitest/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,53 @@
     1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     1.5 +# vim: set filetype=python:
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +DIRS += [
    1.11 +    'dom-level0',
    1.12 +    'ajax',
    1.13 +    'beacon',
    1.14 +    'bugs',
    1.15 +    'general',
    1.16 +    'geolocation',
    1.17 +    'localstorage',
    1.18 +    'orientation',
    1.19 +    'sessionstorage',
    1.20 +    'storageevent',
    1.21 +    'notification',
    1.22 +    'webcomponents',
    1.23 +]
    1.24 +
    1.25 +if CONFIG['MOZ_GAMEPAD']:
    1.26 +   DIRS += ['gamepad']
    1.27 +
    1.28 +MOCHITEST_MANIFESTS += [
    1.29 +    'crypto/mochitest.ini',
    1.30 +    'dom-level1-core/mochitest.ini',
    1.31 +    'dom-level2-core/mochitest.ini',
    1.32 +    'dom-level2-html/mochitest.ini',
    1.33 +    'webapps/mochitest.ini',
    1.34 +    'whatwg/mochitest.ini',
    1.35 +]
    1.36 +
    1.37 +MOCHITEST_CHROME_MANIFESTS += [
    1.38 +    'chrome/chrome.ini',
    1.39 +    'webapps/chrome.ini',
    1.40 +    'whatwg/chrome.ini',
    1.41 +]
    1.42 +
    1.43 +if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gtk2':
    1.44 +    # Bug 788164.
    1.45 +    MOCHITEST_MANIFESTS += [
    1.46 +        'pointerlock/mochitest.ini',
    1.47 +    ]
    1.48 +
    1.49 +if CONFIG['MOZ_DISABLE_CRYPTOLEGACY']:
    1.50 +   MOCHITEST_MANIFESTS += [
    1.51 +      'crypto/mochitest-no-legacy.ini',
    1.52 +   ]
    1.53 +else:
    1.54 +   MOCHITEST_MANIFESTS += [
    1.55 +      'crypto/mochitest-legacy.ini',
    1.56 +   ]

mercurial