summaryrefslogtreecommitdiffstats
path: root/media/mtransport/third_party/moz.build
blob: 4d40138191ee0e7927a15134aa6be4a6706269e9 (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
# -*- 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')

GYP_DIRS += [
    'nICEr',
    'nrappkit',
]

# These files cannot be built in unified mode because of name clashes on RCSSTRING
nICEr_non_unified_sources = [
    'nICEr/src/crypto/nr_crypto.c',
    'nICEr/src/ice/ice_candidate.c',
    'nICEr/src/ice/ice_candidate_pair.c',
    'nICEr/src/ice/ice_component.c',
    'nICEr/src/ice/ice_ctx.c',
    'nICEr/src/ice/ice_media_stream.c',
    'nICEr/src/ice/ice_parser.c',
    'nICEr/src/ice/ice_peer_ctx.c',
    'nICEr/src/ice/ice_socket.c',
    'nICEr/src/net/nr_socket.c',
    'nICEr/src/net/transport_addr.c',
    'nICEr/src/net/transport_addr_reg.c',
    'nICEr/src/stun/addrs.c',
    'nICEr/src/stun/nr_socket_turn.c',
    'nICEr/src/stun/stun_build.c',
    'nICEr/src/stun/stun_client_ctx.c',
    'nICEr/src/stun/stun_codec.c',
    'nICEr/src/stun/stun_hint.c',
    'nICEr/src/stun/stun_msg.c',
    'nICEr/src/stun/stun_proc.c',
    'nICEr/src/stun/stun_server_ctx.c',
    'nICEr/src/stun/stun_util.c',
    'nICEr/src/stun/turn_client_ctx.c',
    'nICEr/src/util/cb_args.c',
    'nICEr/src/util/ice_util.c',
]

# This file cannot be built in unified mode because it breaks Linux ASAN builds
nICEr_non_unified_sources += [
    'nICEr/src/util/mbslen.c',
]
nrappkit_non_unified_sources = [
    'nrappkit/src/log/r_log.c',
    'nrappkit/src/util/byteorder.c',
    'nrappkit/src/util/hex.c',
    'nrappkit/src/util/libekr/debug.c',
    'nrappkit/src/util/libekr/r_assoc.c',
    'nrappkit/src/util/libekr/r_crc32.c',
    'nrappkit/src/util/libekr/r_data.c',
    'nrappkit/src/util/libekr/r_errors.c',
    'nrappkit/src/util/libekr/r_list.c',
    'nrappkit/src/util/libekr/r_memory.c',
    'nrappkit/src/util/libekr/r_replace.c',
    'nrappkit/src/util/libekr/r_time.c',
    'nrappkit/src/util/p_buf.c',
    'nrappkit/src/util/util.c',
]

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

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