summaryrefslogtreecommitdiff
path: root/mfbt/sources.mk
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2013-12-11 22:24:18 +0000
committer <>2014-07-24 09:30:59 +0000
commit59e2936f588aa945e8dcd6c737523c299067e9d0 (patch)
tree97e74980cc54baa19de5faa11f5a50a0121a48ea /mfbt/sources.mk
downloadmozjs24-59e2936f588aa945e8dcd6c737523c299067e9d0.tar.gz
Imported from /home/lorry/working-area/delta_mozilla_mozjs24/mozjs-24.2.0.tar.bz2.HEADmozjs-24.2.0master
Diffstat (limited to 'mfbt/sources.mk')
-rw-r--r--mfbt/sources.mk37
1 files changed, 37 insertions, 0 deletions
diff --git a/mfbt/sources.mk b/mfbt/sources.mk
new file mode 100644
index 0000000..fac20c8
--- /dev/null
+++ b/mfbt/sources.mk
@@ -0,0 +1,37 @@
+# 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/.
+
+ifndef MFBT_ROOT
+$(error Before including this file, you must define MFBT_ROOT to point to \
+the MFBT source directory)
+endif
+
+CPPSRCS += \
+ HashFunctions.cpp \
+ Poison.cpp \
+ SHA1.cpp \
+ $(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)
+
+# Imported decimal sources.
+VPATH += $(MFBT_ROOT)/decimal \
+ $(NULL)
+
+CPPSRCS += \
+ Decimal.cpp
+