diff options
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -90,6 +90,7 @@ static_library("pdfium") { deps = [ ":safemath", + ":bigint", ":fdrm", ":formfiller", ":fpdfapi", @@ -128,6 +129,21 @@ component("safemath") { ] } +static_library("bigint") { + 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", + ] +} + static_library("fdrm") { sources = [ "core/include/fdrm/fx_crypt.h", |