1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/media/mediasource/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +# vim: set filetype=python: 1.5 +# This Source Code Form is subject to the terms of the Mozilla Public 1.6 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.8 + 1.9 +PARALLEL_DIRS += [ 1.10 + 'test' 1.11 +] 1.12 + 1.13 +EXPORTS += [ 1.14 + 'AsyncEventRunner.h', 1.15 + 'MediaSourceDecoder.h', 1.16 +] 1.17 + 1.18 +EXPORTS.mozilla.dom += [ 1.19 + 'MediaSource.h', 1.20 + 'SourceBuffer.h', 1.21 + 'SourceBufferList.h', 1.22 +] 1.23 + 1.24 +UNIFIED_SOURCES += [ 1.25 + 'MediaSource.cpp', 1.26 + 'MediaSourceDecoder.cpp', 1.27 + 'SourceBuffer.cpp', 1.28 + 'SourceBufferList.cpp', 1.29 + 'SourceBufferResource.cpp', 1.30 +] 1.31 + 1.32 +FAIL_ON_WARNINGS = True 1.33 + 1.34 +FINAL_LIBRARY = 'gklayout'