Bug 1627646 - Avoid creating a Port object when there are no listeners r=mixedpuppy
[gecko.git] / third_party / msgpack / moz.build
blob133ce7228e7aabc04879e93986b8d48cdc13921f
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 DEFINES['MSGPACK_DLLEXPORT'] = ''
9 LOCAL_INCLUDES += [
10     'include',
13 EXPORTS += [
14     'include/msgpack.h',
15     'include/msgpack/util.h',
18 # We allow warnings for third-party code that can be updated from upstream.
19 AllowCompilerWarnings()
21 SOURCES += [
22     'src/objectc.c',
23     'src/unpack.c',
24     'src/version.c',
25     'src/vrefbuffer.c',
26     'src/zone.c',
29 FINAL_LIBRARY = 'xul'