2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:19 +00: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-04-16 19:24:43 +00:00
|
|
|
EXPORTS += [
|
2013-11-20 21:04:33 +00:00
|
|
|
'DXVA2Manager.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
'WMF.h',
|
|
|
|
'WMFDecoder.h',
|
|
|
|
'WMFReader.h',
|
2013-10-26 02:23:37 +00:00
|
|
|
'WMFUtils.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
]
|
|
|
|
|
2013-12-16 00:00:54 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'DXVA2Manager.cpp',
|
|
|
|
'WMFByteStream.cpp',
|
|
|
|
'WMFDecoder.cpp',
|
|
|
|
'WMFReader.cpp',
|
|
|
|
'WMFSourceReaderCallback.cpp',
|
2014-02-12 09:59:05 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'WMFUtils.cpp',
|
|
|
|
]
|
|
|
|
|
2013-08-22 06:55:59 +00:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2014-07-22 23:37:51 +00:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2014-07-31 14:41:48 +00:00
|
|
|
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
DEFINES['NOMINMAX'] = True
|