2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:19 +04:00
|
|
|
# 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/.
|
|
|
|
|
2017-04-09 12:43:52 +03:00
|
|
|
with Files("**"):
|
2019-11-08 15:17:57 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: Navigation")
|
2017-04-09 12:43:52 +03:00
|
|
|
|
2019-10-14 18:58:42 +03:00
|
|
|
if CONFIG["MOZ_BUILD_APP"] == "browser":
|
|
|
|
DEFINES["MOZ_BUILD_APP_IS_BROWSER"] = True
|
|
|
|
|
2013-02-26 00:47:19 +04:00
|
|
|
DIRS += [
|
|
|
|
"base",
|
|
|
|
"shistory",
|
|
|
|
"build",
|
|
|
|
]
|
|
|
|
|
2015-03-11 12:49:04 +03:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
|
|
"test/unit/xpcshell.ini",
|
|
|
|
"test/unit_ipc/xpcshell.ini",
|
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += [
|
|
|
|
"test/iframesandbox/mochitest.ini",
|
2018-10-02 10:45:54 +03:00
|
|
|
"test/mochitest/mochitest.ini",
|
2015-03-11 12:49:04 +03:00
|
|
|
"test/navigation/mochitest.ini",
|
|
|
|
]
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2015-03-11 12:49:04 +03:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += [
|
|
|
|
"test/chrome/chrome.ini",
|
|
|
|
]
|
|
|
|
|
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
|
|
|
"test/browser/browser.ini",
|
|
|
|
"test/navigation/browser.ini",
|
|
|
|
]
|
2016-01-28 04:46:34 +03:00
|
|
|
|
|
|
|
TEST_HARNESS_FILES.testing.mochitest.tests.docshell.test.chrome += [
|
|
|
|
"test/chrome/215405_nocache.html",
|
|
|
|
"test/chrome/215405_nocache.html^headers^",
|
|
|
|
"test/chrome/215405_nostore.html",
|
|
|
|
"test/chrome/215405_nostore.html^headers^",
|
|
|
|
"test/chrome/allowContentRetargeting.sjs",
|
|
|
|
"test/chrome/blue.png",
|
|
|
|
"test/chrome/bug89419.sjs",
|
|
|
|
"test/chrome/red.png",
|
|
|
|
]
|