12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
- # 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
|