Files
tubestation/toolkit/components/browser/moz.build
Sandor Molnar e73ab8eb7e Backed out 4 changesets (bug 1786048) for causing multiple failures. CLOSED TREE
Backed out changeset ae94135e68ef (bug 1786048)
Backed out changeset f505df8a481a (bug 1786048)
Backed out changeset 999a18d6f33e (bug 1786048)
Backed out changeset e71e8644b8a9 (bug 1786048)
2022-12-02 20:30:07 +02:00

45 lines
933 B
Python

# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.
with Files("**"):
BUG_COMPONENT = ("Toolkit", "General")
DIRS += ["build"]
XPIDL_SOURCES += [
"nsIEmbeddingSiteWindow.idl",
"nsIWebBrowser.idl",
"nsIWebBrowserChrome.idl",
"nsIWebBrowserChromeFocus.idl",
]
XPIDL_SOURCES += [
"nsIWebBrowserPrint.idl",
]
XPIDL_MODULE = "webBrowser_core"
UNIFIED_SOURCES += [
"nsWebBrowser.cpp",
"nsWebBrowserContentPolicy.cpp",
]
include("/ipc/chromium/chromium-config.mozbuild")
FINAL_LIBRARY = "xul"
LOCAL_INCLUDES += [
"/docshell/base",
"/dom/base",
"/layout/style",
]
EXPORTS += [
"nsEmbedCID.h",
"nsWebBrowser.h",
]
REQUIRES_UNIFIED_BUILD = True