summaryrefslogtreecommitdiffstats
path: root/media/webrtc/moz.build
blob: 4361273b4210d0923ab1c62999ce4d37da8611e0 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# -*- 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/.

include('/build/gyp.mozbuild')

webrtc_non_unified_sources = [
    'trunk/webrtc/common_audio/vad/vad_core.c',                                  # Because of name clash in the kInitCheck variable
    'trunk/webrtc/common_audio/vad/webrtc_vad.c',                                # Because of name clash in the kInitCheck variable
    'trunk/webrtc/modules/audio_coding/codecs/g722/g722_decode.c',               # Because of name clash in the saturate function
    'trunk/webrtc/modules/audio_coding/codecs/g722/g722_encode.c',               # Because of name clash in the saturate function
    'trunk/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_filter.c',   # Because of name clash in the kDampFilter variable
    'trunk/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_filter_c.c', # Because of name clash in the kDampFilter variable
    'trunk/webrtc/modules/audio_coding/main/acm2/codec_manager.cc',              # Because of duplicate IsCodecRED/etc
    'trunk/webrtc/modules/audio_coding/neteq/audio_vector.cc',                   # Because of explicit template specializations
    'trunk/webrtc/modules/audio_device/android/audio_record_jni.cc',             # Becuse of commonly named module static vars
    'trunk/webrtc/modules/audio_device/android/audio_track_jni.cc',             # Becuse of commonly named module static vars
    'trunk/webrtc/modules/audio_device/linux/audio_device_pulse_linux.cc',       # Because of LATE()
    'trunk/webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.cc',# Because of LATE()
    'trunk/webrtc/modules/audio_device/opensl/opensles_input.cc',                # Because of name clash in the kOption variable
    'trunk/webrtc/modules/audio_device/opensl/opensles_output.cc',               # Because of name clash in the kOption variable
    'trunk/webrtc/modules/audio_device/opensl/single_rw_fifo.cc',                # Because of name clash with #define FF
    'trunk/webrtc/modules/audio_device/win/audio_device_core_win.cc',            # Because of ordering assumptions in strsafe.h
    'trunk/webrtc/modules/audio_processing/aec/aec_core.c',                      # Because of name clash in the ComfortNoise function
    'trunk/webrtc/modules/audio_processing/aecm/aecm_core.c',                    # Because of name clash in the ComfortNoise function
    'trunk/webrtc/modules/audio_processing/aecm/echo_control_mobile.c',          # Because of name clash in the kInitCheck variable
    'trunk/webrtc/modules/audio_processing/agc/histogram.cc',                    # Because of duplicate definition of static consts with pitch_based_vad.cc
    'trunk/webrtc/modules/audio_processing/agc/legacy/analog_agc.c',             # Because of name clash in the kInitCheck variable
    'trunk/webrtc/modules/audio_processing/beamformer/covariance_matrix_generator.cc', # Because of needing to define _USE_MATH_DEFINES before including <cmath>
    'trunk/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.cc',  # Because of needing to define _USE_MATH_DEFINES before including <cmath>
    'trunk/webrtc/modules/audio_processing/echo_cancellation_impl.cc',           # Because of name clash in the MapError function
    'trunk/webrtc/modules/audio_processing/echo_control_mobile_impl.cc',         # Because of name clash in the MapError function
    'trunk/webrtc/modules/audio_processing/gain_control_impl.cc',                # Because of name clash in the Handle typedef
    'trunk/webrtc/modules/audio_processing/high_pass_filter_impl.cc',            # Because of name clash in the Handle typedef
    'trunk/webrtc/modules/audio_processing/noise_suppression_impl.cc',           # Because of name clash in the Handle typedef
    'trunk/webrtc/modules/remote_bitrate_estimator/mimd_rate_control.cc',        # Because of duplicate definitions of static consts against aimd_rate_control.cc
    'trunk/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc', # Because of duplicate definitions of static consts against remote_bitrate_estimator_abs_send_time.cc
    'trunk/webrtc/modules/video_capture/windows/device_info_ds.cc',              # Because of the MEDIASUBTYPE_HDYC variable
    'trunk/webrtc/modules/video_capture/windows/help_functions_ds.cc',           # Because of initguid.h
    'trunk/webrtc/modules/video_capture/windows/sink_filter_ds.cc',              # Because of the MEDIASUBTYPE_HDYC variable and initguid.h
    'trunk/webrtc/video_engine/overuse_frame_detector.cc',                       # Because of name clash with call_stats.cc on kWeightFactor
]

GYP_DIRS += ['trunk']

GYP_DIRS['trunk'].input = 'trunk/peerconnection.gyp'
GYP_DIRS['trunk'].variables = gyp_vars
# We allow warnings for third-party code that can be updated from upstream.
GYP_DIRS['trunk'].sandbox_vars['ALLOW_COMPILER_WARNINGS'] = True
GYP_DIRS['trunk'].sandbox_vars['FINAL_LIBRARY'] = 'webrtc'
GYP_DIRS['trunk'].non_unified_sources += webrtc_non_unified_sources

if CONFIG['MOZ_WEBRTC_SIGNALING']:
    GYP_DIRS += ['signaling']
    GYP_DIRS['signaling'].input = 'signaling/signaling.gyp'
    GYP_DIRS['signaling'].variables = gyp_vars.copy()
    GYP_DIRS['signaling'].variables.update(
        build_for_test=0,
        build_for_standalone=0
    )
    GYP_DIRS['signaling'].sandbox_vars['FINAL_LIBRARY'] = 'xul'
    # Excluded for various symbol conflicts
    signaling_non_unified_sources = [
        'signaling/src/common/browser_logging/CSFLog.cpp',
        'signaling/src/jsep/JsepSessionImpl.cpp',
        'signaling/src/media-conduit/AudioConduit.cpp',
        'signaling/src/media-conduit/CodecStatistics.cpp',
        'signaling/src/media-conduit/MediaCodecVideoCodec.cpp',
        'signaling/src/media-conduit/VideoConduit.cpp',
        'signaling/src/media-conduit/WebrtcMediaCodecVP8VideoCodec.cpp',
        'signaling/src/mediapipeline/MediaPipeline.cpp',
        'signaling/src/mediapipeline/MediaPipelineFilter.cpp',
        'signaling/src/mediapipeline/SrtpFlow.cpp',
        'signaling/src/peerconnection/MediaPipelineFactory.cpp',
        'signaling/src/peerconnection/MediaStreamList.cpp',
        'signaling/src/peerconnection/PeerConnectionCtx.cpp',
        'signaling/src/peerconnection/PeerConnectionImpl.cpp',
        'signaling/src/peerconnection/PeerConnectionMedia.cpp',
        'signaling/src/peerconnection/WebrtcGlobalInformation.cpp',
        'signaling/src/sdp/sipcc/cpr_string.c',
        'signaling/src/sdp/sipcc/sdp_access.c',
        'signaling/src/sdp/sipcc/sdp_attr.c',
        'signaling/src/sdp/sipcc/sdp_attr_access.c',
        'signaling/src/sdp/sipcc/sdp_base64.c',
        'signaling/src/sdp/sipcc/sdp_config.c',
        'signaling/src/sdp/sipcc/sdp_main.c',
        'signaling/src/sdp/sipcc/sdp_services_unix.c',
        'signaling/src/sdp/sipcc/sdp_token.c',
        'signaling/src/sdp/sipcc/sdp_utils.c',
    ]

    GYP_DIRS['signaling'].sandbox_vars['ALLOW_COMPILER_WARNINGS'] = True
    GYP_DIRS['signaling'].non_unified_sources += signaling_non_unified_sources

    if CONFIG['_MSC_VER']:
        # Avoid warnings from third-party code that we can not modify.
        if CONFIG['CLANG_CL']:
            CXXFLAGS += ['-Wno-invalid-source-encoding']
        else:
            CXXFLAGS += ['-validate-charset-']

GYP_DIRS += ['trunk/testing']
GYP_DIRS['trunk/testing'].input = 'trunk/testing/gtest.gyp'
GYP_DIRS['trunk/testing'].variables = gyp_vars
# We allow warnings for third-party code that can be updated from upstream.
GYP_DIRS['trunk/testing'].sandbox_vars['ALLOW_COMPILER_WARNINGS'] = True
GYP_DIRS['trunk/testing'].non_unified_sources += webrtc_non_unified_sources

if CONFIG['MOZ_WEBRTC_SIGNALING']:
    GYP_DIRS += ['signalingtest']
    GYP_DIRS['signalingtest'].input = 'signaling/signaling.gyp'
    GYP_DIRS['signalingtest'].variables = gyp_vars.copy()
    GYP_DIRS['signalingtest'].variables.update(
        build_for_test=1,
        moz_webrtc_mediacodec=0,
        build_for_standalone=0
    )
    GYP_DIRS['signalingtest'].sandbox_vars['ALLOW_COMPILER_WARNINGS'] = True
    GYP_DIRS['signalingtest'].non_unified_sources += signaling_non_unified_sources