summaryrefslogtreecommitdiffstats
path: root/media/mtransport/third_party/moz.build
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /media/mtransport/third_party/moz.build
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/mtransport/third_party/moz.build')
-rw-r--r--media/mtransport/third_party/moz.build76
1 files changed, 76 insertions, 0 deletions
diff --git a/media/mtransport/third_party/moz.build b/media/mtransport/third_party/moz.build
new file mode 100644
index 000000000..4d4013819
--- /dev/null
+++ b/media/mtransport/third_party/moz.build
@@ -0,0 +1,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