blob: bab57b906b5d550f1513afe0c6a9954d6a0ea315 [file] [log] [blame]
Svet Ganove6986e12015-06-04 14:52:15 -07001# Copyright 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//testing/test.gni")
6
7pdf_use_skia = false
8
9declare_args() {
10 # On Android there's no system FreeType. On Windows and Mac, only a few
11 # methods are used from it.
12 pdfium_bundle_freetype = !is_linux
13}
14
15config("pdfium_config") {
16 cflags = []
17 include_dirs = [ "third_party/freetype/include" ]
18 defines = [
19 "_FPDFSDK_LIB",
20 "_NO_GDIPLUS_", # workaround text rendering issues on Windows
21 "OPJ_STATIC",
22 "V8_DEPRECATION_WARNINGS",
23 ]
24
25 if (pdf_use_skia) {
26 defines += [ "_SKIA_SUPPORT_" ]
27 }
28
29 if (is_linux) {
30 if (current_cpu == "x64") {
31 defines += [ "_FX_CPU_=_FX_X64_" ]
32 cflags += [ "-fPIC" ]
33 } else if (current_cpu == "x86") {
34 defines += [ "_FX_CPU_=_FX_X86_" ]
35 }
36 }
37
38 if (is_win) {
39 cflags += [
40 "/wd4005",
41 "/wd4018",
42 "/wd4146",
43 "/wd4333",
44 "/wd4345",
45 ]
46 }
47}
48
49static_library("pdfium") {
50 sources = [
51 "fpdfsdk/include/fsdk_actionhandler.h",
52 "fpdfsdk/include/fsdk_annothandler.h",
53 "fpdfsdk/include/fsdk_baseannot.h",
54 "fpdfsdk/include/fsdk_baseform.h",
55 "fpdfsdk/src/fpdf_dataavail.cpp",
56 "fpdfsdk/src/fpdf_ext.cpp",
57 "fpdfsdk/src/fpdf_flatten.cpp",
58 "fpdfsdk/src/fpdf_progressive.cpp",
59 "fpdfsdk/src/fpdf_searchex.cpp",
60 "fpdfsdk/src/fpdf_sysfontinfo.cpp",
61 "fpdfsdk/src/fpdf_transformpage.cpp",
62 "fpdfsdk/src/fpdfdoc.cpp",
63 "fpdfsdk/src/fpdfeditimg.cpp",
64 "fpdfsdk/src/fpdfeditpage.cpp",
65 "fpdfsdk/src/fpdfformfill.cpp",
66 "fpdfsdk/src/fpdfppo.cpp",
67 "fpdfsdk/src/fpdfsave.cpp",
68 "fpdfsdk/src/fpdfsdkdll.rc",
69 "fpdfsdk/src/fpdftext.cpp",
70 "fpdfsdk/src/fpdfview.cpp",
71 "fpdfsdk/src/fsdk_actionhandler.cpp",
72 "fpdfsdk/src/fsdk_annothandler.cpp",
73 "fpdfsdk/src/fsdk_baseannot.cpp",
74 "fpdfsdk/src/fsdk_baseform.cpp",
75 "fpdfsdk/src/fsdk_mgr.cpp",
76 "fpdfsdk/src/fsdk_rendercontext.cpp",
77 "fpdfsdk/src/resource.h",
78 "public/fpdf_dataavail.h",
79 "public/fpdf_doc.h",
80 "public/fpdf_edit.h",
81 "public/fpdf_ext.h",
82 "public/fpdf_flatten.h",
83 "public/fpdf_formfill.h",
84 "public/fpdf_fwlevent.h",
85 "public/fpdf_ppo.h",
86 "public/fpdf_progressive.h",
87 "public/fpdf_save.h",
88 "public/fpdf_searchex.h",
89 "public/fpdf_sysfontinfo.h",
90 "public/fpdf_text.h",
91 "public/fpdf_transformpage.h",
92 "public/fpdfview.h",
93 ]
94
95 libs = []
96 configs -= [ "//build/config/compiler:chromium_code" ]
97 configs += [
98 ":pdfium_config",
99 "//build/config/compiler:no_chromium_code",
100 ]
101
102 deps = [
103 "third_party:bigint",
104 "third_party:pdfium_base",
105 ":fdrm",
106 ":formfiller",
107 ":fpdfapi",
108 ":fpdfdoc",
109 ":fpdftext",
110 ":fxcodec",
111 ":fxcrt",
112 ":fxedit",
113 ":fxge",
114 ":javascript",
115 ":jsapi",
116 ":pdfwindow",
117 ]
118
119 if (is_win) {
120 libs += [
121 "advapi32.lib",
122 "gdi32.lib",
123 "user32.lib",
124 ]
125 }
126
127 if (is_mac) {
128 libs += [
129 "AppKit.framework",
130 "CoreFoundation.framework",
131 ]
132 }
133
134 if (pdfium_bundle_freetype) {
135 deps += [ "third_party:freetype" ]
136 } else {
137 libs += [ "freetype" ]
138 }
139}
140
141# Targets below this are only visible within this file (and to the
142# top-level gn_visibility target used to help gn_all build everything).
143visibility = [
144 ":*",
145 "//:gn_visibility",
146]
147
148static_library("fdrm") {
149 sources = [
150 "core/include/fdrm/fx_crypt.h",
151 "core/src/fdrm/crypto/fx_crypt.cpp",
152 "core/src/fdrm/crypto/fx_crypt_aes.cpp",
153 "core/src/fdrm/crypto/fx_crypt_sha.cpp",
154 ]
155 configs -= [ "//build/config/compiler:chromium_code" ]
156 configs += [
157 ":pdfium_config",
158 "//build/config/compiler:no_chromium_code",
159 ]
160}
161
162static_library("fpdfdoc") {
163 sources = [
164 "core/include/fpdfdoc/fpdf_ap.h",
165 "core/include/fpdfdoc/fpdf_doc.h",
166 "core/include/fpdfdoc/fpdf_tagged.h",
167 "core/include/fpdfdoc/fpdf_vt.h",
168 "core/src/fpdfdoc/doc_action.cpp",
169 "core/src/fpdfdoc/doc_annot.cpp",
170 "core/src/fpdfdoc/doc_ap.cpp",
171 "core/src/fpdfdoc/doc_basic.cpp",
172 "core/src/fpdfdoc/doc_bookmark.cpp",
173 "core/src/fpdfdoc/doc_form.cpp",
174 "core/src/fpdfdoc/doc_formcontrol.cpp",
175 "core/src/fpdfdoc/doc_formfield.cpp",
176 "core/src/fpdfdoc/doc_link.cpp",
177 "core/src/fpdfdoc/doc_metadata.cpp",
178 "core/src/fpdfdoc/doc_ocg.cpp",
179 "core/src/fpdfdoc/doc_tagged.cpp",
180 "core/src/fpdfdoc/doc_utils.cpp",
181 "core/src/fpdfdoc/doc_utils.h",
182 "core/src/fpdfdoc/doc_viewerPreferences.cpp",
183 "core/src/fpdfdoc/doc_vt.cpp",
184 "core/src/fpdfdoc/doc_vtmodule.cpp",
185 "core/src/fpdfdoc/pdf_vt.h",
186 "core/src/fpdfdoc/tagged_int.h",
187 ]
188 configs -= [ "//build/config/compiler:chromium_code" ]
189 configs += [
190 ":pdfium_config",
191 "//build/config/compiler:no_chromium_code",
192 ]
193}
194
195static_library("fpdfapi") {
196 sources = [
197 "core/include/fpdfapi/fpdf_module.h",
198 "core/include/fpdfapi/fpdf_objects.h",
199 "core/include/fpdfapi/fpdf_page.h",
200 "core/include/fpdfapi/fpdf_pageobj.h",
201 "core/include/fpdfapi/fpdf_parser.h",
202 "core/include/fpdfapi/fpdf_render.h",
203 "core/include/fpdfapi/fpdf_resource.h",
204 "core/include/fpdfapi/fpdf_serial.h",
205 "core/include/fpdfapi/fpdfapi.h",
206 "core/src/fpdfapi/fpdf_basic_module.cpp",
207 "core/src/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp",
208 "core/src/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp",
209 "core/src/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp",
210 "core/src/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp",
211 "core/src/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp",
212 "core/src/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp",
213 "core/src/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-V_0.cpp",
214 "core/src/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-H_0.cpp",
215 "core/src/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-V_0.cpp",
216 "core/src/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-H_5.cpp",
217 "core/src/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-V_5.cpp",
218 "core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-H_3.cpp",
219 "core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-V_3.cpp",
220 "core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UTF16-H_0.cpp",
221 "core/src/fpdfapi/fpdf_cmaps/CNS1/cmaps_cns1.cpp",
222 "core/src/fpdfapi/fpdf_cmaps/GB1/Adobe-GB1-UCS2_5.cpp",
223 "core/src/fpdfapi/fpdf_cmaps/GB1/GB-EUC-H_0.cpp",
224 "core/src/fpdfapi/fpdf_cmaps/GB1/GB-EUC-V_0.cpp",
225 "core/src/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-H_2.cpp",
226 "core/src/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-V_2.cpp",
227 "core/src/fpdfapi/fpdf_cmaps/GB1/GBK2K-H_5.cpp",
228 "core/src/fpdfapi/fpdf_cmaps/GB1/GBK2K-V_5.cpp",
229 "core/src/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-H_2.cpp",
230 "core/src/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-V_2.cpp",
231 "core/src/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-H_0.cpp",
232 "core/src/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-V_0.cpp",
233 "core/src/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-H_4.cpp",
234 "core/src/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-V_4.cpp",
235 "core/src/fpdfapi/fpdf_cmaps/GB1/cmaps_gb1.cpp",
236 "core/src/fpdfapi/fpdf_cmaps/Japan1/83pv-RKSJ-H_1.cpp",
237 "core/src/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-H_2.cpp",
238 "core/src/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-V_2.cpp",
239 "core/src/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-H_2.cpp",
240 "core/src/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-V_2.cpp",
241 "core/src/fpdfapi/fpdf_cmaps/Japan1/90pv-RKSJ-H_1.cpp",
242 "core/src/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-H_1.cpp",
243 "core/src/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-V_1.cpp",
244 "core/src/fpdfapi/fpdf_cmaps/Japan1/Adobe-Japan1-UCS2_4.cpp",
245 "core/src/fpdfapi/fpdf_cmaps/Japan1/EUC-H_1.cpp",
246 "core/src/fpdfapi/fpdf_cmaps/Japan1/EUC-V_1.cpp",
247 "core/src/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-H_2.cpp",
248 "core/src/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-V_2.cpp",
249 "core/src/fpdfapi/fpdf_cmaps/Japan1/H_1.cpp",
250 "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-H_4.cpp",
251 "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-V_4.cpp",
252 "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-H_4.cpp",
253 "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-V_4.cpp",
254 "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UTF16-H_5.cpp",
255 "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UTF16-V_5.cpp",
256 "core/src/fpdfapi/fpdf_cmaps/Japan1/V_1.cpp",
257 "core/src/fpdfapi/fpdf_cmaps/Japan1/cmaps_japan1.cpp",
258 "core/src/fpdfapi/fpdf_cmaps/Korea1/Adobe-Korea1-UCS2_2.cpp",
259 "core/src/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-H_0.cpp",
260 "core/src/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-V_0.cpp",
261 "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-H_1.cpp",
262 "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-V_1.cpp",
263 "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-H_1.cpp",
264 "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-V_1.cpp",
265 "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCpc-EUC-H_0.cpp",
266 "core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-H_1.cpp",
267 "core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-V_1.cpp",
268 "core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UTF16-H_0.cpp",
269 "core/src/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp",
270 "core/src/fpdfapi/fpdf_cmaps/cmap_int.h",
271 "core/src/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp",
272 "core/src/fpdfapi/fpdf_edit/editint.h",
273 "core/src/fpdfapi/fpdf_edit/fpdf_edit_content.cpp",
274 "core/src/fpdfapi/fpdf_edit/fpdf_edit_create.cpp",
275 "core/src/fpdfapi/fpdf_edit/fpdf_edit_doc.cpp",
276 "core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp",
277 "core/src/fpdfapi/fpdf_font/common.h",
278 "core/src/fpdfapi/fpdf_font/font_int.h",
279 "core/src/fpdfapi/fpdf_font/fpdf_font.cpp",
280 "core/src/fpdfapi/fpdf_font/fpdf_font_charset.cpp",
281 "core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp",
282 "core/src/fpdfapi/fpdf_font/ttgsubtable.cpp",
283 "core/src/fpdfapi/fpdf_font/ttgsubtable.h",
284 "core/src/fpdfapi/fpdf_page/fpdf_page.cpp",
285 "core/src/fpdfapi/fpdf_page/fpdf_page_colors.cpp",
286 "core/src/fpdfapi/fpdf_page/fpdf_page_doc.cpp",
287 "core/src/fpdfapi/fpdf_page/fpdf_page_func.cpp",
288 "core/src/fpdfapi/fpdf_page/fpdf_page_graph_state.cpp",
289 "core/src/fpdfapi/fpdf_page/fpdf_page_image.cpp",
290 "core/src/fpdfapi/fpdf_page/fpdf_page_parser.cpp",
291 "core/src/fpdfapi/fpdf_page/fpdf_page_parser_old.cpp",
292 "core/src/fpdfapi/fpdf_page/fpdf_page_path.cpp",
293 "core/src/fpdfapi/fpdf_page/fpdf_page_pattern.cpp",
294 "core/src/fpdfapi/fpdf_page/pageint.h",
295 "core/src/fpdfapi/fpdf_parser/filters_int.h",
296 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode.cpp",
297 "core/src/fpdfapi/fpdf_parser/fpdf_parser_document.cpp",
298 "core/src/fpdfapi/fpdf_parser/fpdf_parser_encrypt.cpp",
299 "core/src/fpdfapi/fpdf_parser/fpdf_parser_fdf.cpp",
300 "core/src/fpdfapi/fpdf_parser/fpdf_parser_filters.cpp",
301 "core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp",
302 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser.cpp",
303 "core/src/fpdfapi/fpdf_parser/fpdf_parser_utility.cpp",
304 "core/src/fpdfapi/fpdf_render/fpdf_render.cpp",
305 "core/src/fpdfapi/fpdf_render/fpdf_render_cache.cpp",
306 "core/src/fpdfapi/fpdf_render/fpdf_render_image.cpp",
307 "core/src/fpdfapi/fpdf_render/fpdf_render_loadimage.cpp",
308 "core/src/fpdfapi/fpdf_render/fpdf_render_pattern.cpp",
309 "core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp",
310 "core/src/fpdfapi/fpdf_render/render_int.h",
311 ]
312 configs -= [ "//build/config/compiler:chromium_code" ]
313 configs += [
314 ":pdfium_config",
315 "//build/config/compiler:no_chromium_code",
316 ]
317}
318
319static_library("fpdftext") {
320 sources = [
321 "core/include/fpdftext/fpdf_text.h",
322 "core/src/fpdftext/fpdf_text.cpp",
323 "core/src/fpdftext/fpdf_text_int.cpp",
324 "core/src/fpdftext/fpdf_text_search.cpp",
325 "core/src/fpdftext/text_int.h",
326 "core/src/fpdftext/txtproc.h",
327 "core/src/fpdftext/unicodenormalization.cpp",
328 "core/src/fpdftext/unicodenormalizationdata.cpp",
329 ]
330 configs -= [ "//build/config/compiler:chromium_code" ]
331 configs += [
332 ":pdfium_config",
333 "//build/config/compiler:no_chromium_code",
334 ]
335}
336
337static_library("fxcodec") {
338 sources = [
339 "core/include/fxcodec/fx_codec.h",
340 "core/include/fxcodec/fx_codec_def.h",
341 "core/include/fxcodec/fx_codec_provider.h",
342 "core/src/fxcodec/codec/codec_int.h",
343 "core/src/fxcodec/codec/fx_codec.cpp",
344 "core/src/fxcodec/codec/fx_codec_fax.cpp",
345 "core/src/fxcodec/codec/fx_codec_flate.cpp",
346 "core/src/fxcodec/codec/fx_codec_icc.cpp",
347 "core/src/fxcodec/codec/fx_codec_jbig.cpp",
348 "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp",
349 "core/src/fxcodec/codec/fx_codec_jpeg.cpp",
350 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp",
351 "core/src/fxcodec/fx_libopenjpeg/include/fx_openjpeg.h",
352 "core/src/fxcodec/fx_libopenjpeg/src/fx_bio.c",
353 "core/src/fxcodec/fx_libopenjpeg/src/fx_cio.c",
354 "core/src/fxcodec/fx_libopenjpeg/src/fx_dwt.c",
355 "core/src/fxcodec/fx_libopenjpeg/src/fx_event.c",
356 "core/src/fxcodec/fx_libopenjpeg/src/fx_function_list.c",
357 "core/src/fxcodec/fx_libopenjpeg/src/fx_image.c",
358 "core/src/fxcodec/fx_libopenjpeg/src/fx_invert.c",
359 "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k.c",
360 "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k_lib.c",
361 "core/src/fxcodec/fx_libopenjpeg/src/fx_jpt.c",
362 "core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c",
363 "core/src/fxcodec/fx_libopenjpeg/src/fx_mqc.c",
364 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg.c",
365 "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg_jp2.c",
366 "core/src/fxcodec/fx_libopenjpeg/src/fx_opj_clock.c",
367 "core/src/fxcodec/fx_libopenjpeg/src/fx_pi.c",
368 "core/src/fxcodec/fx_libopenjpeg/src/fx_raw.c",
369 "core/src/fxcodec/fx_libopenjpeg/src/fx_t1.c",
370 "core/src/fxcodec/fx_libopenjpeg/src/fx_t2.c",
371 "core/src/fxcodec/fx_libopenjpeg/src/fx_tcd.c",
372 "core/src/fxcodec/fx_libopenjpeg/src/fx_tgt.c",
373 "core/src/fxcodec/fx_zlib/include/fx_zlib.h",
374 "core/src/fxcodec/fx_zlib/src/fx_zlib_adler32.c",
375 "core/src/fxcodec/fx_zlib/src/fx_zlib_compress.c",
376 "core/src/fxcodec/fx_zlib/src/fx_zlib_crc32.c",
377 "core/src/fxcodec/fx_zlib/src/fx_zlib_deflate.c",
378 "core/src/fxcodec/fx_zlib/src/fx_zlib_gzclose.c",
379 "core/src/fxcodec/fx_zlib/src/fx_zlib_gzlib.c",
380 "core/src/fxcodec/fx_zlib/src/fx_zlib_gzread.c",
381 "core/src/fxcodec/fx_zlib/src/fx_zlib_gzwrite.c",
382 "core/src/fxcodec/fx_zlib/src/fx_zlib_infback.c",
383 "core/src/fxcodec/fx_zlib/src/fx_zlib_inffast.c",
384 "core/src/fxcodec/fx_zlib/src/fx_zlib_inflate.c",
385 "core/src/fxcodec/fx_zlib/src/fx_zlib_inftrees.c",
386 "core/src/fxcodec/fx_zlib/src/fx_zlib_trees.c",
387 "core/src/fxcodec/fx_zlib/src/fx_zlib_uncompr.c",
388 "core/src/fxcodec/fx_zlib/src/fx_zlib_zutil.c",
389 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h",
390 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp",
391 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h",
392 "core/src/fxcodec/jbig2/JBig2_ArithQe.h",
393 "core/src/fxcodec/jbig2/JBig2_BitStream.h",
394 "core/src/fxcodec/jbig2/JBig2_Context.cpp",
395 "core/src/fxcodec/jbig2/JBig2_Context.h",
396 "core/src/fxcodec/jbig2/JBig2_Define.h",
397 "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.cpp",
398 "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h",
399 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp",
400 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.h",
401 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.cpp",
402 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.h",
403 "core/src/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h",
404 "core/src/fxcodec/jbig2/JBig2_Image.cpp",
405 "core/src/fxcodec/jbig2/JBig2_Image.h",
406 "core/src/fxcodec/jbig2/JBig2_List.h",
407 "core/src/fxcodec/jbig2/JBig2_Module.h",
408 "core/src/fxcodec/jbig2/JBig2_Object.cpp",
409 "core/src/fxcodec/jbig2/JBig2_Object.h",
410 "core/src/fxcodec/jbig2/JBig2_Page.h",
411 "core/src/fxcodec/jbig2/JBig2_PatternDict.cpp",
412 "core/src/fxcodec/jbig2/JBig2_PatternDict.h",
413 "core/src/fxcodec/jbig2/JBig2_Segment.cpp",
414 "core/src/fxcodec/jbig2/JBig2_Segment.h",
415 "core/src/fxcodec/jbig2/JBig2_SymbolDict.cpp",
416 "core/src/fxcodec/jbig2/JBig2_SymbolDict.h",
417 "core/src/fxcodec/lcms2/src/fx_cmscam02.c",
418 "core/src/fxcodec/lcms2/src/fx_cmscgats.c",
419 "core/src/fxcodec/lcms2/src/fx_cmscnvrt.c",
420 "core/src/fxcodec/lcms2/src/fx_cmserr.c",
421 "core/src/fxcodec/lcms2/src/fx_cmsgamma.c",
422 "core/src/fxcodec/lcms2/src/fx_cmsgmt.c",
423 "core/src/fxcodec/lcms2/src/fx_cmshalf.c",
424 "core/src/fxcodec/lcms2/src/fx_cmsintrp.c",
425 "core/src/fxcodec/lcms2/src/fx_cmsio0.c",
426 "core/src/fxcodec/lcms2/src/fx_cmsio1.c",
427 "core/src/fxcodec/lcms2/src/fx_cmslut.c",
428 "core/src/fxcodec/lcms2/src/fx_cmsmd5.c",
429 "core/src/fxcodec/lcms2/src/fx_cmsmtrx.c",
430 "core/src/fxcodec/lcms2/src/fx_cmsnamed.c",
431 "core/src/fxcodec/lcms2/src/fx_cmsopt.c",
432 "core/src/fxcodec/lcms2/src/fx_cmspack.c",
433 "core/src/fxcodec/lcms2/src/fx_cmspcs.c",
434 "core/src/fxcodec/lcms2/src/fx_cmsplugin.c",
435 "core/src/fxcodec/lcms2/src/fx_cmsps2.c",
436 "core/src/fxcodec/lcms2/src/fx_cmssamp.c",
437 "core/src/fxcodec/lcms2/src/fx_cmssm.c",
438 "core/src/fxcodec/lcms2/src/fx_cmstypes.c",
439 "core/src/fxcodec/lcms2/src/fx_cmsvirt.c",
440 "core/src/fxcodec/lcms2/src/fx_cmswtpnt.c",
441 "core/src/fxcodec/lcms2/src/fx_cmsxform.c",
442 "core/src/fxcodec/libjpeg/cderror.h",
443 "core/src/fxcodec/libjpeg/cdjpeg.h",
444 "core/src/fxcodec/libjpeg/fpdfapi_jcapimin.c",
445 "core/src/fxcodec/libjpeg/fpdfapi_jcapistd.c",
446 "core/src/fxcodec/libjpeg/fpdfapi_jccoefct.c",
447 "core/src/fxcodec/libjpeg/fpdfapi_jccolor.c",
448 "core/src/fxcodec/libjpeg/fpdfapi_jcdctmgr.c",
449 "core/src/fxcodec/libjpeg/fpdfapi_jchuff.c",
450 "core/src/fxcodec/libjpeg/fpdfapi_jcinit.c",
451 "core/src/fxcodec/libjpeg/fpdfapi_jcmainct.c",
452 "core/src/fxcodec/libjpeg/fpdfapi_jcmarker.c",
453 "core/src/fxcodec/libjpeg/fpdfapi_jcmaster.c",
454 "core/src/fxcodec/libjpeg/fpdfapi_jcomapi.c",
455 "core/src/fxcodec/libjpeg/fpdfapi_jcparam.c",
456 "core/src/fxcodec/libjpeg/fpdfapi_jcphuff.c",
457 "core/src/fxcodec/libjpeg/fpdfapi_jcprepct.c",
458 "core/src/fxcodec/libjpeg/fpdfapi_jcsample.c",
459 "core/src/fxcodec/libjpeg/fpdfapi_jctrans.c",
460 "core/src/fxcodec/libjpeg/fpdfapi_jdapimin.c",
461 "core/src/fxcodec/libjpeg/fpdfapi_jdapistd.c",
462 "core/src/fxcodec/libjpeg/fpdfapi_jdcoefct.c",
463 "core/src/fxcodec/libjpeg/fpdfapi_jdcolor.c",
464 "core/src/fxcodec/libjpeg/fpdfapi_jddctmgr.c",
465 "core/src/fxcodec/libjpeg/fpdfapi_jdhuff.c",
466 "core/src/fxcodec/libjpeg/fpdfapi_jdinput.c",
467 "core/src/fxcodec/libjpeg/fpdfapi_jdmainct.c",
468 "core/src/fxcodec/libjpeg/fpdfapi_jdmarker.c",
469 "core/src/fxcodec/libjpeg/fpdfapi_jdmaster.c",
470 "core/src/fxcodec/libjpeg/fpdfapi_jdmerge.c",
471 "core/src/fxcodec/libjpeg/fpdfapi_jdphuff.c",
472 "core/src/fxcodec/libjpeg/fpdfapi_jdpostct.c",
473 "core/src/fxcodec/libjpeg/fpdfapi_jdsample.c",
474 "core/src/fxcodec/libjpeg/fpdfapi_jdtrans.c",
475 "core/src/fxcodec/libjpeg/fpdfapi_jerror.c",
476 "core/src/fxcodec/libjpeg/fpdfapi_jfdctfst.c",
477 "core/src/fxcodec/libjpeg/fpdfapi_jfdctint.c",
478 "core/src/fxcodec/libjpeg/fpdfapi_jidctfst.c",
479 "core/src/fxcodec/libjpeg/fpdfapi_jidctint.c",
480 "core/src/fxcodec/libjpeg/fpdfapi_jidctred.c",
481 "core/src/fxcodec/libjpeg/fpdfapi_jmemmgr.c",
482 "core/src/fxcodec/libjpeg/fpdfapi_jmemnobs.c",
483 "core/src/fxcodec/libjpeg/fpdfapi_jutils.c",
484 "core/src/fxcodec/libjpeg/jchuff.h",
485 "core/src/fxcodec/libjpeg/jconfig.h",
486 "core/src/fxcodec/libjpeg/jdct.h",
487 "core/src/fxcodec/libjpeg/jdhuff.h",
488 "core/src/fxcodec/libjpeg/jerror.h",
489 "core/src/fxcodec/libjpeg/jinclude.h",
490 "core/src/fxcodec/libjpeg/jmemsys.h",
491 "core/src/fxcodec/libjpeg/jmorecfg.h",
492 "core/src/fxcodec/libjpeg/jpegint.h",
493 "core/src/fxcodec/libjpeg/jpeglib.h",
494 "core/src/fxcodec/libjpeg/jversion.h",
495 "core/src/fxcodec/libjpeg/makefile",
496 "core/src/fxcodec/libjpeg/transupp.h",
497 ]
498 configs -= [ "//build/config/compiler:chromium_code" ]
499
500 if (is_posix) {
501 # core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c does an pointer-to-int
502 # conversion to check that an address is 16-bit aligned (benign).
503 cflags_c = [ "-Wno-pointer-to-int-cast" ]
504 }
505 configs += [
506 ":pdfium_config",
507 "//build/config/compiler:no_chromium_code",
508 ]
509}
510
511static_library("fxcrt") {
512 sources = [
513 "core/include/fxcrt/fx_arb.h",
514 "core/include/fxcrt/fx_basic.h",
515 "core/include/fxcrt/fx_coordinates.h",
516 "core/include/fxcrt/fx_ext.h",
517 "core/include/fxcrt/fx_memory.h",
518 "core/include/fxcrt/fx_stream.h",
519 "core/include/fxcrt/fx_string.h",
520 "core/include/fxcrt/fx_system.h",
521 "core/include/fxcrt/fx_ucd.h",
522 "core/include/fxcrt/fx_xml.h",
523 "core/src/fxcrt/extension.h",
524 "core/src/fxcrt/fx_arabic.cpp",
525 "core/src/fxcrt/fx_arabic.h",
526 "core/src/fxcrt/fx_basic_array.cpp",
527 "core/src/fxcrt/fx_basic_bstring.cpp",
528 "core/src/fxcrt/fx_basic_buffer.cpp",
529 "core/src/fxcrt/fx_basic_coords.cpp",
530 "core/src/fxcrt/fx_basic_gcc.cpp",
531 "core/src/fxcrt/fx_basic_list.cpp",
532 "core/src/fxcrt/fx_basic_maps.cpp",
533 "core/src/fxcrt/fx_basic_memmgr.cpp",
534 "core/src/fxcrt/fx_basic_plex.cpp",
535 "core/src/fxcrt/fx_basic_utf.cpp",
536 "core/src/fxcrt/fx_basic_util.cpp",
537 "core/src/fxcrt/fx_basic_wstring.cpp",
538 "core/src/fxcrt/fx_extension.cpp",
539 "core/src/fxcrt/fx_safe_types.h",
540 "core/src/fxcrt/fx_ucddata.cpp",
541 "core/src/fxcrt/fx_unicode.cpp",
542 "core/src/fxcrt/fx_xml_composer.cpp",
543 "core/src/fxcrt/fx_xml_parser.cpp",
544 "core/src/fxcrt/fxcrt_platforms.cpp",
545 "core/src/fxcrt/fxcrt_platforms.h",
546 "core/src/fxcrt/fxcrt_posix.cpp",
547 "core/src/fxcrt/fxcrt_posix.h",
548 "core/src/fxcrt/fxcrt_windows.cpp",
549 "core/src/fxcrt/fxcrt_windows.h",
550 "core/src/fxcrt/plex.h",
551 "core/src/fxcrt/xml_int.h",
552 ]
553 configs -= [ "//build/config/compiler:chromium_code" ]
554 configs += [
555 ":pdfium_config",
556 "//build/config/compiler:no_chromium_code",
557 ]
558}
559
560static_library("fxge") {
561 sources = [
562 "core/include/fxge/fpf.h",
563 "core/include/fxge/fx_dib.h",
564 "core/include/fxge/fx_font.h",
565 "core/include/fxge/fx_freetype.h",
566 "core/include/fxge/fx_ge.h",
567 "core/include/fxge/fx_ge_apple.h",
568 "core/include/fxge/fx_ge_win32.h",
569 "core/src/fxge/agg/include/fx_agg_driver.h",
570 "core/src/fxge/agg/include/fxfx_agg_basics.h",
571 "core/src/fxge/agg/include/fxfx_agg_clip_liang_barsky.h",
572 "core/src/fxge/agg/include/fxfx_agg_conv_dash.h",
573 "core/src/fxge/agg/include/fxfx_agg_conv_stroke.h",
574 "core/src/fxge/agg/include/fxfx_agg_curves.h",
575 "core/src/fxge/agg/include/fxfx_agg_path_storage.h",
576 "core/src/fxge/agg/include/fxfx_agg_rasterizer_scanline_aa.h",
577 "core/src/fxge/agg/include/fxfx_agg_renderer_scanline.h",
578 "core/src/fxge/agg/include/fxfx_agg_rendering_buffer.h",
579 "core/src/fxge/agg/include/fxfx_agg_scanline_u.h",
580 "core/src/fxge/agg/src/fxfx_agg_curves.cpp",
581 "core/src/fxge/agg/src/fxfx_agg_driver.cpp",
582 "core/src/fxge/agg/src/fxfx_agg_path_storage.cpp",
583 "core/src/fxge/agg/src/fxfx_agg_rasterizer_scanline_aa.cpp",
584 "core/src/fxge/agg/src/fxfx_agg_vcgen_dash.cpp",
585 "core/src/fxge/agg/src/fxfx_agg_vcgen_stroke.cpp",
586 "core/src/fxge/android/fpf_skiafont.cpp",
587 "core/src/fxge/android/fpf_skiafont.h",
588 "core/src/fxge/android/fpf_skiafontmgr.cpp",
589 "core/src/fxge/android/fpf_skiafontmgr.h",
590 "core/src/fxge/android/fpf_skiamodule.cpp",
591 "core/src/fxge/android/fpf_skiamodule.h",
592 "core/src/fxge/android/fx_android_font.cpp",
593 "core/src/fxge/android/fx_android_font.h",
594 "core/src/fxge/android/fx_android_imp.cpp",
595 "core/src/fxge/android/fx_fpf.h",
596 "core/src/fxge/apple/apple_int.h",
597 "core/src/fxge/apple/fx_apple_platform.cpp",
598 "core/src/fxge/apple/fx_mac_imp.cpp",
599 "core/src/fxge/apple/fx_quartz_device.cpp",
600 "core/src/fxge/dib/dib_int.h",
601 "core/src/fxge/dib/fx_dib_composite.cpp",
602 "core/src/fxge/dib/fx_dib_convert.cpp",
603 "core/src/fxge/dib/fx_dib_engine.cpp",
604 "core/src/fxge/dib/fx_dib_main.cpp",
605 "core/src/fxge/dib/fx_dib_transform.cpp",
606 "core/src/fxge/fontdata/chromefontdata/FoxitDingbats.c",
607 "core/src/fxge/fontdata/chromefontdata/FoxitFixed.c",
608 "core/src/fxge/fontdata/chromefontdata/FoxitFixedBold.c",
609 "core/src/fxge/fontdata/chromefontdata/FoxitFixedBoldItalic.c",
610 "core/src/fxge/fontdata/chromefontdata/FoxitFixedItalic.c",
611 "core/src/fxge/fontdata/chromefontdata/FoxitSans.c",
612 "core/src/fxge/fontdata/chromefontdata/FoxitSansBold.c",
613 "core/src/fxge/fontdata/chromefontdata/FoxitSansBoldItalic.c",
614 "core/src/fxge/fontdata/chromefontdata/FoxitSansItalic.c",
615 "core/src/fxge/fontdata/chromefontdata/FoxitSansMM.c",
616 "core/src/fxge/fontdata/chromefontdata/FoxitSerif.c",
617 "core/src/fxge/fontdata/chromefontdata/FoxitSerifBold.c",
618 "core/src/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.c",
619 "core/src/fxge/fontdata/chromefontdata/FoxitSerifItalic.c",
620 "core/src/fxge/fontdata/chromefontdata/FoxitSerifMM.c",
621 "core/src/fxge/fontdata/chromefontdata/FoxitSymbol.c",
622 "core/src/fxge/freetype/fx_freetype.c",
623 "core/src/fxge/ge/fx_ge.cpp",
624 "core/src/fxge/ge/fx_ge_device.cpp",
625 "core/src/fxge/ge/fx_ge_font.cpp",
626 "core/src/fxge/ge/fx_ge_fontmap.cpp",
627 "core/src/fxge/ge/fx_ge_linux.cpp",
628 "core/src/fxge/ge/fx_ge_path.cpp",
629 "core/src/fxge/ge/fx_ge_ps.cpp",
630 "core/src/fxge/ge/fx_ge_text.cpp",
631 "core/src/fxge/ge/text_int.h",
632 ]
633
634 configs -= [ "//build/config/compiler:chromium_code" ]
635 configs += [
636 ":pdfium_config",
637 "//build/config/compiler:no_chromium_code",
638 ]
639
640 if (pdf_use_skia) {
641 sources = [
642 "core/src/fxge/skia/fx_skia_blitter_new.cpp",
643 "core/src/fxge/skia/fx_skia_device.cpp",
644 ]
645 include_dirs = [
646 "//third_party/skia/include/config",
647 "//third_party/skia/include/core",
648 "//third_party/skia/include/effects",
649 "//third_party/skia/include/images",
650 "//third_party/skia/include/lazy",
651 "//third_party/skia/include/pathops",
652 "//third_party/skia/include/utils",
653 "//third_party/skia/src/core",
654 ]
655 deps = [
656 "//skia",
657 ]
658 }
659
660 if (is_win) {
661 sources += [
662 "core/src/fxge/win32/dwrite_int.h",
663 "core/src/fxge/win32/fx_win32_device.cpp",
664 "core/src/fxge/win32/fx_win32_dib.cpp",
665 "core/src/fxge/win32/fx_win32_dwrite.cpp",
666 "core/src/fxge/win32/fx_win32_gdipext.cpp",
667 "core/src/fxge/win32/fx_win32_print.cpp",
668 "core/src/fxge/win32/win32_int.h",
669 ]
670 configs -= [ "//build/config/win:lean_and_mean" ]
671 }
672}
673
674static_library("fxedit") {
675 sources = [
676 "fpdfsdk/include/fxedit/fx_edit.h",
677 "fpdfsdk/include/fxedit/fxet_edit.h",
678 "fpdfsdk/include/fxedit/fxet_list.h",
679 "fpdfsdk/include/fxedit/fxet_stub.h",
680 "fpdfsdk/src/fxedit/fxet_ap.cpp",
681 "fpdfsdk/src/fxedit/fxet_edit.cpp",
682 "fpdfsdk/src/fxedit/fxet_list.cpp",
683 "fpdfsdk/src/fxedit/fxet_module.cpp",
684 "fpdfsdk/src/fxedit/fxet_pageobjs.cpp",
685 ]
686 configs -= [ "//build/config/compiler:chromium_code" ]
687 configs += [
688 ":pdfium_config",
689 "//build/config/compiler:no_chromium_code",
690 ]
691}
692
693static_library("pdfwindow") {
694 sources = [
695 "fpdfsdk/include/pdfwindow/IPDFWindow.h",
696 "fpdfsdk/include/pdfwindow/PDFWindow.h",
697 "fpdfsdk/include/pdfwindow/PWL_Button.h",
698 "fpdfsdk/include/pdfwindow/PWL_Caret.h",
699 "fpdfsdk/include/pdfwindow/PWL_ComboBox.h",
700 "fpdfsdk/include/pdfwindow/PWL_Edit.h",
701 "fpdfsdk/include/pdfwindow/PWL_EditCtrl.h",
702 "fpdfsdk/include/pdfwindow/PWL_FontMap.h",
703 "fpdfsdk/include/pdfwindow/PWL_Icon.h",
704 "fpdfsdk/include/pdfwindow/PWL_IconList.h",
705 "fpdfsdk/include/pdfwindow/PWL_Label.h",
706 "fpdfsdk/include/pdfwindow/PWL_ListBox.h",
707 "fpdfsdk/include/pdfwindow/PWL_ListCtrl.h",
708 "fpdfsdk/include/pdfwindow/PWL_Note.h",
709 "fpdfsdk/include/pdfwindow/PWL_ScrollBar.h",
710 "fpdfsdk/include/pdfwindow/PWL_Signature.h",
711 "fpdfsdk/include/pdfwindow/PWL_SpecialButton.h",
712 "fpdfsdk/include/pdfwindow/PWL_Utils.h",
713 "fpdfsdk/include/pdfwindow/PWL_Wnd.h",
714 "fpdfsdk/src/pdfwindow/PWL_Button.cpp",
715 "fpdfsdk/src/pdfwindow/PWL_Caret.cpp",
716 "fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp",
717 "fpdfsdk/src/pdfwindow/PWL_Edit.cpp",
718 "fpdfsdk/src/pdfwindow/PWL_EditCtrl.cpp",
719 "fpdfsdk/src/pdfwindow/PWL_FontMap.cpp",
720 "fpdfsdk/src/pdfwindow/PWL_Icon.cpp",
721 "fpdfsdk/src/pdfwindow/PWL_IconList.cpp",
722 "fpdfsdk/src/pdfwindow/PWL_Label.cpp",
723 "fpdfsdk/src/pdfwindow/PWL_ListBox.cpp",
724 "fpdfsdk/src/pdfwindow/PWL_ListCtrl.cpp",
725 "fpdfsdk/src/pdfwindow/PWL_Note.cpp",
726 "fpdfsdk/src/pdfwindow/PWL_ScrollBar.cpp",
727 "fpdfsdk/src/pdfwindow/PWL_Signature.cpp",
728 "fpdfsdk/src/pdfwindow/PWL_SpecialButton.cpp",
729 "fpdfsdk/src/pdfwindow/PWL_Utils.cpp",
730 "fpdfsdk/src/pdfwindow/PWL_Wnd.cpp",
731 ]
732 configs -= [ "//build/config/compiler:chromium_code" ]
733 configs += [
734 ":pdfium_config",
735 "//build/config/compiler:no_chromium_code",
736 ]
737}
738
739static_library("javascript") {
740 sources = [
741 "fpdfsdk/include/javascript/Consts.h",
742 "fpdfsdk/include/javascript/Document.h",
743 "fpdfsdk/include/javascript/Field.h",
744 "fpdfsdk/include/javascript/IJavaScript.h",
745 "fpdfsdk/include/javascript/Icon.h",
746 "fpdfsdk/include/javascript/JS_Context.h",
747 "fpdfsdk/include/javascript/JS_Define.h",
748 "fpdfsdk/include/javascript/JS_EventHandler.h",
749 "fpdfsdk/include/javascript/JS_GlobalData.h",
750 "fpdfsdk/include/javascript/JS_Object.h",
751 "fpdfsdk/include/javascript/JS_Runtime.h",
752 "fpdfsdk/include/javascript/JS_Value.h",
753 "fpdfsdk/include/javascript/JavaScript.h",
754 "fpdfsdk/include/javascript/PublicMethods.h",
755 "fpdfsdk/include/javascript/app.h",
756 "fpdfsdk/include/javascript/color.h",
757 "fpdfsdk/include/javascript/console.h",
758 "fpdfsdk/include/javascript/event.h",
759 "fpdfsdk/include/javascript/global.h",
760 "fpdfsdk/include/javascript/report.h",
761 "fpdfsdk/include/javascript/resource.h",
762 "fpdfsdk/include/javascript/util.h",
763 "fpdfsdk/src/javascript/Consts.cpp",
764 "fpdfsdk/src/javascript/Document.cpp",
765 "fpdfsdk/src/javascript/Field.cpp",
766 "fpdfsdk/src/javascript/Icon.cpp",
767 "fpdfsdk/src/javascript/JS_Context.cpp",
768 "fpdfsdk/src/javascript/JS_EventHandler.cpp",
769 "fpdfsdk/src/javascript/JS_GlobalData.cpp",
770 "fpdfsdk/src/javascript/JS_Object.cpp",
771 "fpdfsdk/src/javascript/JS_Runtime.cpp",
772 "fpdfsdk/src/javascript/JS_Value.cpp",
773 "fpdfsdk/src/javascript/PublicMethods.cpp",
774 "fpdfsdk/src/javascript/app.cpp",
775 "fpdfsdk/src/javascript/color.cpp",
776 "fpdfsdk/src/javascript/console.cpp",
777 "fpdfsdk/src/javascript/event.cpp",
778 "fpdfsdk/src/javascript/global.cpp",
779 "fpdfsdk/src/javascript/report.cpp",
780 "fpdfsdk/src/javascript/resource.cpp",
781 "fpdfsdk/src/javascript/util.cpp",
782 ]
783
784 configs -= [ "//build/config/compiler:chromium_code" ]
785 configs += [
786 ":pdfium_config",
787 "//build/config/compiler:no_chromium_code",
788 ]
789 include_dirs = [
790 "//v8",
791 "//v8/include",
792 ]
793
794 public_deps = [
795 "//v8",
796 ]
797}
798
799static_library("jsapi") {
800 sources = [
801 "fpdfsdk/include/jsapi/fxjs_v8.h",
802 "fpdfsdk/src/jsapi/fxjs_v8.cpp",
803 ]
804
805 configs -= [ "//build/config/compiler:chromium_code" ]
806 configs += [
807 ":pdfium_config",
808 "//build/config/compiler:no_chromium_code",
809 ]
810 include_dirs = [
811 "//v8",
812 "//v8/include",
813 ]
814
815 public_deps = [
816 "//v8",
817 ]
818}
819
820static_library("formfiller") {
821 sources = [
822 "fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h",
823 "fpdfsdk/include/formfiller/FFL_CheckBox.h",
824 "fpdfsdk/include/formfiller/FFL_ComboBox.h",
825 "fpdfsdk/include/formfiller/FFL_FormFiller.h",
826 "fpdfsdk/include/formfiller/FFL_IFormFiller.h",
827 "fpdfsdk/include/formfiller/FFL_ListBox.h",
828 "fpdfsdk/include/formfiller/FFL_Notify.h",
829 "fpdfsdk/include/formfiller/FFL_PushButton.h",
830 "fpdfsdk/include/formfiller/FFL_RadioButton.h",
831 "fpdfsdk/include/formfiller/FFL_TextField.h",
832 "fpdfsdk/include/formfiller/FFL_Utils.h",
833 "fpdfsdk/include/formfiller/FormFiller.h",
834 "fpdfsdk/src/formfiller/FFL_CBA_Fontmap.cpp",
835 "fpdfsdk/src/formfiller/FFL_CheckBox.cpp",
836 "fpdfsdk/src/formfiller/FFL_ComboBox.cpp",
837 "fpdfsdk/src/formfiller/FFL_FormFiller.cpp",
838 "fpdfsdk/src/formfiller/FFL_IFormFiller.cpp",
839 "fpdfsdk/src/formfiller/FFL_ListBox.cpp",
840 "fpdfsdk/src/formfiller/FFL_Notify.cpp",
841 "fpdfsdk/src/formfiller/FFL_PushButton.cpp",
842 "fpdfsdk/src/formfiller/FFL_RadioButton.cpp",
843 "fpdfsdk/src/formfiller/FFL_TextField.cpp",
844 "fpdfsdk/src/formfiller/FFL_Utils.cpp",
845 ]
846 configs -= [ "//build/config/compiler:chromium_code" ]
847 configs += [
848 ":pdfium_config",
849 "//build/config/compiler:no_chromium_code",
850 ]
851}
852
853test("pdfium_unittests") {
854 sources = [
855 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp",
856 "core/src/fxcrt/fx_basic_bstring_unittest.cpp",
857 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp",
858 "core/src/fxcrt/fx_basic_wstring_unittest.cpp",
859 "testing/fx_string_testhelpers.cpp",
860 "testing/fx_string_testhelpers.h",
861 ]
862 deps = [
863 "//testing/gtest",
864 "//testing/gtest:gtest_main",
865 ":pdfium",
866 ]
867 include_dirs = [ "." ]
868 configs -= [ "//build/config/compiler:chromium_code" ]
869 configs += [
870 ":pdfium_config",
871 "//build/config/compiler:no_chromium_code",
872 ]
873}
874
875test("pdfium_embeddertests") {
876 sources = [
877 "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_embeddertest.cpp",
878 "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser_embeddertest.cpp",
879 "fpdfsdk/src/fpdf_dataavail_embeddertest.cpp",
880 "fpdfsdk/src/fpdfdoc_embeddertest.cpp",
881 "fpdfsdk/src/fpdfformfill_embeddertest.cpp",
882 "fpdfsdk/src/fpdftext_embeddertest.cpp",
883 "fpdfsdk/src/fpdfview_c_api_test.c",
884 "fpdfsdk/src/fpdfview_c_api_test.h",
885 "fpdfsdk/src/fpdfview_embeddertest.cpp",
886 "testing/embedder_test.cpp",
887 "testing/embedder_test.h",
888 "testing/embedder_test_mock_delegate.h",
889 "testing/embedder_test_timer_handling_delegate.h",
890 "testing/fx_string_testhelpers.cpp",
891 "testing/fx_string_testhelpers.h",
892 ]
893 deps = [
894 "//testing/gmock",
895 "//testing/gtest",
896 "//v8:v8_libplatform",
897 ":pdfium",
898 ]
899 include_dirs = [
900 "//v8",
901 "//v8/include",
902 "."
903 ]
904 configs -= [ "//build/config/compiler:chromium_code" ]
905 configs += [
906 ":pdfium_config",
907 "//build/config/compiler:no_chromium_code",
908 ]
909}