pdf_use_skia = false
+declare_args() {
+ # On Android there's no system FreeType. On Windows and Mac, only a few
+ # methods are used from it.
+ pdfium_bundle_freetype = !is_linux
+}
+
config("pdfium_config") {
cflags = []
- include_dirs = [
- "third_party/freetype/include"
- ]
+ include_dirs = [ "third_party/freetype/include" ]
defines = [
- "FT2_BUILD_LIBRARY",
"_FPDFSDK_LIB",
"_NO_GDIPLUS_", # workaround text rendering issues on Windows
"OPJ_STATIC",
+ "V8_DEPRECATION_WARNINGS",
]
if (pdf_use_skia) {
}
if (is_linux) {
- if (cpu_arch == "x64") {
+ if (current_cpu == "x64") {
defines += [ "_FX_CPU_=_FX_X64_" ]
cflags += [ "-fPIC" ]
- } else if (cpu_arch == "x86") {
+ } else if (current_cpu == "x86") {
defines += [ "_FX_CPU_=_FX_X86_" ]
}
}
static_library("pdfium") {
sources = [
- "fpdfsdk/include/fpdfdoc.h",
- "fpdfsdk/include/fpdfedit.h",
- "fpdfsdk/include/fpdfformfill.h",
- "fpdfsdk/include/fpdftext.h",
- "fpdfsdk/include/fpdfview.h",
- "fpdfsdk/include/fpdf_dataavail.h",
- "fpdfsdk/include/fpdf_flatten.h",
- "fpdfsdk/include/fpdf_progressive.h",
- "fpdfsdk/include/fpdf_searchex.h",
- "fpdfsdk/include/fpdf_sysfontinfo.h",
- "fpdfsdk/include/fpdf_ext.h",
- "fpdfsdk/include/fpdf_sysfontinfo.h",
"fpdfsdk/include/fsdk_actionhandler.h",
"fpdfsdk/include/fsdk_annothandler.h",
"fpdfsdk/include/fsdk_baseannot.h",
"fpdfsdk/include/fsdk_baseform.h",
+ "fpdfsdk/src/fpdf_dataavail.cpp",
+ "fpdfsdk/src/fpdf_ext.cpp",
+ "fpdfsdk/src/fpdf_flatten.cpp",
+ "fpdfsdk/src/fpdf_progressive.cpp",
+ "fpdfsdk/src/fpdf_searchex.cpp",
+ "fpdfsdk/src/fpdf_sysfontinfo.cpp",
+ "fpdfsdk/src/fpdf_transformpage.cpp",
"fpdfsdk/src/fpdfdoc.cpp",
"fpdfsdk/src/fpdfeditimg.cpp",
"fpdfsdk/src/fpdfeditpage.cpp",
"fpdfsdk/src/fpdfformfill.cpp",
"fpdfsdk/src/fpdfppo.cpp",
"fpdfsdk/src/fpdfsave.cpp",
+ "fpdfsdk/src/fpdfsdkdll.rc",
"fpdfsdk/src/fpdftext.cpp",
"fpdfsdk/src/fpdfview.cpp",
- "fpdfsdk/src/fpdf_dataavail.cpp",
- "fpdfsdk/src/fpdf_ext.cpp",
- "fpdfsdk/src/fpdf_flatten.cpp",
- "fpdfsdk/src/fpdf_progressive.cpp",
- "fpdfsdk/src/fpdf_searchex.cpp",
- "fpdfsdk/src/fpdf_sysfontinfo.cpp",
"fpdfsdk/src/fsdk_actionhandler.cpp",
"fpdfsdk/src/fsdk_annothandler.cpp",
"fpdfsdk/src/fsdk_baseannot.cpp",
"fpdfsdk/src/fsdk_baseform.cpp",
"fpdfsdk/src/fsdk_mgr.cpp",
"fpdfsdk/src/fsdk_rendercontext.cpp",
- "fpdfsdk/src/fpdfsdkdll.rc",
"fpdfsdk/src/resource.h",
- "fpdfsdk/include/fpdf_transformpage.h",
- "fpdfsdk/src/fpdf_transformpage.cpp",
+ "public/fpdf_dataavail.h",
+ "public/fpdf_doc.h",
+ "public/fpdf_edit.h",
+ "public/fpdf_ext.h",
+ "public/fpdf_flatten.h",
+ "public/fpdf_formfill.h",
+ "public/fpdf_fwlevent.h",
+ "public/fpdf_ppo.h",
+ "public/fpdf_progressive.h",
+ "public/fpdf_save.h",
+ "public/fpdf_searchex.h",
+ "public/fpdf_sysfontinfo.h",
+ "public/fpdf_text.h",
+ "public/fpdf_transformpage.h",
+ "public/fpdfview.h",
]
libs = []
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
deps = [
"third_party:bigint",
- "third_party:freetype",
- "third_party:safemath",
+ "third_party:pdfium_base",
":fdrm",
":formfiller",
":fpdfapi",
]
if (is_win) {
- libs += [ "advapi32.lib", "gdi32.lib", "user32.lib" ]
+ libs += [
+ "advapi32.lib",
+ "gdi32.lib",
+ "user32.lib",
+ ]
}
if (is_mac) {
- libs += [ "AppKit.framework", "CoreFoundation.framework" ]
+ libs += [
+ "AppKit.framework",
+ "CoreFoundation.framework",
+ ]
+ }
+
+ if (pdfium_bundle_freetype) {
+ deps += [ "third_party:freetype" ]
+ } else {
+ libs += [ "freetype" ]
}
}
-# Targets below this are only visible within this file.
-visibility = [ ":*" ]
+# Targets below this are only visible within this file (and to the
+# top-level gn_visibility target used to help gn_all build everything).
+visibility = [
+ ":*",
+ "//:gn_visibility",
+]
static_library("fdrm") {
sources = [
"core/src/fdrm/crypto/fx_crypt_sha.cpp",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}
static_library("fpdfdoc") {
"core/src/fpdfdoc/doc_ocg.cpp",
"core/src/fpdfdoc/doc_tagged.cpp",
"core/src/fpdfdoc/doc_utils.cpp",
+ "core/src/fpdfdoc/doc_utils.h",
"core/src/fpdfdoc/doc_viewerPreferences.cpp",
"core/src/fpdfdoc/doc_vt.cpp",
"core/src/fpdfdoc/doc_vtmodule.cpp",
"core/src/fpdfdoc/tagged_int.h",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}
-
static_library("fpdfapi") {
sources = [
- "core/include/fpdfapi/fpdfapi.h",
"core/include/fpdfapi/fpdf_module.h",
"core/include/fpdfapi/fpdf_objects.h",
"core/include/fpdfapi/fpdf_page.h",
"core/include/fpdfapi/fpdf_render.h",
"core/include/fpdfapi/fpdf_resource.h",
"core/include/fpdfapi/fpdf_serial.h",
+ "core/include/fpdfapi/fpdfapi.h",
"core/src/fpdfapi/fpdf_basic_module.cpp",
- "core/src/fpdfapi/fpdf_cmaps/cmap_int.h",
"core/src/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp",
"core/src/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp",
"core/src/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp",
- "core/src/fpdfapi/fpdf_cmaps/CNS1/cmaps_cns1.cpp",
"core/src/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp",
"core/src/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp",
"core/src/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp",
"core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-H_3.cpp",
"core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-V_3.cpp",
"core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UTF16-H_0.cpp",
- "core/src/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp",
+ "core/src/fpdfapi/fpdf_cmaps/CNS1/cmaps_cns1.cpp",
"core/src/fpdfapi/fpdf_cmaps/GB1/Adobe-GB1-UCS2_5.cpp",
- "core/src/fpdfapi/fpdf_cmaps/GB1/cmaps_gb1.cpp",
"core/src/fpdfapi/fpdf_cmaps/GB1/GB-EUC-H_0.cpp",
"core/src/fpdfapi/fpdf_cmaps/GB1/GB-EUC-V_0.cpp",
"core/src/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-H_2.cpp",
"core/src/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-V_0.cpp",
"core/src/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-H_4.cpp",
"core/src/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-V_4.cpp",
+ "core/src/fpdfapi/fpdf_cmaps/GB1/cmaps_gb1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/83pv-RKSJ-H_1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-H_2.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-V_2.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-H_1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-V_1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/Adobe-Japan1-UCS2_4.cpp",
- "core/src/fpdfapi/fpdf_cmaps/Japan1/cmaps_japan1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/EUC-H_1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/EUC-V_1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-H_2.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UTF16-H_5.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UTF16-V_5.cpp",
"core/src/fpdfapi/fpdf_cmaps/Japan1/V_1.cpp",
+ "core/src/fpdfapi/fpdf_cmaps/Japan1/cmaps_japan1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Korea1/Adobe-Korea1-UCS2_2.cpp",
- "core/src/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-H_0.cpp",
"core/src/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-V_0.cpp",
"core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-H_1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-H_1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-V_1.cpp",
"core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UTF16-H_0.cpp",
+ "core/src/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp",
+ "core/src/fpdfapi/fpdf_cmaps/cmap_int.h",
+ "core/src/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp",
"core/src/fpdfapi/fpdf_edit/editint.h",
"core/src/fpdfapi/fpdf_edit/fpdf_edit_content.cpp",
"core/src/fpdfapi/fpdf_edit/fpdf_edit_create.cpp",
"core/src/fpdfapi/fpdf_font/fpdf_font.cpp",
"core/src/fpdfapi/fpdf_font/fpdf_font_charset.cpp",
"core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp",
- "core/src/fpdfapi/fpdf_font/fpdf_font_utility.cpp",
"core/src/fpdfapi/fpdf_font/ttgsubtable.cpp",
"core/src/fpdfapi/fpdf_font/ttgsubtable.h",
"core/src/fpdfapi/fpdf_page/fpdf_page.cpp",
"core/src/fpdfapi/fpdf_render/render_int.h",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}
static_library("fpdftext") {
"core/src/fpdftext/unicodenormalizationdata.cpp",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}
static_library("fxcodec") {
+ deps = [
+ "third_party:fx_lcms2",
+ "third_party:fx_libjpeg",
+ ]
sources = [
"core/include/fxcodec/fx_codec.h",
"core/include/fxcodec/fx_codec_def.h",
"core/src/fxcodec/fx_libopenjpeg/src/fx_pi.c",
"core/src/fxcodec/fx_libopenjpeg/src/fx_raw.c",
"core/src/fxcodec/fx_libopenjpeg/src/fx_t1.c",
- "core/src/fxcodec/fx_libopenjpeg/src/fx_t1_generate_luts.c",
"core/src/fxcodec/fx_libopenjpeg/src/fx_t2.c",
"core/src/fxcodec/fx_libopenjpeg/src/fx_tcd.c",
"core/src/fxcodec/fx_libopenjpeg/src/fx_tgt.c",
"core/src/fxcodec/jbig2/JBig2_Segment.h",
"core/src/fxcodec/jbig2/JBig2_SymbolDict.cpp",
"core/src/fxcodec/jbig2/JBig2_SymbolDict.h",
- "core/src/fxcodec/lcms2/src/fx_cmscam02.c",
- "core/src/fxcodec/lcms2/src/fx_cmscgats.c",
- "core/src/fxcodec/lcms2/src/fx_cmscnvrt.c",
- "core/src/fxcodec/lcms2/src/fx_cmserr.c",
- "core/src/fxcodec/lcms2/src/fx_cmsgamma.c",
- "core/src/fxcodec/lcms2/src/fx_cmsgmt.c",
- "core/src/fxcodec/lcms2/src/fx_cmshalf.c",
- "core/src/fxcodec/lcms2/src/fx_cmsintrp.c",
- "core/src/fxcodec/lcms2/src/fx_cmsio0.c",
- "core/src/fxcodec/lcms2/src/fx_cmsio1.c",
- "core/src/fxcodec/lcms2/src/fx_cmslut.c",
- "core/src/fxcodec/lcms2/src/fx_cmsmd5.c",
- "core/src/fxcodec/lcms2/src/fx_cmsmtrx.c",
- "core/src/fxcodec/lcms2/src/fx_cmsnamed.c",
- "core/src/fxcodec/lcms2/src/fx_cmsopt.c",
- "core/src/fxcodec/lcms2/src/fx_cmspack.c",
- "core/src/fxcodec/lcms2/src/fx_cmspcs.c",
- "core/src/fxcodec/lcms2/src/fx_cmsplugin.c",
- "core/src/fxcodec/lcms2/src/fx_cmsps2.c",
- "core/src/fxcodec/lcms2/src/fx_cmssamp.c",
- "core/src/fxcodec/lcms2/src/fx_cmssm.c",
- "core/src/fxcodec/lcms2/src/fx_cmstypes.c",
- "core/src/fxcodec/lcms2/src/fx_cmsvirt.c",
- "core/src/fxcodec/lcms2/src/fx_cmswtpnt.c",
- "core/src/fxcodec/lcms2/src/fx_cmsxform.c",
- "core/src/fxcodec/libjpeg/cderror.h",
- "core/src/fxcodec/libjpeg/cdjpeg.h",
- "core/src/fxcodec/libjpeg/fpdfapi_jcapimin.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcapistd.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jccoefct.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jccolor.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcdctmgr.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jchuff.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcinit.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcmainct.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcmarker.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcmaster.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcomapi.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcparam.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcphuff.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcprepct.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jcsample.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jctrans.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdapimin.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdapistd.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdcoefct.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdcolor.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jddctmgr.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdhuff.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdinput.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdmainct.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdmarker.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdmaster.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdmerge.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdphuff.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdpostct.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdsample.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jdtrans.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jerror.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jfdctfst.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jfdctint.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jidctfst.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jidctint.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jidctred.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jmemmgr.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jmemnobs.c",
- "core/src/fxcodec/libjpeg/fpdfapi_jutils.c",
- "core/src/fxcodec/libjpeg/jchuff.h",
- "core/src/fxcodec/libjpeg/jconfig.h",
- "core/src/fxcodec/libjpeg/jdct.h",
- "core/src/fxcodec/libjpeg/jdhuff.h",
- "core/src/fxcodec/libjpeg/jerror.h",
- "core/src/fxcodec/libjpeg/jinclude.h",
- "core/src/fxcodec/libjpeg/jmemsys.h",
- "core/src/fxcodec/libjpeg/jmorecfg.h",
- "core/src/fxcodec/libjpeg/jpegint.h",
- "core/src/fxcodec/libjpeg/jpeglib.h",
- "core/src/fxcodec/libjpeg/jversion.h",
- "core/src/fxcodec/libjpeg/makefile",
- "core/src/fxcodec/libjpeg/transupp.h",
+ "core/src/fxcodec/lcms2/fx_lcms2.h",
+ "core/src/fxcodec/lcms2/fx_lcms2_plugin.h",
+ "core/src/fxcodec/libjpeg/fx_libjpeg.h",
]
configs -= [ "//build/config/compiler:chromium_code" ]
# conversion to check that an address is 16-bit aligned (benign).
cflags_c = [ "-Wno-pointer-to-int-cast" ]
}
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}
static_library("fxcrt") {
"core/include/fxcrt/fx_coordinates.h",
"core/include/fxcrt/fx_ext.h",
"core/include/fxcrt/fx_memory.h",
+ "core/include/fxcrt/fx_safe_types.h",
"core/include/fxcrt/fx_stream.h",
"core/include/fxcrt/fx_string.h",
"core/include/fxcrt/fx_system.h",
"core/include/fxcrt/fx_ucd.h",
"core/include/fxcrt/fx_xml.h",
"core/src/fxcrt/extension.h",
- "core/src/fxcrt/fxcrt_platforms.cpp",
- "core/src/fxcrt/fxcrt_platforms.h",
- "core/src/fxcrt/fxcrt_posix.cpp",
- "core/src/fxcrt/fxcrt_posix.h",
- "core/src/fxcrt/fxcrt_windows.cpp",
- "core/src/fxcrt/fxcrt_windows.h",
"core/src/fxcrt/fx_arabic.cpp",
"core/src/fxcrt/fx_arabic.h",
"core/src/fxcrt/fx_basic_array.cpp",
"core/src/fxcrt/fx_unicode.cpp",
"core/src/fxcrt/fx_xml_composer.cpp",
"core/src/fxcrt/fx_xml_parser.cpp",
+ "core/src/fxcrt/fxcrt_platforms.cpp",
+ "core/src/fxcrt/fxcrt_platforms.h",
+ "core/src/fxcrt/fxcrt_posix.cpp",
+ "core/src/fxcrt/fxcrt_posix.h",
+ "core/src/fxcrt/fxcrt_windows.cpp",
+ "core/src/fxcrt/fxcrt_windows.h",
"core/src/fxcrt/plex.h",
"core/src/fxcrt/xml_int.h",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}
static_library("fxge") {
+ deps = [
+ "third_party:fx_agg",
+ ]
sources = [
"core/include/fxge/fpf.h",
"core/include/fxge/fx_dib.h",
"core/include/fxge/fx_ge.h",
"core/include/fxge/fx_ge_apple.h",
"core/include/fxge/fx_ge_win32.h",
- "core/src/fxge/agg/include/fxfx_agg_basics.h",
- "core/src/fxge/agg/include/fxfx_agg_clip_liang_barsky.h",
- "core/src/fxge/agg/include/fxfx_agg_conv_dash.h",
- "core/src/fxge/agg/include/fxfx_agg_conv_stroke.h",
- "core/src/fxge/agg/include/fxfx_agg_curves.h",
- "core/src/fxge/agg/include/fxfx_agg_path_storage.h",
- "core/src/fxge/agg/include/fxfx_agg_rasterizer_scanline_aa.h",
- "core/src/fxge/agg/include/fxfx_agg_renderer_scanline.h",
- "core/src/fxge/agg/include/fxfx_agg_rendering_buffer.h",
- "core/src/fxge/agg/include/fxfx_agg_scanline_u.h",
"core/src/fxge/agg/include/fx_agg_driver.h",
- "core/src/fxge/agg/src/fxfx_agg_curves.cpp",
- "core/src/fxge/agg/src/fxfx_agg_driver.cpp",
- "core/src/fxge/agg/src/fxfx_agg_path_storage.cpp",
- "core/src/fxge/agg/src/fxfx_agg_rasterizer_scanline_aa.cpp",
- "core/src/fxge/agg/src/fxfx_agg_vcgen_dash.cpp",
- "core/src/fxge/agg/src/fxfx_agg_vcgen_stroke.cpp",
+ "core/src/fxge/agg/src/fx_agg_driver.cpp",
"core/src/fxge/android/fpf_skiafont.cpp",
"core/src/fxge/android/fpf_skiafont.h",
"core/src/fxge/android/fpf_skiafontmgr.cpp",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
if (pdf_use_skia) {
sources = [
"//third_party/skia/include/utils",
"//third_party/skia/src/core",
]
- deps = [ "//skia" ]
+ deps = [
+ "//skia",
+ ]
}
if (is_win) {
"core/src/fxge/win32/fx_win32_print.cpp",
"core/src/fxge/win32/win32_int.h",
]
- configs -= [
- "//build/config/win:lean_and_mean",
- ]
+ configs -= [ "//build/config/win:lean_and_mean" ]
}
}
"fpdfsdk/src/fxedit/fxet_pageobjs.cpp",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}
static_library("pdfwindow") {
"fpdfsdk/src/pdfwindow/PWL_Wnd.cpp",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}
static_library("javascript") {
sources = [
- "fpdfsdk/include/javascript/app.h",
- "fpdfsdk/include/javascript/color.h",
- "fpdfsdk/include/javascript/console.h",
"fpdfsdk/include/javascript/Consts.h",
"fpdfsdk/include/javascript/Document.h",
- "fpdfsdk/include/javascript/event.h",
"fpdfsdk/include/javascript/Field.h",
- "fpdfsdk/include/javascript/global.h",
- "fpdfsdk/include/javascript/Icon.h",
"fpdfsdk/include/javascript/IJavaScript.h",
- "fpdfsdk/include/javascript/JavaScript.h",
- "fpdfsdk/include/javascript/JS_Console.h",
+ "fpdfsdk/include/javascript/Icon.h",
"fpdfsdk/include/javascript/JS_Context.h",
"fpdfsdk/include/javascript/JS_Define.h",
"fpdfsdk/include/javascript/JS_EventHandler.h",
"fpdfsdk/include/javascript/JS_GlobalData.h",
- "fpdfsdk/include/javascript/JS_Module.h",
"fpdfsdk/include/javascript/JS_Object.h",
"fpdfsdk/include/javascript/JS_Runtime.h",
"fpdfsdk/include/javascript/JS_Value.h",
+ "fpdfsdk/include/javascript/JavaScript.h",
"fpdfsdk/include/javascript/PublicMethods.h",
+ "fpdfsdk/include/javascript/app.h",
+ "fpdfsdk/include/javascript/color.h",
+ "fpdfsdk/include/javascript/console.h",
+ "fpdfsdk/include/javascript/event.h",
+ "fpdfsdk/include/javascript/global.h",
"fpdfsdk/include/javascript/report.h",
"fpdfsdk/include/javascript/resource.h",
"fpdfsdk/include/javascript/util.h",
- "fpdfsdk/src/javascript/app.cpp",
- "fpdfsdk/src/javascript/color.cpp",
- "fpdfsdk/src/javascript/console.cpp",
"fpdfsdk/src/javascript/Consts.cpp",
"fpdfsdk/src/javascript/Document.cpp",
- "fpdfsdk/src/javascript/event.cpp",
"fpdfsdk/src/javascript/Field.cpp",
- "fpdfsdk/src/javascript/global.cpp",
"fpdfsdk/src/javascript/Icon.cpp",
"fpdfsdk/src/javascript/JS_Context.cpp",
"fpdfsdk/src/javascript/JS_EventHandler.cpp",
"fpdfsdk/src/javascript/JS_Runtime.cpp",
"fpdfsdk/src/javascript/JS_Value.cpp",
"fpdfsdk/src/javascript/PublicMethods.cpp",
+ "fpdfsdk/src/javascript/app.cpp",
+ "fpdfsdk/src/javascript/color.cpp",
+ "fpdfsdk/src/javascript/console.cpp",
+ "fpdfsdk/src/javascript/event.cpp",
+ "fpdfsdk/src/javascript/global.cpp",
"fpdfsdk/src/javascript/report.cpp",
+ "fpdfsdk/src/javascript/resource.cpp",
"fpdfsdk/src/javascript/util.cpp",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
include_dirs = [
"//v8",
"//v8/include",
public_deps = [
"//v8",
]
- deps = [
- "//v8:v8_libplatform",
- ]
}
static_library("jsapi") {
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
include_dirs = [
"//v8",
"//v8/include",
"fpdfsdk/src/formfiller/FFL_Utils.cpp",
]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}
test("pdfium_unittests") {
sources = [
+ "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp",
"core/src/fxcrt/fx_basic_bstring_unittest.cpp",
+ "core/src/fxcrt/fx_basic_memmgr_unittest.cpp",
"core/src/fxcrt/fx_basic_wstring_unittest.cpp",
"testing/fx_string_testhelpers.cpp",
"testing/fx_string_testhelpers.h",
deps = [
"//testing/gtest",
"//testing/gtest:gtest_main",
- ":pdfium"
+ ":pdfium",
]
include_dirs = [ "." ]
configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
+}
+
+test("pdfium_embeddertests") {
+ sources = [
+ "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_embeddertest.cpp",
+ "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_embeddertest.cpp",
+ "fpdfsdk/src/fpdf_dataavail_embeddertest.cpp",
+ "fpdfsdk/src/fpdfdoc_embeddertest.cpp",
+ "fpdfsdk/src/fpdfformfill_embeddertest.cpp",
+ "fpdfsdk/src/fpdftext_embeddertest.cpp",
+ "fpdfsdk/src/fpdfview_c_api_test.c",
+ "fpdfsdk/src/fpdfview_c_api_test.h",
+ "fpdfsdk/src/fpdfview_embeddertest.cpp",
+ "testing/embedder_test.cpp",
+ "testing/embedder_test.h",
+ "testing/embedder_test_mock_delegate.h",
+ "testing/embedder_test_timer_handling_delegate.h",
+ "testing/fx_string_testhelpers.cpp",
+ "testing/fx_string_testhelpers.h",
+ ]
+ deps = [
+ "//testing/gmock",
+ "//testing/gtest",
+ "//v8:v8_libplatform",
+ ":pdfium",
+ ]
+ include_dirs = [
+ "//v8",
+ "//v8/include",
+ "."
+ ]
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
}