summaryrefslogtreecommitdiffstats
path: root/dom/media/systemservices/moz.build
blob: 82a5c5e720b577bec1f024abbf3635d16cdeff61 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# -*- 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/.

if CONFIG['MOZ_WEBRTC']:
    EXPORTS += [
        'CamerasChild.h',
        'CamerasParent.h',
        'LoadManager.h',
        'LoadManagerFactory.h',
        'LoadMonitor.h',
    ]
    UNIFIED_SOURCES += [
        'CamerasChild.cpp',
        'CamerasParent.cpp',
        'LoadManager.cpp',
        'LoadManagerFactory.cpp',
        'LoadMonitor.cpp',
        'ShmemPool.cpp',
    ]
    LOCAL_INCLUDES += [
        '/media/webrtc/signaling',
        '/media/webrtc/trunk',
    ]
if CONFIG['OS_TARGET'] == 'WINNT':
    DEFINES['WEBRTC_WIN'] = True
else:
    DEFINES['WEBRTC_POSIX'] = True


if CONFIG['OS_TARGET'] == 'Android':
    EXPORTS += [
        'OpenSLESProvider.h'
    ]
    UNIFIED_SOURCES += [
        'OpenSLESProvider.cpp',
    ]

if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
  UNIFIED_SOURCES += ['OSXRunLoopSingleton.cpp']
  EXPORTS += ['OSXRunLoopSingleton.h']

if CONFIG['_MSC_VER']:
    DEFINES['__PRETTY_FUNCTION__'] = '__FUNCSIG__'

    # This is intended as a temporary workaround to enable building with VS2015.
    # media\webrtc\trunk\webrtc/base/criticalsection.h(59): warning C4312:
    # 'reinterpret_cast': conversion from 'DWORD' to 'HANDLE' of greater size
    CXXFLAGS += ['-wd4312']

EXPORTS.mozilla += ['ShmemPool.h',]

EXPORTS.mozilla.media += ['CamerasTypes.h',
                          'DeviceChangeCallback.h',
                          'MediaChild.h',
                          'MediaParent.h',
                          'MediaSystemResourceClient.h',
                          'MediaSystemResourceManager.h',
                          'MediaSystemResourceManagerChild.h',
                          'MediaSystemResourceManagerParent.h',
                          'MediaSystemResourceMessageUtils.h',
                          'MediaSystemResourceService.h',
                          'MediaSystemResourceTypes.h',
                          'MediaTaskUtils.h',
                          'MediaUtils.h',
]
UNIFIED_SOURCES += [
    'MediaChild.cpp',
    'MediaParent.cpp',
    'MediaSystemResourceClient.cpp',
    'MediaSystemResourceManager.cpp',
    'MediaSystemResourceManagerChild.cpp',
    'MediaSystemResourceManagerParent.cpp',
    'MediaSystemResourceService.cpp',
    'MediaUtils.cpp',
]
IPDL_SOURCES += [
    'PCameras.ipdl',
    'PMedia.ipdl',
    'PMediaSystemResourceManager.ipdl',
]
# /dom/base needed for nsGlobalWindow.h in MediaChild.cpp
LOCAL_INCLUDES += [
    '/dom/base',
]

include('/ipc/chromium/chromium-config.mozbuild')

FINAL_LIBRARY = 'xul'

if CONFIG['GNU_CXX']:
    CXXFLAGS += ['-Wno-error=shadow']