2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:19 +04: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 23:24:43 +04:00
|
|
|
EXPORTS += [
|
2015-07-02 15:29:36 +03:00
|
|
|
'NesteggPacketHolder.h',
|
2014-08-19 09:13:27 +04:00
|
|
|
'WebMBufferedParser.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'WebMDecoder.h',
|
2015-06-18 16:52:09 +03:00
|
|
|
'WebMDemuxer.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
2013-11-18 06:31:46 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'WebMBufferedParser.cpp',
|
|
|
|
'WebMDecoder.cpp',
|
2015-06-18 16:52:09 +03:00
|
|
|
'WebMDemuxer.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2014-01-15 10:21:14 +04:00
|
|
|
if CONFIG['MOZ_WEBM_ENCODER']:
|
|
|
|
EXPORTS += ['WebMWriter.h']
|
|
|
|
UNIFIED_SOURCES += ['EbmlComposer.cpp',
|
|
|
|
'WebMWriter.cpp',
|
|
|
|
]
|
|
|
|
|
2014-07-24 19:55:33 +04:00
|
|
|
CXXFLAGS += CONFIG['MOZ_LIBVPX_CFLAGS']
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2016-05-11 10:00:01 +03:00
|
|
|
|
2017-12-08 00:09:15 +03:00
|
|
|
if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
|
2016-05-11 10:00:01 +03:00
|
|
|
CXXFLAGS += ['-Wno-error=shadow']
|