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/.
|
|
|
|
|
2013-06-20 20:16:14 -07:00
|
|
|
PARALLEL_DIRS += [
|
|
|
|
'test'
|
|
|
|
]
|
|
|
|
|
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 += [
|
2013-06-20 20:14:42 -07:00
|
|
|
'MediaSource.cpp',
|
2013-09-26 22:22:37 -07:00
|
|
|
'MediaSourceDecoder.cpp',
|
2013-06-20 20:14:42 -07:00
|
|
|
'SourceBuffer.cpp',
|
|
|
|
'SourceBufferList.cpp',
|
2013-09-26 22:22:37 -07:00
|
|
|
'SourceBufferResource.cpp',
|
2013-06-20 20:14:42 -07:00
|
|
|
]
|
|
|
|
|
2013-08-21 23:55:59 -07:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-11-18 18:47:14 -08:00
|
|
|
FINAL_LIBRARY = 'gklayout'
|