2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-09-19 19:26:00 +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/.
|
|
|
|
|
2020-11-09 18:47:07 +03:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
"TextTrack.h",
|
|
|
|
"TextTrackCue.h",
|
|
|
|
"TextTrackCueList.h",
|
|
|
|
"TextTrackList.h",
|
|
|
|
"TextTrackRegion.h",
|
|
|
|
"WebVTTListener.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
"TextTrack.cpp",
|
|
|
|
"TextTrackCue.cpp",
|
|
|
|
"TextTrackCueList.cpp",
|
|
|
|
"TextTrackList.cpp",
|
|
|
|
"TextTrackRegion.cpp",
|
|
|
|
"WebVTTListener.cpp",
|
|
|
|
]
|
|
|
|
|
2013-09-19 19:26:00 +04:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
"nsIWebVTTListener.idl",
|
|
|
|
"nsIWebVTTParserWrapper.idl",
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = "webvtt"
|
|
|
|
|
2019-01-30 22:31:25 +03:00
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
"WebVTTParserWrapper.jsm",
|
|
|
|
]
|
|
|
|
|
|
|
|
XPCOM_MANIFESTS += [
|
|
|
|
"components.conf",
|
2013-09-19 19:26:00 +04:00
|
|
|
]
|
2013-09-17 23:31:00 +04:00
|
|
|
|
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
"vtt.jsm",
|
|
|
|
]
|
2018-02-08 13:45:06 +03:00
|
|
|
|
2020-11-09 18:47:10 +03:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ["test/xpcshell/xpcshell.ini"]
|
2020-11-09 18:47:07 +03:00
|
|
|
|
2020-11-09 18:47:12 +03:00
|
|
|
MOCHITEST_MANIFESTS += ["test/mochitest/mochitest.ini"]
|
|
|
|
|
2020-11-09 18:47:14 +03:00
|
|
|
REFTEST_MANIFESTS += ["test/reftest/reftest.list"]
|
|
|
|
|
2020-11-09 18:47:30 +03:00
|
|
|
CRASHTEST_MANIFESTS += ["test/crashtests/crashtests.list"]
|
|
|
|
|
2020-11-09 18:47:07 +03:00
|
|
|
FINAL_LIBRARY = "xul"
|