2013-06-21 03:14:42 +00: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/.
|
|
|
|
|
2014-07-31 19:54:21 +00:00
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest.ini']
|
2013-06-21 03:16:14 +00:00
|
|
|
|
2013-06-21 03:14:42 +00:00
|
|
|
EXPORTS += [
|
|
|
|
'AsyncEventRunner.h',
|
2013-09-27 05:22:37 +00:00
|
|
|
'MediaSourceDecoder.h',
|
2014-12-09 19:43:21 +00:00
|
|
|
'MediaSourceReader.h',
|
2013-06-21 03:14:42 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'MediaSource.h',
|
|
|
|
'SourceBuffer.h',
|
|
|
|
'SourceBufferList.h',
|
|
|
|
]
|
|
|
|
|
2013-11-18 02:31:46 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2014-09-17 06:33:00 +00:00
|
|
|
'ContainerParser.cpp',
|
2013-06-21 03:14:42 +00:00
|
|
|
'MediaSource.cpp',
|
2013-09-27 05:22:37 +00:00
|
|
|
'MediaSourceDecoder.cpp',
|
2014-08-13 12:22:00 +00:00
|
|
|
'MediaSourceReader.cpp',
|
2014-08-20 08:07:00 +00:00
|
|
|
'MediaSourceUtils.cpp',
|
2013-06-21 03:14:42 +00:00
|
|
|
'SourceBuffer.cpp',
|
2014-08-22 02:14:36 +00:00
|
|
|
'SourceBufferDecoder.cpp',
|
2013-06-21 03:14:42 +00:00
|
|
|
'SourceBufferList.cpp',
|
2013-09-27 05:22:37 +00:00
|
|
|
'SourceBufferResource.cpp',
|
2014-09-04 01:57:06 +00:00
|
|
|
'TrackBuffer.cpp',
|
2013-06-21 03:14:42 +00:00
|
|
|
]
|
|
|
|
|
2013-08-22 06:55:59 +00:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2014-07-22 23:37:51 +00:00
|
|
|
FINAL_LIBRARY = 'xul'
|