2013-11-20 13:04:32 -08:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# 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/.
|
|
|
|
|
|
|
|
EXPORTS += [
|
2013-11-20 13:04:33 -08:00
|
|
|
'MP4Decoder.h',
|
|
|
|
'MP4Reader.h',
|
|
|
|
'PlatformDecoderModule.h',
|
2013-11-20 13:04:32 -08:00
|
|
|
]
|
|
|
|
|
2014-05-12 21:18:31 -07:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'BlankDecoderModule.cpp',
|
2014-05-21 19:42:39 -07:00
|
|
|
'PlatformDecoderModule.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
SOURCES += [
|
2013-11-20 13:04:33 -08:00
|
|
|
'MP4Decoder.cpp',
|
|
|
|
'MP4Reader.cpp',
|
2013-11-20 13:04:32 -08:00
|
|
|
]
|
|
|
|
|
2013-11-22 07:36:02 -08:00
|
|
|
if CONFIG['MOZ_WMF']:
|
|
|
|
EXPORTS += [
|
|
|
|
'wmf/MFTDecoder.h',
|
2014-07-09 14:25:10 -07:00
|
|
|
'wmf/WMFAudioMFTManager.h',
|
2013-11-22 07:36:02 -08:00
|
|
|
'wmf/WMFDecoderModule.h',
|
2014-02-04 17:29:31 -08:00
|
|
|
'wmf/WMFMediaDataDecoder.h',
|
2014-07-09 14:25:10 -07:00
|
|
|
'wmf/WMFVideoMFTManager.h',
|
2013-11-22 07:36:02 -08:00
|
|
|
]
|
2013-12-15 16:00:54 -08:00
|
|
|
UNIFIED_SOURCES += [
|
2013-11-22 07:36:02 -08:00
|
|
|
'wmf/MFTDecoder.cpp',
|
2014-07-09 14:25:10 -07:00
|
|
|
'wmf/WMFAudioMFTManager.cpp',
|
2013-11-22 07:36:02 -08:00
|
|
|
'wmf/WMFDecoderModule.cpp',
|
2014-02-04 17:29:31 -08:00
|
|
|
'wmf/WMFMediaDataDecoder.cpp',
|
2014-07-09 14:25:10 -07:00
|
|
|
'wmf/WMFVideoMFTManager.cpp',
|
2013-11-22 07:36:02 -08:00
|
|
|
]
|
|
|
|
|
2014-03-20 23:35:14 -07:00
|
|
|
if CONFIG['MOZ_FFMPEG']:
|
|
|
|
EXPORTS += [
|
|
|
|
'ffmpeg/FFmpegRuntimeLinker.h',
|
|
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
2014-07-02 19:43:13 -07:00
|
|
|
'ffmpeg/FFmpegLog.cpp',
|
2014-03-20 23:35:14 -07:00
|
|
|
'ffmpeg/FFmpegRuntimeLinker.cpp',
|
|
|
|
]
|
2014-07-02 19:43:13 -07:00
|
|
|
PARALLEL_DIRS += [
|
|
|
|
'ffmpeg/libav53',
|
|
|
|
'ffmpeg/libav54',
|
|
|
|
'ffmpeg/libav55',
|
|
|
|
]
|
2014-03-20 23:35:14 -07:00
|
|
|
LOCAL_INCLUDES += [
|
2014-07-02 19:43:13 -07:00
|
|
|
'ffmpeg',
|
2014-03-20 23:35:14 -07:00
|
|
|
]
|
|
|
|
|
2013-11-20 13:04:32 -08:00
|
|
|
FINAL_LIBRARY = 'gklayout'
|
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|