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 += [
|
2023-11-28 04:02:01 +03:00
|
|
|
"test/unit/xpcshell.toml",
|
|
|
|
"test/unit_ipc/xpcshell.toml",
|
2015-03-11 12:49:04 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += [
|
2023-10-02 20:18:28 +03:00
|
|
|
"test/iframesandbox/mochitest.toml",
|
|
|
|
"test/mochitest/mochitest.toml",
|
|
|
|
"test/navigation/mochitest.toml",
|
2015-03-11 12:49:04 +03:00
|
|
|
]
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2015-03-11 12:49:04 +03:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += [
|
Bug 1850545 - convert .ini manifests to .toml: batch 3 chrome.ini (bis) r=jmaher,geckoview-reviewers,extension-reviewers,credential-management-reviewers,devtools-reviewers,fxview-reviewers,places-reviewers,profiler-reviewers,m_kato,mak,mtigley
Differential Revision: https://phabricator.services.mozilla.com/D187597
2023-09-13 21:28:32 +03:00
|
|
|
"test/chrome/chrome.toml",
|
2015-03-11 12:49:04 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
2023-09-22 23:42:14 +03:00
|
|
|
"test/browser/browser.toml",
|
|
|
|
"test/navigation/browser.toml",
|
2015-03-11 12:49:04 +03:00
|
|
|
]
|
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",
|
|
|
|
]
|