mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
646050b29f
--- content/media/mediasource/moz.build | 4 ++ content/media/mediasource/test/Makefile.in | 18 +++++ content/media/mediasource/test/moz.build | 4 ++ content/media/mediasource/test/seek.webm | Bin 0 -> 215529 bytes .../media/mediasource/test/test_MediaSource.html | 79 +++++++++++++++++++++ 5 files changed, 105 insertions(+) create mode 100644 content/media/mediasource/test/Makefile.in create mode 100644 content/media/mediasource/test/moz.build create mode 100644 content/media/mediasource/test/seek.webm create mode 100644 content/media/mediasource/test/test_MediaSource.html
29 lines
550 B
Python
29 lines
550 B
Python
# 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/.
|
|
|
|
PARALLEL_DIRS += [
|
|
'test'
|
|
]
|
|
|
|
MODULE = 'content'
|
|
|
|
EXPORTS += [
|
|
'AsyncEventRunner.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'MediaSource.h',
|
|
'SourceBuffer.h',
|
|
'SourceBufferList.h',
|
|
]
|
|
|
|
CPP_SOURCES += [
|
|
'MediaSource.cpp',
|
|
'MediaSourceInputAdapter.cpp',
|
|
'SourceBuffer.cpp',
|
|
'SourceBufferList.cpp',
|
|
]
|
|
|