moz.build (3084B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 TEST_DIRS += ["gtest"] 8 9 BROWSER_CHROME_MANIFESTS += ["browser/browser.toml"] 10 11 MARIONETTE_MANIFESTS += ["marionette/manifest.toml"] 12 13 MOCHITEST_MANIFESTS += ["mochitest/mochitest.toml"] 14 15 XPCSHELL_TESTS_MANIFESTS += [ 16 "xpcshell/caching/xpcshell.toml", 17 "xpcshell/telemetry/xpcshell.toml", 18 "xpcshell/upgrades/xpcshell.toml", 19 "xpcshell/xpcshell.toml", 20 ] 21 22 TEST_HARNESS_FILES.testing.mochitest.browser.dom.quota.test.common += [ 23 "common/browser.js", 24 "common/content.js", 25 "common/file.js", 26 "common/global.js", 27 "common/nestedtest.js", 28 "common/system.js", 29 "common/test_simpledb.js", 30 "common/test_storage_manager_persist_allow.js", 31 "common/test_storage_manager_persist_deny.js", 32 "common/test_storage_manager_persisted.js", 33 ] 34 35 TEST_HARNESS_FILES.testing.mochitest.tests.dom.quota.test.common += [ 36 "common/content.js", 37 "common/file.js", 38 "common/global.js", 39 "common/mochitest.js", 40 "common/test_simpledb.js", 41 "common/test_storage_manager_persist_allow.js", 42 "common/test_storage_manager_persist_deny.js", 43 "common/test_storage_manager_persisted.js", 44 ] 45 46 TEST_HARNESS_FILES.testing.mochitest.tests.dom.quota.test.modules += [ 47 "modules/content/Assert.mjs", 48 "modules/content/ModuleLoader.mjs", 49 "modules/content/StorageUtils.mjs", 50 "modules/content/Utils.mjs", 51 "modules/content/UtilsParent.mjs", 52 "modules/content/WorkerDriver.mjs", 53 ] 54 55 TEST_HARNESS_FILES.testing.mochitest.tests.dom.quota.test.modules.worker += [ 56 "modules/content/worker/Assert.js", 57 "modules/content/worker/head.js", 58 "modules/content/worker/ModuleLoader.js", 59 "modules/content/worker/Utils.js", 60 "modules/content/worker/UtilsChild.mjs", 61 ] 62 63 TEST_HARNESS_FILES.xpcshell.dom.quota.test.common += [ 64 "common/file.js", 65 "common/global.js", 66 "common/system.js", 67 "common/test_simpledb.js", 68 "common/xpcshell.js", 69 ] 70 71 TEST_HARNESS_FILES.xpcshell.dom.quota.test.xpcshell.common += [ 72 "xpcshell/common/head.js", 73 "xpcshell/common/utils.js", 74 ] 75 76 TESTING_JS_MODULES.dom.quota.test.modules += [ 77 "modules/system/FileUtils.sys.mjs", 78 "modules/system/ModuleLoader.sys.mjs", 79 "modules/system/PrefUtils.sys.mjs", 80 "modules/system/PrincipalUtils.sys.mjs", 81 "modules/system/ProcessUtils.sys.mjs", 82 "modules/system/QuotaUtils.sys.mjs", 83 "modules/system/RequestError.sys.mjs", 84 "modules/system/StorageUtils.sys.mjs", 85 "modules/system/Utils.sys.mjs", 86 "modules/system/UtilsParent.sys.mjs", 87 "modules/system/WorkerDriver.sys.mjs", 88 ] 89 90 TESTING_JS_MODULES.dom.quota.test.modules.worker += [ 91 "modules/system/worker/Assert.js", 92 "modules/system/worker/head.js", 93 "modules/system/worker/ModuleLoader.js", 94 "modules/system/worker/Utils.js", 95 "modules/system/worker/UtilsChild.mjs", 96 ]