diff options
author | Bo Xu <bo_xu@foxitsoftware.com> | 2014-12-02 13:06:22 -0800 |
---|---|---|
committer | Bo Xu <bo_xu@foxitsoftware.com> | 2014-12-02 16:57:19 -0800 |
commit | 8ad0040bbb42d7738965eea99e029145cce0b24e (patch) | |
tree | 2ebd20da7529d0f0c58618fbd2883fdb1ae71142 /pdfium.gyp | |
parent | 610b751e894371a2933d7ba17efeee325381465d (diff) | |
download | pdfium-8ad0040bbb42d7738965eea99e029145cce0b24e.tar.xz |
Merge "Add big integer library""
This patch merges the 3 commits in master branch into one
Diffstat (limited to 'pdfium.gyp')
-rw-r--r-- | pdfium.gyp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pdfium.gyp b/pdfium.gyp index 8f0ff893a1..68bb4b2905 100644 --- a/pdfium.gyp +++ b/pdfium.gyp @@ -36,6 +36,7 @@ 'type': 'static_library', 'dependencies': [ 'safemath', + 'bigint', 'fdrm', 'fpdfdoc', 'fpdfapi', @@ -138,6 +139,22 @@ ], }, { + 'target_name': 'bigint', + 'type': 'static_library', + 'sources': [ + 'third_party/bigint/BigInteger.hh', + 'third_party/bigint/BigIntegerLibrary.hh', + 'third_party/bigint/BigIntegerUtils.hh', + 'third_party/bigint/BigUnsigned.hh', + 'third_party/bigint/NumberlikeArray.hh', + 'third_party/bigint/BigUnsignedInABase.hh', + 'third_party/bigint/BigInteger.cc', + 'third_party/bigint/BigIntegerUtils.cc', + 'third_party/bigint/BigUnsigned.cc', + 'third_party/bigint/BigUnsignedInABase.cc', + ], + }, + { 'target_name': 'fdrm', 'type': 'static_library', 'ldflags': [ '-L<(PRODUCT_DIR)',], |