summaryrefslogtreecommitdiffstats
path: root/dom/media/directshow/moz.build
blob: 8a9b76200011c8f85cb729e113b9a99b69e19007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- Mode: python; 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 += [
    'AudioSinkFilter.h',
    'AudioSinkInputPin.h',
    'DirectShowDecoder.h',
    'DirectShowReader.h',
    'DirectShowUtils.h',
]

UNIFIED_SOURCES += [
    'DirectShowDecoder.cpp',
    'DirectShowUtils.cpp',
    'SourceFilter.cpp',
]

SOURCES += [
    'AudioSinkFilter.cpp',
    'AudioSinkInputPin.cpp',
    'DirectShowReader.cpp',
    'SampleSink.cpp',
]

# If WebRTC isn't being built, we need to compile the DirectShow base classes so that
# they're available at link time.
if not CONFIG['MOZ_WEBRTC']:
    SOURCES += [
        '/media/webrtc/trunk/webrtc/modules/video_capture/windows/BaseFilter.cpp',
        '/media/webrtc/trunk/webrtc/modules/video_capture/windows/BaseInputPin.cpp',
        '/media/webrtc/trunk/webrtc/modules/video_capture/windows/BasePin.cpp',
        '/media/webrtc/trunk/webrtc/modules/video_capture/windows/MediaType.cpp',
    ]

FINAL_LIBRARY = 'xul'
LOCAL_INCLUDES += [
    '/media/webrtc/trunk/webrtc/modules/video_capture/windows',
]