diff options
Diffstat (limited to 'dom/media/platforms/ffmpeg/ffmpeg59/moz.build')
-rw-r--r-- | dom/media/platforms/ffmpeg/ffmpeg59/moz.build | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dom/media/platforms/ffmpeg/ffmpeg59/moz.build b/dom/media/platforms/ffmpeg/ffmpeg59/moz.build new file mode 100644 index 000000000..00ca9828a --- /dev/null +++ b/dom/media/platforms/ffmpeg/ffmpeg59/moz.build @@ -0,0 +1,27 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# 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/. + +SOURCES += [ + '../FFmpegAudioDecoder.cpp', + '../FFmpegDataDecoder.cpp', + '../FFmpegDecoderModule.cpp', + '../FFmpegVideoDecoder.cpp', +] +LOCAL_INCLUDES += [ + '..', + 'include', +] + +if CONFIG['GNU_CXX']: + CXXFLAGS += [ + '-Wno-attributes', + '-Wno-deprecated-declarations', + ] +if CONFIG['CLANG_CXX']: + CXXFLAGS += [ + '-Wno-unknown-attributes', + ] + +FINAL_LIBRARY = 'xul' |