2012-05-21 15:12:37 +04:00
|
|
|
# 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/.
|
|
|
|
|
2012-04-09 20:05:11 +04:00
|
|
|
ifndef MFBT_ROOT
|
|
|
|
$(error Before including this file, you must define MFBT_ROOT to point to \
|
|
|
|
the MFBT source directory)
|
|
|
|
endif
|
|
|
|
|
2012-03-05 19:22:28 +04:00
|
|
|
CPPSRCS += \
|
2012-03-13 02:53:18 +04:00
|
|
|
HashFunctions.cpp \
|
2013-05-07 22:48:59 +04:00
|
|
|
Poison.cpp \
|
2012-08-20 23:01:55 +04:00
|
|
|
SHA1.cpp \
|
2012-04-09 20:05:11 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# Imported double-conversion sources.
|
|
|
|
VPATH += $(MFBT_ROOT)/double-conversion \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
CPPSRCS += \
|
|
|
|
bignum-dtoa.cc \
|
|
|
|
bignum.cc \
|
|
|
|
cached-powers.cc \
|
|
|
|
diy-fp.cc \
|
|
|
|
double-conversion.cc \
|
|
|
|
fast-dtoa.cc \
|
|
|
|
fixed-dtoa.cc \
|
|
|
|
strtod.cc \
|
|
|
|
$(NULL)
|
2013-05-06 03:23:17 +04:00
|
|
|
|
|
|
|
# Imported decimal sources.
|
|
|
|
VPATH += $(MFBT_ROOT)/decimal \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
CPPSRCS += \
|
|
|
|
Decimal.cpp
|
|
|
|
|