зеркало из https://github.com/mozilla/gecko-dev.git
48 строки
1.0 KiB
Python
48 строки
1.0 KiB
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/.
|
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest.ini']
|
|
|
|
EXPORTS += [
|
|
'AsyncEventRunner.h',
|
|
'AutoTaskQueue.h',
|
|
'MediaSourceDecoder.h',
|
|
'MediaSourceDemuxer.h',
|
|
'SourceBufferAttributes.h',
|
|
'SourceBufferTask.h',
|
|
'TrackBuffersManager.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'MediaSource.h',
|
|
'SourceBuffer.h',
|
|
'SourceBufferList.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'ContainerParser.cpp',
|
|
'MediaSource.cpp',
|
|
'MediaSourceDecoder.cpp',
|
|
'MediaSourceDemuxer.cpp',
|
|
'MediaSourceUtils.cpp',
|
|
'ResourceQueue.cpp',
|
|
'SourceBuffer.cpp',
|
|
'SourceBufferList.cpp',
|
|
'SourceBufferResource.cpp',
|
|
'TrackBuffersManager.cpp',
|
|
]
|
|
|
|
TEST_DIRS += [
|
|
'gtest',
|
|
]
|
|
|
|
if CONFIG['MOZ_GONK_MEDIACODEC']:
|
|
DEFINES['MOZ_GONK_MEDIACODEC'] = True
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
CXXFLAGS += ['-Wno-error=shadow']
|