59c5a7d5c7
New fast_float header-only inner dependency. CppunitTest_vcl_pdfexport's testTdf154549 and CppunitTest_vcl_pdfexport2's testTdf71956 started to fail after this. Assuming that the code covered by these tests still works (since this commit doesn't change vcl/ or sw/ code), just update those tests to match the new PDFium API call results for now. Change-Id: I07b2f97fbbc9bd609e2f94593474393adcb5a839 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174814 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
18 lines
871 B
Text
18 lines
871 B
Text
External package containing pdfium.
|
|
|
|
"Insert -> Picture -> From File..." uses this library when a PDF file is
|
|
selected.
|
|
|
|
https://pdfium.googlesource.com/pdfium/
|
|
|
|
How to update the tarball:
|
|
|
|
version=$(git for-each-ref|grep chromium/|tail -n 1|sed 's|.*/||')
|
|
git checkout --track origin/chromium/$version
|
|
gclient sync
|
|
git archive --prefix=pdfium/ --format=tar origin/chromium/${version} > pdfium-${version}.tar
|
|
(cd ..; tar --append --file pdfium/pdfium-${version}.tar pdfium/third_party/freetype/src/include/ pdfium/third_party/freetype/src/src/)
|
|
(cd ..; tar --append --file pdfium/pdfium-${version}.tar pdfium/third_party/abseil-cpp/absl/)
|
|
(cd ..; tar --append --file pdfium/pdfium-${version}.tar pdfium/build/build_config.h pdfium/build/buildflag.h)
|
|
(cd ..; tar --append --file pdfium/pdfium-${version}.tar pdfium/third_party/fast_float/src/)
|
|
bzip2 pdfium-${version}.tar
|