mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
83 lines
1.8 KiB
Python
83 lines
1.8 KiB
Python
# -*- 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/.
|
|
|
|
PARALLEL_DIRS += ['webaudio']
|
|
|
|
if CONFIG['MOZ_RAW']:
|
|
PARALLEL_DIRS += ['raw']
|
|
|
|
if CONFIG['MOZ_OGG']:
|
|
PARALLEL_DIRS += ['ogg']
|
|
|
|
if CONFIG['MOZ_WAVE']:
|
|
PARALLEL_DIRS += ['wave']
|
|
|
|
if CONFIG['MOZ_WEBM']:
|
|
PARALLEL_DIRS += ['webm']
|
|
|
|
if CONFIG['MOZ_GSTREAMER']:
|
|
PARALLEL_DIRS += ['gstreamer']
|
|
|
|
if CONFIG['MOZ_DASH']:
|
|
PARALLEL_DIRS += ['dash']
|
|
|
|
if CONFIG['MOZ_MEDIA_PLUGINS']:
|
|
PARALLEL_DIRS += ['plugins']
|
|
|
|
if CONFIG['MOZ_WMF']:
|
|
PARALLEL_DIRS += ['wmf']
|
|
|
|
PARALLEL_DIRS += ['webrtc']
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
PARALLEL_DIRS += ['omx']
|
|
|
|
if CONFIG['MOZ_WEBSPEECH']:
|
|
PARALLEL_DIRS += ['webspeech']
|
|
|
|
TEST_DIRS += ['test']
|
|
|
|
MODULE = 'content'
|
|
|
|
EXPORTS += [
|
|
'AbstractMediaDecoder.h',
|
|
'AudioAvailableEventManager.h',
|
|
'AudioChannelFormat.h',
|
|
'AudioEventTimeline.h',
|
|
'AudioNodeEngine.h',
|
|
'AudioNodeStream.h',
|
|
'AudioSampleFormat.h',
|
|
'AudioSegment.h',
|
|
'AudioStream.h',
|
|
'BufferMediaResource.h',
|
|
'DOMMediaStream.h',
|
|
'DecoderTraits.h',
|
|
'FileBlockCache.h',
|
|
'MediaCache.h',
|
|
'MediaDecoder.h',
|
|
'MediaDecoderOwner.h',
|
|
'MediaDecoderReader.h',
|
|
'MediaDecoderStateMachine.h',
|
|
'MediaMetadataManager.h',
|
|
'MediaResource.h',
|
|
'MediaSegment.h',
|
|
'MediaStreamGraph.h',
|
|
'SharedBuffer.h',
|
|
'StreamBuffer.h',
|
|
'TimeVarying.h',
|
|
'VideoFrameContainer.h',
|
|
'VideoSegment.h',
|
|
'VideoUtils.h',
|
|
'VorbisUtils.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'AudioStreamTrack.h',
|
|
'MediaStreamTrack.h',
|
|
'VideoStreamTrack.h',
|
|
]
|
|
|