summaryrefslogtreecommitdiffstats
path: root/media/webrtc/signaling/gtest/moz.build
blob: d975e8142247c02eddfe067b9f4168f17d8896b6 (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
# -*- 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("/dom/media/webrtc/third_party_build/webrtc.mozbuild")

if CONFIG["OS_TARGET"] == "WINNT":
    DEFINES["SIP_OS_WINDOWS"] = True
elif CONFIG["OS_TARGET"] == "Darwin":
    DEFINES["SIP_OS_OSX"] = True
else:
    DEFINES["SIP_OS_LINUX"] = True

# TODO: bug 1172551 - get these tests working on iOS
# Also, these lengthy tests are prone to OOM on Windows ASan.
if (
    CONFIG["MOZ_WIDGET_TOOLKIT"] != "uikit"
    and CONFIG["OS_TARGET"] != "Android"
    and not (CONFIG["OS_TARGET"] == "WINNT" and CONFIG["MOZ_ASAN"])
):
    LOCAL_INCLUDES += [
        "!/ipc/ipdl/_ipdlheaders",
        "/dom/media",
        "/dom/media/gtest",
        "/dom/media/systemservices",
        "/dom/media/webrtc",
        "/dom/media/webrtc/common",
        "/dom/media/webrtc/common/time_profiling",
        "/dom/media/webrtc/jsapi",
        "/dom/media/webrtc/libwebrtcglue",
        "/dom/media/webrtc/transport",
        "/dom/media/webrtc/transport/test",
        "/dom/media/webrtc/transport/third_party/nrappkit/src/registry",
        "/dom/media/webrtc/transportbridge",
        "/ipc/chromium/src",
        "/media/webrtc/",
        "/third_party/libsrtp/src/include",
        "/third_party/libwebrtc",
        "/third_party/libwebrtc/third_party/abseil-cpp",
        "/third_party/sipcc",
    ]

    SOURCES += [
        "audioconduit_unittests.cpp",
        "jsep_session_unittest.cpp",
        "jsep_track_unittest.cpp",
        "mediapipeline_unittest.cpp",
        "MockCall.cpp",
        "sdp_unittests.cpp",
        "videoconduit_unittests.cpp",
    ]

    FINAL_LIBRARY = "xul-gtest"