summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorBo Xu <bo_xu@foxitsoftware.com>2014-12-19 14:29:17 -0800
committerBo Xu <bo_xu@foxitsoftware.com>2014-12-19 14:29:17 -0800
commite4fc5ced45c8fcfbe2487ec64eab036bc7d57602 (patch)
tree1889eac2d57ff76d5f0fef689a3cbdfa37a0b3f4 /BUILD.gn
parent5a35129bce7ca777e155e5498e8d4792fa6a4819 (diff)
downloadpdfium-e4fc5ced45c8fcfbe2487ec64eab036bc7d57602.tar.xz
Update freetype to 2.5.4.
Put freetype into third_party directory, cleaning up header files. Previously freetype header files are in core/src/fxge/freetype and core/include/thirdparties. There were also multiple fx_freetype.h. This patch removes the additional Foxit wrapper to make further update easier. Notice, for original freetype source code, the following files are modified and need to be updated accordingly in future update: third_party/freetype/include/config/ftmodule.h third_party/freetype/include/config/ftoption.h BUG=407341 R=thestig@chromium.org Review URL: https://codereview.chromium.org/815103002
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn66
1 files changed, 8 insertions, 58 deletions
diff --git a/BUILD.gn b/BUILD.gn
index ce3bdedee2..2076afb87a 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -6,8 +6,11 @@ pdf_use_skia = false
config("pdfium_config") {
cflags = []
+ include_dirs = [
+ "third_party/freetype/include"
+ ]
defines = [
- "_FXFT_VERSION_=2501",
+ "FT2_BUILD_LIBRARY",
"_FPDFSDK_LIB",
"_NO_GDIPLUS_", # workaround text rendering issues on Windows
"OPJ_STATIC",
@@ -86,8 +89,9 @@ static_library("pdfium") {
configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
deps = [
- ":safemath",
- ":bigint",
+ "third_party:bigint",
+ "third_party:freetype",
+ "third_party:safemath",
":fdrm",
":formfiller",
":fpdfapi",
@@ -114,33 +118,6 @@ static_library("pdfium") {
# Targets below this are only visible within this file.
visibility = [ ":*" ]
-component("safemath") {
- sources = [
- "third_party/logging.h",
- "third_party/macros.h",
- "third_party/template_util.h",
- "third_party/numerics/safe_conversions.h",
- "third_party/numerics/safe_conversions_impl.h",
- "third_party/numerics/safe_math.h",
- "third_party/numerics/safe_math_impl.h",
- ]
-}
-
-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",
@@ -598,34 +575,7 @@ static_library("fxge") {
"core/src/fxge/fontdata/chromefontdata/FoxitSerifItalic.c",
"core/src/fxge/fontdata/chromefontdata/FoxitSerifMM.c",
"core/src/fxge/fontdata/chromefontdata/FoxitSymbol.c",
- "core/src/fxge/fx_freetype/include/fxft_cffobjs.h",
- "core/src/fxge/fx_freetype/include/fxft_cfftypes.h",
- "core/src/fxge/fx_freetype/include/fxft_freetype.h",
- "core/src/fxge/fx_freetype/include/fxft_ft2build.h",
- "core/src/fxge/fx_freetype/include/fxft_ftmm.h",
- "core/src/fxge/fx_freetype/include/fxft_ftobjs.h",
- "core/src/fxge/fx_freetype/include/fxft_ftotval.h",
- "core/src/fxge/fx_freetype/include/fxft_ftoutln.h",
- "core/src/fxge/fx_freetype/include/fxft_ftstream.h",
- "core/src/fxge/fx_freetype/include/fxft_tttables.h",
- "core/src/fxge/fx_freetype/include/fxft_tttypes.h",
- "core/src/fxge/fx_freetype/src/fxft_cff.c",
- "core/src/fxge/fx_freetype/src/fxft_ftbase.c",
- "core/src/fxge/fx_freetype/src/fxft_ftbitmap.c",
- "core/src/fxge/fx_freetype/src/fxft_ftglyph.c",
- "core/src/fxge/fx_freetype/src/fxft_ftinit.c",
- "core/src/fxge/fx_freetype/src/fxft_ftlcdfil.c",
- "core/src/fxge/fx_freetype/src/fxft_ftmm.c",
- "core/src/fxge/fx_freetype/src/fxft_ftsystem.c",
- "core/src/fxge/fx_freetype/src/fxft_psaux.c",
- "core/src/fxge/fx_freetype/src/fxft_pshinter.c",
- "core/src/fxge/fx_freetype/src/fxft_psmodule.c",
- "core/src/fxge/fx_freetype/src/fxft_raster.c",
- "core/src/fxge/fx_freetype/src/fxft_sfnt.c",
- "core/src/fxge/fx_freetype/src/fxft_smooth.c",
- "core/src/fxge/fx_freetype/src/fxft_truetype.c",
- "core/src/fxge/fx_freetype/src/fxft_type1.c",
- "core/src/fxge/fx_freetype/src/fxft_type1cid.c",
+ "core/src/fxge/freetype/fx_freetype.c",
"core/src/fxge/ge/fx_ge.cpp",
"core/src/fxge/ge/fx_ge_device.cpp",
"core/src/fxge/ge/fx_ge_font.cpp",