2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2015-05-27 21:22:29 +00:00
|
|
|
# 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/.
|
|
|
|
|
|
|
|
mfbt_src_lcppsrcs = [
|
2016-11-07 03:57:00 +00:00
|
|
|
'Assertions.cpp',
|
2015-06-04 17:44:55 +00:00
|
|
|
'ChaosMode.cpp',
|
2017-01-23 23:11:50 +00:00
|
|
|
'double-conversion/source/bignum-dtoa.cc',
|
|
|
|
'double-conversion/source/bignum.cc',
|
|
|
|
'double-conversion/source/cached-powers.cc',
|
|
|
|
'double-conversion/source/diy-fp.cc',
|
|
|
|
'double-conversion/source/double-conversion.cc',
|
|
|
|
'double-conversion/source/fast-dtoa.cc',
|
|
|
|
'double-conversion/source/fixed-dtoa.cc',
|
|
|
|
'double-conversion/source/strtod.cc',
|
2015-05-27 21:22:29 +00:00
|
|
|
'FloatingPoint.cpp',
|
|
|
|
'HashFunctions.cpp',
|
|
|
|
'JSONWriter.cpp',
|
|
|
|
'Poison.cpp',
|
|
|
|
'SHA1.cpp',
|
|
|
|
'TaggedAnonymousMemory.cpp',
|
2016-08-23 04:09:32 +00:00
|
|
|
'Unused.cpp',
|
2015-05-27 21:22:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
mfbt_src_cppsrcs = [
|
2015-05-15 00:49:20 +00:00
|
|
|
'/mfbt/%s' % s for s in mfbt_src_lcppsrcs
|
2015-05-27 21:22:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# Compression.cpp cannot be built in unified mode because it pulls in Windows system headers.
|
|
|
|
# Decimal.cpp doesn't build in unified mode with gcc.
|
|
|
|
mfbt_nonunified_src_lcppsrcs = [
|
|
|
|
'Compression.cpp',
|
|
|
|
'decimal/Decimal.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
mfbt_nonunified_src_cppsrcs = [
|
2015-05-15 00:49:20 +00:00
|
|
|
'/mfbt/%s' % s for s in mfbt_nonunified_src_lcppsrcs
|
2015-05-27 21:22:29 +00:00
|
|
|
]
|