moz.build (1289B)
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 with Files("**"): 8 BUG_COMPONENT = ("Core", "DOM: Navigation") 9 10 if CONFIG["MOZ_BUILD_APP"] == "browser": 11 DEFINES["MOZ_BUILD_APP_IS_BROWSER"] = True 12 13 DIRS += [ 14 "base", 15 "shistory", 16 "build", 17 ] 18 19 XPCSHELL_TESTS_MANIFESTS += [ 20 "test/unit/xpcshell.toml", 21 "test/unit_ipc/xpcshell.toml", 22 ] 23 24 MOCHITEST_MANIFESTS += [ 25 "test/iframesandbox/mochitest.toml", 26 "test/mochitest/mochitest.toml", 27 "test/navigation/mochitest.toml", 28 ] 29 30 MOCHITEST_CHROME_MANIFESTS += [ 31 "test/chrome/chrome.toml", 32 ] 33 34 BROWSER_CHROME_MANIFESTS += [ 35 "test/browser/browser.toml", 36 "test/navigation/browser.toml", 37 ] 38 39 TEST_HARNESS_FILES.testing.mochitest.tests.docshell.test.chrome += [ 40 "test/chrome/215405_nocache.html", 41 "test/chrome/215405_nocache.html^headers^", 42 "test/chrome/215405_nostore.html", 43 "test/chrome/215405_nostore.html^headers^", 44 "test/chrome/allowContentRetargeting.sjs", 45 "test/chrome/blue.png", 46 "test/chrome/bug89419.sjs", 47 "test/chrome/red.png", 48 ]