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