2017-05-08 09:24:22 +03:00
|
|
|
# -*- 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("**"):
|
2019-03-18 02:13:22 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: Core & HTML")
|
2017-05-08 09:24:22 +03:00
|
|
|
|
|
|
|
XPIDL_SOURCES += [
|
2020-10-24 03:36:18 +03:00
|
|
|
"nsIScriptLoaderObserver.idl",
|
2017-05-08 09:24:22 +03:00
|
|
|
]
|
|
|
|
|
2020-10-24 03:36:18 +03:00
|
|
|
XPIDL_MODULE = "dom"
|
2017-05-08 09:24:22 +03:00
|
|
|
|
|
|
|
EXPORTS += [
|
2020-10-24 03:36:18 +03:00
|
|
|
"nsIScriptElement.h",
|
2017-05-08 09:24:22 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2020-10-24 03:36:18 +03:00
|
|
|
"LoadedScript.h",
|
|
|
|
"ScriptDecoding.h",
|
|
|
|
"ScriptElement.h",
|
|
|
|
"ScriptKind.h",
|
|
|
|
"ScriptLoader.h",
|
|
|
|
"ScriptLoadRequest.h",
|
|
|
|
"ScriptSettings.h",
|
2017-05-08 09:24:22 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2020-10-24 03:36:18 +03:00
|
|
|
"LoadedScript.cpp",
|
|
|
|
"ModuleLoadRequest.cpp",
|
|
|
|
"ScriptElement.cpp",
|
|
|
|
"ScriptLoader.cpp",
|
|
|
|
"ScriptLoadHandler.cpp",
|
|
|
|
"ScriptLoadRequest.cpp",
|
|
|
|
"ScriptSettings.cpp",
|
|
|
|
"ScriptTrace.cpp",
|
2017-05-08 09:24:22 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
2020-10-24 03:36:18 +03:00
|
|
|
"/dom/base",
|
2017-05-08 09:24:22 +03:00
|
|
|
]
|
|
|
|
|
2020-10-24 03:36:18 +03:00
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
2017-05-08 09:24:22 +03:00
|
|
|
|
2020-10-24 03:36:18 +03:00
|
|
|
FINAL_LIBRARY = "xul"
|