blob: 8007012a48c4ba704383f9760df74f5f622427eb [file] [log] [blame]
Tom Sepezb5451592016-02-22 16:48:02 -08001# Copyright 2016 The Chromium Authors. All rights reserved.
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -07002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Jochen Eisinger7ed503d2015-12-10 14:38:06 +01005import("//build_overrides/v8.gni")
Tom Sepeza32f7602015-01-15 09:34:34 -08006import("//testing/test.gni")
Tom Sepeza8a39e22015-10-12 15:47:07 -07007import("pdfium.gni")
John Abd-El-Malekef4dce42015-02-02 16:52:07 -08008
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -07009config("pdfium_config") {
10 cflags = []
Oliver Changcec3f682015-11-05 16:00:40 -080011 include_dirs = [
Lei Zhang8241df72015-11-06 14:38:48 -080012 ".",
Oliver Changcec3f682015-11-05 16:00:40 -080013 "third_party/freetype/include",
14 "third_party/freetype/include/freetype",
15 ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -070016 defines = [
John Abd-El-Malekef4dce42015-02-02 16:52:07 -080017 "OPJ_STATIC",
John Abd-El-Malek385729b2015-02-06 15:51:11 -080018 "PNG_PREFIX",
John Abd-El-Malek385729b2015-02-06 15:51:11 -080019 "PNG_USE_READ_MACROS",
Jochen Eisinger90a41812015-05-20 10:49:45 +020020 "V8_DEPRECATION_WARNINGS",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -070021 ]
22
23 if (pdf_use_skia) {
24 defines += [ "_SKIA_SUPPORT_" ]
25 }
26
Tom Sepez452b4f32015-10-13 09:27:27 -070027 if (pdf_enable_v8) {
28 defines += [ "PDF_ENABLE_V8" ]
29 }
30
Tom Sepeza8a39e22015-10-12 15:47:07 -070031 if (pdf_enable_xfa) {
32 defines += [ "PDF_ENABLE_XFA" ]
33 }
34
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -070035 if (is_linux) {
Tom Sepez25d5be62015-06-18 17:44:29 -070036 if (current_cpu == "x64") {
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -070037 defines += [ "_FX_CPU_=_FX_X64_" ]
38 cflags += [ "-fPIC" ]
Tom Sepez25d5be62015-06-18 17:44:29 -070039 } else if (current_cpu == "x86") {
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -070040 defines += [ "_FX_CPU_=_FX_X86_" ]
41 }
42 }
43
44 if (is_win) {
ochange5984e92016-04-05 14:41:25 -070045 cflags += [
46 "/wd4267",
47 "/wd4701",
48 ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -070049 }
Lei Zhang476ac132015-11-05 20:07:27 -080050
Tom Sepez34209092016-03-18 09:00:33 -070051 if (is_clang || is_posix) {
Lei Zhang476ac132015-11-05 20:07:27 -080052 # TODO(thestig): Fix all instances, remove this, pdfium:29
53 cflags += [ "-Wno-sign-compare" ]
54 }
Tom Sepez34209092016-03-18 09:00:33 -070055
56 if (is_posix && !is_clang) { # When GCC.
57 cflags += [ "-Wno-error=strict-overflow" ]
58 }
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -070059}
60
61static_library("pdfium") {
62 sources = [
Dan Sinclairf766ad22016-03-14 13:51:24 -040063 "fpdfsdk/fpdf_dataavail.cpp",
64 "fpdfsdk/fpdf_ext.cpp",
65 "fpdfsdk/fpdf_flatten.cpp",
66 "fpdfsdk/fpdf_progressive.cpp",
67 "fpdfsdk/fpdf_searchex.cpp",
68 "fpdfsdk/fpdf_sysfontinfo.cpp",
69 "fpdfsdk/fpdf_transformpage.cpp",
70 "fpdfsdk/fpdfdoc.cpp",
71 "fpdfsdk/fpdfeditimg.cpp",
72 "fpdfsdk/fpdfeditpage.cpp",
73 "fpdfsdk/fpdfformfill.cpp",
74 "fpdfsdk/fpdfppo.cpp",
75 "fpdfsdk/fpdfsave.cpp",
76 "fpdfsdk/fpdftext.cpp",
77 "fpdfsdk/fpdfview.cpp",
78 "fpdfsdk/fsdk_actionhandler.cpp",
79 "fpdfsdk/fsdk_annothandler.cpp",
80 "fpdfsdk/fsdk_baseannot.cpp",
81 "fpdfsdk/fsdk_baseform.cpp",
82 "fpdfsdk/fsdk_mgr.cpp",
83 "fpdfsdk/fsdk_rendercontext.cpp",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -070084 "fpdfsdk/include/fsdk_actionhandler.h",
85 "fpdfsdk/include/fsdk_annothandler.h",
86 "fpdfsdk/include/fsdk_baseannot.h",
87 "fpdfsdk/include/fsdk_baseform.h",
Tom Sepez1ed8a212015-05-11 15:25:39 -070088 "public/fpdf_dataavail.h",
89 "public/fpdf_doc.h",
90 "public/fpdf_edit.h",
91 "public/fpdf_ext.h",
92 "public/fpdf_flatten.h",
93 "public/fpdf_formfill.h",
94 "public/fpdf_fwlevent.h",
95 "public/fpdf_ppo.h",
96 "public/fpdf_progressive.h",
97 "public/fpdf_save.h",
98 "public/fpdf_searchex.h",
99 "public/fpdf_sysfontinfo.h",
100 "public/fpdf_text.h",
101 "public/fpdf_transformpage.h",
102 "public/fpdfview.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700103 ]
104
105 libs = []
Lei Zhang476ac132015-11-05 20:07:27 -0800106 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700107
108 deps = [
109 ":fdrm",
110 ":formfiller",
111 ":fpdfapi",
112 ":fpdfdoc",
113 ":fpdftext",
114 ":fxcodec",
115 ":fxcrt",
116 ":fxedit",
117 ":fxge",
118 ":javascript",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700119 ":pdfwindow",
Dan Sinclairfffc9632016-03-08 08:57:05 -0500120 "third_party:bigint",
121 "third_party:pdfium_base",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700122 ]
123
Tom Sepeza8a39e22015-10-12 15:47:07 -0700124 if (pdf_enable_xfa) {
Tom Sepezb5451592016-02-22 16:48:02 -0800125 deps += [ ":fpdfxfa" ]
Tom Sepeza8a39e22015-10-12 15:47:07 -0700126 }
127
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700128 if (is_win) {
Dan Sinclairbc6c6722015-10-22 14:58:54 -0400129 libs += [
130 "advapi32.lib",
131 "gdi32.lib",
132 "user32.lib",
133 ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700134 }
135
136 if (is_mac) {
Dan Sinclairbc6c6722015-10-22 14:58:54 -0400137 libs += [
138 "AppKit.framework",
139 "CoreFoundation.framework",
140 ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700141 }
John Abd-El-Malekef4dce42015-02-02 16:52:07 -0800142
Tom Sepez0dfd0302015-10-12 15:38:22 -0700143 if (pdfium_bundle_freetype) {
144 deps += [ "third_party:fx_freetype" ]
John Abd-El-Malekef4dce42015-02-02 16:52:07 -0800145 } else {
146 libs += [ "freetype" ]
147 }
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700148}
149
Tom Sepezd831dc72015-10-19 16:04:22 -0700150source_set("test_support") {
151 testonly = true
152 sources = [
153 "testing/fx_string_testhelpers.cpp",
154 "testing/fx_string_testhelpers.h",
155 "testing/test_support.cpp",
156 "testing/test_support.h",
Oliver Changd46f1c82015-11-12 22:03:10 -0800157 "testing/utils/path_service.cpp",
Tom Sepezd831dc72015-10-19 16:04:22 -0700158 ]
159 deps = [
Dan Sinclairfffc9632016-03-08 08:57:05 -0500160 ":pdfium",
Tom Sepezd831dc72015-10-19 16:04:22 -0700161 "//testing/gmock",
162 "//testing/gtest",
Tom Sepezd831dc72015-10-19 16:04:22 -0700163 ]
Lei Zhang8241df72015-11-06 14:38:48 -0800164 include_dirs = []
Tom Sepezd831dc72015-10-19 16:04:22 -0700165 if (pdf_enable_v8) {
166 deps += [
167 "//v8",
168 "//v8:v8_libplatform",
169 ]
170 include_dirs += [
171 "//v8",
172 "//v8/include",
173 ]
Jochen Eisinger7ed503d2015-12-10 14:38:06 +0100174 configs += [ "//v8:external_startup_data" ]
Tom Sepezd831dc72015-10-19 16:04:22 -0700175 }
Lei Zhang476ac132015-11-05 20:07:27 -0800176 configs += [ ":pdfium_config" ]
Tom Sepezd831dc72015-10-19 16:04:22 -0700177}
178
179# Targets below this are only visible within this file (and to the
180# top-level gn_visibility target used to help gn_all build everything).
181visibility = [
182 ":*",
183 "//:gn_visibility",
184]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700185
186static_library("fdrm") {
187 sources = [
Dan Sinclair764ec512016-03-14 13:35:12 -0400188 "core/fdrm/crypto/fx_crypt.cpp",
189 "core/fdrm/crypto/fx_crypt_aes.cpp",
190 "core/fdrm/crypto/fx_crypt_sha.cpp",
Dan Sinclair13ee55a2016-03-14 15:56:00 -0400191 "core/fdrm/crypto/include/fx_crypt.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700192 ]
Lei Zhang476ac132015-11-05 20:07:27 -0800193 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700194}
195
196static_library("fpdfdoc") {
197 sources = [
dsinclairc7a73492016-04-05 12:01:42 -0700198 "core/fpdfdoc/cpdf_variabletext.cpp",
dsinclair777b3332016-03-31 20:03:08 -0700199 "core/fpdfdoc/cpvt_color.cpp",
200 "core/fpdfdoc/cpvt_color.h",
201 "core/fpdfdoc/cpvt_dash.h",
dsinclairc7a73492016-04-05 12:01:42 -0700202 "core/fpdfdoc/cpvt_floatrect.h",
dsinclair777b3332016-03-31 20:03:08 -0700203 "core/fpdfdoc/cpvt_fontmap.cpp",
204 "core/fpdfdoc/cpvt_fontmap.h",
205 "core/fpdfdoc/cpvt_generateap.cpp",
206 "core/fpdfdoc/cpvt_generateap.h",
dsinclairc7a73492016-04-05 12:01:42 -0700207 "core/fpdfdoc/cpvt_lineinfo.h",
208 "core/fpdfdoc/cpvt_sectioninfo.h",
209 "core/fpdfdoc/cpvt_wordinfo.h",
210 "core/fpdfdoc/csection.h",
211 "core/fpdfdoc/ctypeset.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400212 "core/fpdfdoc/doc_action.cpp",
213 "core/fpdfdoc/doc_annot.cpp",
Dan Sinclair764ec512016-03-14 13:35:12 -0400214 "core/fpdfdoc/doc_basic.cpp",
215 "core/fpdfdoc/doc_bookmark.cpp",
216 "core/fpdfdoc/doc_form.cpp",
217 "core/fpdfdoc/doc_formcontrol.cpp",
218 "core/fpdfdoc/doc_formfield.cpp",
219 "core/fpdfdoc/doc_link.cpp",
220 "core/fpdfdoc/doc_metadata.cpp",
221 "core/fpdfdoc/doc_ocg.cpp",
222 "core/fpdfdoc/doc_tagged.cpp",
223 "core/fpdfdoc/doc_utils.cpp",
224 "core/fpdfdoc/doc_utils.h",
225 "core/fpdfdoc/doc_viewerPreferences.cpp",
226 "core/fpdfdoc/doc_vt.cpp",
dsinclairc7a73492016-04-05 12:01:42 -0700227 "core/fpdfdoc/include/cpdf_variabletext.h",
228 "core/fpdfdoc/include/cpvt_line.h",
229 "core/fpdfdoc/include/cpvt_secprops.h",
230 "core/fpdfdoc/include/cpvt_section.h",
231 "core/fpdfdoc/include/cpvt_word.h",
232 "core/fpdfdoc/include/cpvt_wordplace.h",
233 "core/fpdfdoc/include/cpvt_wordprops.h",
234 "core/fpdfdoc/include/cpvt_wordrange.h",
dsinclaire530fb72016-04-06 12:09:37 -0700235 "core/fpdfdoc/include/fpdf_doc.h",
236 "core/fpdfdoc/include/fpdf_tagged.h",
dsinclair777b3332016-03-31 20:03:08 -0700237 "core/fpdfdoc/ipvt_fontmap.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400238 "core/fpdfdoc/pdf_vt.h",
239 "core/fpdfdoc/tagged_int.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700240 ]
Lei Zhang476ac132015-11-05 20:07:27 -0800241 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700242}
243
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700244static_library("fpdfapi") {
245 sources = [
Dan Sinclair764ec512016-03-14 13:35:12 -0400246 "core/fpdfapi/fpdf_basic_module.cpp",
247 "core/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp",
248 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp",
249 "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp",
250 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp",
251 "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp",
252 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp",
253 "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-V_0.cpp",
254 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-H_0.cpp",
255 "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-V_0.cpp",
256 "core/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-H_5.cpp",
257 "core/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-V_5.cpp",
258 "core/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-H_3.cpp",
259 "core/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-V_3.cpp",
260 "core/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UTF16-H_0.cpp",
261 "core/fpdfapi/fpdf_cmaps/CNS1/cmaps_cns1.cpp",
262 "core/fpdfapi/fpdf_cmaps/GB1/Adobe-GB1-UCS2_5.cpp",
263 "core/fpdfapi/fpdf_cmaps/GB1/GB-EUC-H_0.cpp",
264 "core/fpdfapi/fpdf_cmaps/GB1/GB-EUC-V_0.cpp",
265 "core/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-H_2.cpp",
266 "core/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-V_2.cpp",
267 "core/fpdfapi/fpdf_cmaps/GB1/GBK2K-H_5.cpp",
268 "core/fpdfapi/fpdf_cmaps/GB1/GBK2K-V_5.cpp",
269 "core/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-H_2.cpp",
270 "core/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-V_2.cpp",
271 "core/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-H_0.cpp",
272 "core/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-V_0.cpp",
273 "core/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-H_4.cpp",
274 "core/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-V_4.cpp",
275 "core/fpdfapi/fpdf_cmaps/GB1/cmaps_gb1.cpp",
276 "core/fpdfapi/fpdf_cmaps/Japan1/83pv-RKSJ-H_1.cpp",
277 "core/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-H_2.cpp",
278 "core/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-V_2.cpp",
279 "core/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-H_2.cpp",
280 "core/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-V_2.cpp",
281 "core/fpdfapi/fpdf_cmaps/Japan1/90pv-RKSJ-H_1.cpp",
282 "core/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-H_1.cpp",
283 "core/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-V_1.cpp",
284 "core/fpdfapi/fpdf_cmaps/Japan1/Adobe-Japan1-UCS2_4.cpp",
285 "core/fpdfapi/fpdf_cmaps/Japan1/EUC-H_1.cpp",
286 "core/fpdfapi/fpdf_cmaps/Japan1/EUC-V_1.cpp",
287 "core/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-H_2.cpp",
288 "core/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-V_2.cpp",
289 "core/fpdfapi/fpdf_cmaps/Japan1/H_1.cpp",
290 "core/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-H_4.cpp",
291 "core/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-V_4.cpp",
292 "core/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-H_4.cpp",
293 "core/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-V_4.cpp",
294 "core/fpdfapi/fpdf_cmaps/Japan1/V_1.cpp",
295 "core/fpdfapi/fpdf_cmaps/Japan1/cmaps_japan1.cpp",
296 "core/fpdfapi/fpdf_cmaps/Korea1/Adobe-Korea1-UCS2_2.cpp",
297 "core/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-H_0.cpp",
298 "core/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-V_0.cpp",
299 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-H_1.cpp",
300 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-V_1.cpp",
301 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-H_1.cpp",
302 "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-V_1.cpp",
303 "core/fpdfapi/fpdf_cmaps/Korea1/KSCpc-EUC-H_0.cpp",
304 "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-H_1.cpp",
305 "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-V_1.cpp",
306 "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UTF16-H_0.cpp",
307 "core/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp",
308 "core/fpdfapi/fpdf_cmaps/cmap_int.h",
309 "core/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp",
Dan Sinclair455a4192016-03-16 09:48:56 -0400310 "core/fpdfapi/fpdf_edit/cpdf_pagecontentgenerator.cpp",
Dan Sinclair764ec512016-03-14 13:35:12 -0400311 "core/fpdfapi/fpdf_edit/editint.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400312 "core/fpdfapi/fpdf_edit/fpdf_edit_create.cpp",
313 "core/fpdfapi/fpdf_edit/fpdf_edit_doc.cpp",
Dan Sinclairaa403d32016-03-15 14:57:22 -0400314 "core/fpdfapi/fpdf_edit/include/cpdf_creator.h",
Dan Sinclair455a4192016-03-16 09:48:56 -0400315 "core/fpdfapi/fpdf_edit/include/cpdf_pagecontentgenerator.h",
dan sinclair61b2fc72016-03-23 19:21:44 -0400316 "core/fpdfapi/fpdf_font/cpdf_cidfont.cpp",
317 "core/fpdfapi/fpdf_font/cpdf_cidfont.h",
318 "core/fpdfapi/fpdf_font/cpdf_font.cpp",
319 "core/fpdfapi/fpdf_font/cpdf_fontencoding.cpp",
320 "core/fpdfapi/fpdf_font/cpdf_simplefont.cpp",
321 "core/fpdfapi/fpdf_font/cpdf_simplefont.h",
322 "core/fpdfapi/fpdf_font/cpdf_truetypefont.cpp",
323 "core/fpdfapi/fpdf_font/cpdf_truetypefont.h",
324 "core/fpdfapi/fpdf_font/cpdf_type1font.cpp",
325 "core/fpdfapi/fpdf_font/cpdf_type1font.h",
326 "core/fpdfapi/fpdf_font/cpdf_type3char.cpp",
327 "core/fpdfapi/fpdf_font/cpdf_type3char.h",
328 "core/fpdfapi/fpdf_font/cpdf_type3font.cpp",
329 "core/fpdfapi/fpdf_font/cpdf_type3font.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400330 "core/fpdfapi/fpdf_font/font_int.h",
331 "core/fpdfapi/fpdf_font/fpdf_font.cpp",
Dan Sinclair764ec512016-03-14 13:35:12 -0400332 "core/fpdfapi/fpdf_font/fpdf_font_cid.cpp",
dan sinclair61b2fc72016-03-23 19:21:44 -0400333 "core/fpdfapi/fpdf_font/include/cpdf_font.h",
334 "core/fpdfapi/fpdf_font/include/cpdf_fontencoding.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400335 "core/fpdfapi/fpdf_font/ttgsubtable.cpp",
336 "core/fpdfapi/fpdf_font/ttgsubtable.h",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400337 "core/fpdfapi/fpdf_page/cpdf_allstates.cpp",
338 "core/fpdfapi/fpdf_page/cpdf_allstates.h",
339 "core/fpdfapi/fpdf_page/cpdf_clippath.cpp",
340 "core/fpdfapi/fpdf_page/cpdf_clippathdata.cpp",
341 "core/fpdfapi/fpdf_page/cpdf_clippathdata.h",
dan sinclair61b2fc72016-03-23 19:21:44 -0400342 "core/fpdfapi/fpdf_page/cpdf_color.cpp",
343 "core/fpdfapi/fpdf_page/cpdf_colorspace.cpp",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400344 "core/fpdfapi/fpdf_page/cpdf_colorstate.cpp",
345 "core/fpdfapi/fpdf_page/cpdf_colorstate.h",
346 "core/fpdfapi/fpdf_page/cpdf_colorstatedata.cpp",
347 "core/fpdfapi/fpdf_page/cpdf_colorstatedata.h",
348 "core/fpdfapi/fpdf_page/cpdf_contentmark.cpp",
349 "core/fpdfapi/fpdf_page/cpdf_contentmark.h",
350 "core/fpdfapi/fpdf_page/cpdf_contentmarkdata.cpp",
351 "core/fpdfapi/fpdf_page/cpdf_contentmarkdata.h",
352 "core/fpdfapi/fpdf_page/cpdf_contentmarkitem.cpp",
353 "core/fpdfapi/fpdf_page/cpdf_contentmarkitem.h",
dan sinclair61b2fc72016-03-23 19:21:44 -0400354 "core/fpdfapi/fpdf_page/cpdf_countedobject.h",
Dan Sinclair455a4192016-03-16 09:48:56 -0400355 "core/fpdfapi/fpdf_page/cpdf_form.cpp",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400356 "core/fpdfapi/fpdf_page/cpdf_formobject.cpp",
357 "core/fpdfapi/fpdf_page/cpdf_generalstate.cpp",
358 "core/fpdfapi/fpdf_page/cpdf_generalstatedata.cpp",
359 "core/fpdfapi/fpdf_page/cpdf_graphicstates.cpp",
360 "core/fpdfapi/fpdf_page/cpdf_graphicstates.h",
361 "core/fpdfapi/fpdf_page/cpdf_graphstate.h",
dan sinclair61b2fc72016-03-23 19:21:44 -0400362 "core/fpdfapi/fpdf_page/cpdf_image.cpp",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400363 "core/fpdfapi/fpdf_page/cpdf_imageobject.cpp",
dan sinclair61b2fc72016-03-23 19:21:44 -0400364 "core/fpdfapi/fpdf_page/cpdf_meshstream.cpp",
365 "core/fpdfapi/fpdf_page/cpdf_meshstream.h",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400366 "core/fpdfapi/fpdf_page/cpdf_page.cpp",
367 "core/fpdfapi/fpdf_page/cpdf_pageobject.cpp",
Dan Sinclair455a4192016-03-16 09:48:56 -0400368 "core/fpdfapi/fpdf_page/cpdf_pageobjectholder.cpp",
369 "core/fpdfapi/fpdf_page/cpdf_pageobjectlist.cpp",
370 "core/fpdfapi/fpdf_page/cpdf_pageobjectlist.h",
371 "core/fpdfapi/fpdf_page/cpdf_parseoptions.cpp",
372 "core/fpdfapi/fpdf_page/cpdf_parseoptions.h",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400373 "core/fpdfapi/fpdf_page/cpdf_pathobject.cpp",
dan sinclair61b2fc72016-03-23 19:21:44 -0400374 "core/fpdfapi/fpdf_page/cpdf_pattern.cpp",
375 "core/fpdfapi/fpdf_page/cpdf_pattern.h",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400376 "core/fpdfapi/fpdf_page/cpdf_shadingobject.cpp",
dan sinclair61b2fc72016-03-23 19:21:44 -0400377 "core/fpdfapi/fpdf_page/cpdf_shadingpattern.cpp",
378 "core/fpdfapi/fpdf_page/cpdf_shadingpattern.h",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400379 "core/fpdfapi/fpdf_page/cpdf_textobject.cpp",
380 "core/fpdfapi/fpdf_page/cpdf_textstate.cpp",
381 "core/fpdfapi/fpdf_page/cpdf_textstate.h",
382 "core/fpdfapi/fpdf_page/cpdf_textstatedata.cpp",
dan sinclair61b2fc72016-03-23 19:21:44 -0400383 "core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp",
384 "core/fpdfapi/fpdf_page/cpdf_tilingpattern.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400385 "core/fpdfapi/fpdf_page/fpdf_page_colors.cpp",
386 "core/fpdfapi/fpdf_page/fpdf_page_doc.cpp",
387 "core/fpdfapi/fpdf_page/fpdf_page_func.cpp",
Dan Sinclair764ec512016-03-14 13:35:12 -0400388 "core/fpdfapi/fpdf_page/fpdf_page_parser.cpp",
389 "core/fpdfapi/fpdf_page/fpdf_page_parser_old.cpp",
Dan Sinclair764ec512016-03-14 13:35:12 -0400390 "core/fpdfapi/fpdf_page/fpdf_page_pattern.cpp",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400391 "core/fpdfapi/fpdf_page/include/cpdf_clippath.h",
dan sinclair61b2fc72016-03-23 19:21:44 -0400392 "core/fpdfapi/fpdf_page/include/cpdf_color.h",
393 "core/fpdfapi/fpdf_page/include/cpdf_colorspace.h",
Dan Sinclair455a4192016-03-16 09:48:56 -0400394 "core/fpdfapi/fpdf_page/include/cpdf_form.h",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400395 "core/fpdfapi/fpdf_page/include/cpdf_formobject.h",
396 "core/fpdfapi/fpdf_page/include/cpdf_generalstate.h",
397 "core/fpdfapi/fpdf_page/include/cpdf_generalstatedata.h",
dan sinclair61b2fc72016-03-23 19:21:44 -0400398 "core/fpdfapi/fpdf_page/include/cpdf_image.h",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400399 "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h",
Dan Sinclair455a4192016-03-16 09:48:56 -0400400 "core/fpdfapi/fpdf_page/include/cpdf_page.h",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400401 "core/fpdfapi/fpdf_page/include/cpdf_pageobject.h",
Dan Sinclair455a4192016-03-16 09:48:56 -0400402 "core/fpdfapi/fpdf_page/include/cpdf_pageobjectholder.h",
Dan Sinclair584b1e62016-03-21 09:15:45 -0400403 "core/fpdfapi/fpdf_page/include/cpdf_path.h",
404 "core/fpdfapi/fpdf_page/include/cpdf_pathobject.h",
405 "core/fpdfapi/fpdf_page/include/cpdf_shadingobject.h",
406 "core/fpdfapi/fpdf_page/include/cpdf_textobject.h",
407 "core/fpdfapi/fpdf_page/include/cpdf_textstatedata.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400408 "core/fpdfapi/fpdf_page/pageint.h",
409 "core/fpdfapi/fpdf_parser/cfdf_document.cpp",
410 "core/fpdfapi/fpdf_parser/cpdf_array.cpp",
411 "core/fpdfapi/fpdf_parser/cpdf_boolean.cpp",
Dan Sinclairaa403d32016-03-15 14:57:22 -0400412 "core/fpdfapi/fpdf_parser/cpdf_boolean.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400413 "core/fpdfapi/fpdf_parser/cpdf_data_avail.cpp",
414 "core/fpdfapi/fpdf_parser/cpdf_data_avail.h",
415 "core/fpdfapi/fpdf_parser/cpdf_dictionary.cpp",
416 "core/fpdfapi/fpdf_parser/cpdf_document.cpp",
417 "core/fpdfapi/fpdf_parser/cpdf_hint_tables.cpp",
418 "core/fpdfapi/fpdf_parser/cpdf_hint_tables.h",
419 "core/fpdfapi/fpdf_parser/cpdf_indirect_object_holder.cpp",
420 "core/fpdfapi/fpdf_parser/cpdf_name.cpp",
421 "core/fpdfapi/fpdf_parser/cpdf_null.cpp",
Dan Sinclairaa403d32016-03-15 14:57:22 -0400422 "core/fpdfapi/fpdf_parser/cpdf_null.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400423 "core/fpdfapi/fpdf_parser/cpdf_number.cpp",
424 "core/fpdfapi/fpdf_parser/cpdf_object.cpp",
425 "core/fpdfapi/fpdf_parser/cpdf_parser.cpp",
426 "core/fpdfapi/fpdf_parser/cpdf_reference.cpp",
427 "core/fpdfapi/fpdf_parser/cpdf_simple_parser.cpp",
428 "core/fpdfapi/fpdf_parser/cpdf_standard_crypto_handler.cpp",
429 "core/fpdfapi/fpdf_parser/cpdf_standard_crypto_handler.h",
430 "core/fpdfapi/fpdf_parser/cpdf_standard_security_handler.cpp",
431 "core/fpdfapi/fpdf_parser/cpdf_standard_security_handler.h",
432 "core/fpdfapi/fpdf_parser/cpdf_stream.cpp",
Tom Sepez92bbb6f2016-03-15 09:33:58 -0700433 "core/fpdfapi/fpdf_parser/cpdf_stream_acc.cpp",
Dan Sinclair764ec512016-03-14 13:35:12 -0400434 "core/fpdfapi/fpdf_parser/cpdf_string.cpp",
435 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.cpp",
436 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h",
437 "core/fpdfapi/fpdf_parser/fpdf_parser_decode.cpp",
438 "core/fpdfapi/fpdf_parser/fpdf_parser_utility.cpp",
439 "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h",
Dan Sinclairaa403d32016-03-15 14:57:22 -0400440 "core/fpdfapi/fpdf_parser/include/cfdf_document.h",
441 "core/fpdfapi/fpdf_parser/include/cpdf_array.h",
442 "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h",
443 "core/fpdfapi/fpdf_parser/include/cpdf_document.h",
444 "core/fpdfapi/fpdf_parser/include/cpdf_indirect_object_holder.h",
445 "core/fpdfapi/fpdf_parser/include/cpdf_name.h",
446 "core/fpdfapi/fpdf_parser/include/cpdf_number.h",
447 "core/fpdfapi/fpdf_parser/include/cpdf_object.h",
448 "core/fpdfapi/fpdf_parser/include/cpdf_parser.h",
449 "core/fpdfapi/fpdf_parser/include/cpdf_reference.h",
450 "core/fpdfapi/fpdf_parser/include/cpdf_simple_parser.h",
451 "core/fpdfapi/fpdf_parser/include/cpdf_stream.h",
452 "core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h",
453 "core/fpdfapi/fpdf_parser/include/cpdf_string.h",
454 "core/fpdfapi/fpdf_parser/include/fpdf_parser_decode.h",
455 "core/fpdfapi/fpdf_parser/include/ipdf_data_avail.h",
456 "core/fpdfapi/fpdf_parser/ipdf_crypto_handler.h",
457 "core/fpdfapi/fpdf_parser/ipdf_occontext.cpp",
458 "core/fpdfapi/fpdf_parser/ipdf_occontext.h",
459 "core/fpdfapi/fpdf_parser/ipdf_security_handler.h",
460 "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400461 "core/fpdfapi/fpdf_render/fpdf_render.cpp",
462 "core/fpdfapi/fpdf_render/fpdf_render_cache.cpp",
463 "core/fpdfapi/fpdf_render/fpdf_render_image.cpp",
464 "core/fpdfapi/fpdf_render/fpdf_render_loadimage.cpp",
465 "core/fpdfapi/fpdf_render/fpdf_render_pattern.cpp",
466 "core/fpdfapi/fpdf_render/fpdf_render_text.cpp",
Dan Sinclairaa403d32016-03-15 14:57:22 -0400467 "core/fpdfapi/fpdf_render/include/cpdf_progressiverenderer.h",
468 "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h",
469 "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h",
470 "core/fpdfapi/fpdf_render/include/cpdf_textrenderer.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400471 "core/fpdfapi/fpdf_render/render_int.h",
Dan Sinclairaa403d32016-03-15 14:57:22 -0400472 "core/fpdfapi/include/cpdf_modulemgr.h",
473 "core/fpdfapi/ipdf_pagemodule.h",
474 "core/fpdfapi/ipdf_rendermodule.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700475 ]
Lei Zhang476ac132015-11-05 20:07:27 -0800476 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700477}
478
479static_library("fpdftext") {
480 sources = [
Dan Sinclair764ec512016-03-14 13:35:12 -0400481 "core/fpdftext/fpdf_text_int.cpp",
Tom Sepez6d6f1f42016-03-15 09:10:05 -0700482 "core/fpdftext/fpdf_text_int.h",
Dan Sinclair13ee55a2016-03-14 15:56:00 -0400483 "core/fpdftext/include/ipdf_linkextract.h",
484 "core/fpdftext/include/ipdf_textpage.h",
485 "core/fpdftext/include/ipdf_textpagefind.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400486 "core/fpdftext/text_int.h",
487 "core/fpdftext/unicodenormalization.cpp",
Tom Sepez6d6f1f42016-03-15 09:10:05 -0700488 "core/fpdftext/unicodenormalization.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400489 "core/fpdftext/unicodenormalizationdata.cpp",
490 "core/fpdftext/unicodenormalizationdata.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700491 ]
Lei Zhang476ac132015-11-05 20:07:27 -0800492 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700493}
494
495static_library("fxcodec") {
Tom Sepez8be55752015-06-17 11:05:02 -0700496 deps = [
497 "third_party:fx_lcms2",
Tom Sepez6fd997b2015-06-18 17:51:37 -0700498 "third_party:fx_libopenjpeg",
Tom Sepez6f93de52015-06-19 12:57:10 -0700499 "third_party:fx_zlib",
Lei Zhang8241df72015-11-06 14:38:48 -0800500
501 # This is a generic JPEG library dependency.
502 "//third_party:jpeg",
Tom Sepez8be55752015-06-17 11:05:02 -0700503 ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700504 sources = [
Dan Sinclair764ec512016-03-14 13:35:12 -0400505 "core/fxcodec/codec/codec_int.h",
506 "core/fxcodec/codec/fx_codec.cpp",
507 "core/fxcodec/codec/fx_codec_fax.cpp",
508 "core/fxcodec/codec/fx_codec_flate.cpp",
509 "core/fxcodec/codec/fx_codec_icc.cpp",
510 "core/fxcodec/codec/fx_codec_jbig.cpp",
511 "core/fxcodec/codec/fx_codec_jpeg.cpp",
512 "core/fxcodec/codec/fx_codec_jpx_opj.cpp",
513 "core/fxcodec/jbig2/JBig2_ArithDecoder.cpp",
514 "core/fxcodec/jbig2/JBig2_ArithDecoder.h",
515 "core/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp",
516 "core/fxcodec/jbig2/JBig2_ArithIntDecoder.h",
517 "core/fxcodec/jbig2/JBig2_BitStream.cpp",
518 "core/fxcodec/jbig2/JBig2_BitStream.h",
519 "core/fxcodec/jbig2/JBig2_Context.cpp",
520 "core/fxcodec/jbig2/JBig2_Context.h",
521 "core/fxcodec/jbig2/JBig2_Define.h",
522 "core/fxcodec/jbig2/JBig2_GrdProc.cpp",
523 "core/fxcodec/jbig2/JBig2_GrdProc.h",
524 "core/fxcodec/jbig2/JBig2_GrrdProc.cpp",
525 "core/fxcodec/jbig2/JBig2_GrrdProc.h",
526 "core/fxcodec/jbig2/JBig2_GsidProc.cpp",
527 "core/fxcodec/jbig2/JBig2_GsidProc.h",
528 "core/fxcodec/jbig2/JBig2_HtrdProc.cpp",
529 "core/fxcodec/jbig2/JBig2_HtrdProc.h",
530 "core/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp",
531 "core/fxcodec/jbig2/JBig2_HuffmanDecoder.h",
532 "core/fxcodec/jbig2/JBig2_HuffmanTable.cpp",
533 "core/fxcodec/jbig2/JBig2_HuffmanTable.h",
Tom Sepez4161c5c2016-03-21 12:26:54 -0700534 "core/fxcodec/jbig2/JBig2_HuffmanTable_Standard.cpp",
Dan Sinclair764ec512016-03-14 13:35:12 -0400535 "core/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h",
536 "core/fxcodec/jbig2/JBig2_Image.cpp",
537 "core/fxcodec/jbig2/JBig2_Image.h",
538 "core/fxcodec/jbig2/JBig2_List.h",
539 "core/fxcodec/jbig2/JBig2_Page.h",
540 "core/fxcodec/jbig2/JBig2_PatternDict.cpp",
541 "core/fxcodec/jbig2/JBig2_PatternDict.h",
542 "core/fxcodec/jbig2/JBig2_PddProc.cpp",
543 "core/fxcodec/jbig2/JBig2_PddProc.h",
544 "core/fxcodec/jbig2/JBig2_SddProc.cpp",
545 "core/fxcodec/jbig2/JBig2_SddProc.h",
546 "core/fxcodec/jbig2/JBig2_Segment.cpp",
547 "core/fxcodec/jbig2/JBig2_Segment.h",
548 "core/fxcodec/jbig2/JBig2_SymbolDict.cpp",
549 "core/fxcodec/jbig2/JBig2_SymbolDict.h",
550 "core/fxcodec/jbig2/JBig2_TrdProc.cpp",
551 "core/fxcodec/jbig2/JBig2_TrdProc.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700552 "core/include/fxcodec/fx_codec.h",
553 "core/include/fxcodec/fx_codec_def.h",
Tom Sepezb2552022015-07-14 16:43:54 -0700554 "core/include/fxcodec/fx_codec_flate.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700555 ]
Lei Zhang8241df72015-11-06 14:38:48 -0800556 include_dirs = []
Tom Sepezd2e023b2015-12-08 14:36:16 -0800557 if (pdf_enable_xfa) {
558 sources += [
Dan Sinclair764ec512016-03-14 13:35:12 -0400559 "core/fxcodec/codec/fx_codec_bmp.cpp",
560 "core/fxcodec/codec/fx_codec_gif.cpp",
561 "core/fxcodec/codec/fx_codec_png.cpp",
562 "core/fxcodec/codec/fx_codec_progress.cpp",
563 "core/fxcodec/codec/fx_codec_progress.h",
564 "core/fxcodec/codec/fx_codec_tiff.cpp",
565 "core/fxcodec/lbmp/fx_bmp.cpp",
566 "core/fxcodec/lbmp/fx_bmp.h",
567 "core/fxcodec/lgif/fx_gif.cpp",
568 "core/fxcodec/lgif/fx_gif.h",
Tom Sepezd2e023b2015-12-08 14:36:16 -0800569 ]
570 deps += [
571 "third_party:fx_lpng",
572 "third_party:fx_tiff",
573 ]
574 }
John Abd-El-Malekdef5c7d2014-06-09 16:07:18 -0700575 if (is_posix) {
Dan Sinclair764ec512016-03-14 13:35:12 -0400576 # core/fxcodec/fx_libopenjpeg/src/fx_mct.c does an pointer-to-int
John Abd-El-Malekdef5c7d2014-06-09 16:07:18 -0700577 # conversion to check that an address is 16-bit aligned (benign).
578 cflags_c = [ "-Wno-pointer-to-int-cast" ]
579 }
Lei Zhang476ac132015-11-05 20:07:27 -0800580 configs += [ ":pdfium_config" ]
Dan Sinclairbc6c6722015-10-22 14:58:54 -0400581}
582
583config("fxge_warnings") {
584 if (is_clang) {
585 cflags = [
586 # http://code.google.com/p/pdfium/issues/detail?id=188
587 "-Wno-switch",
588 ]
589 }
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700590}
591
592static_library("fxcrt") {
593 sources = [
tsepez6fb598b2016-04-05 12:40:47 -0700594 "core/fxcrt/cfx_string_data_template.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400595 "core/fxcrt/extension.h",
596 "core/fxcrt/fx_basic_array.cpp",
597 "core/fxcrt/fx_basic_bstring.cpp",
598 "core/fxcrt/fx_basic_buffer.cpp",
599 "core/fxcrt/fx_basic_coords.cpp",
600 "core/fxcrt/fx_basic_gcc.cpp",
601 "core/fxcrt/fx_basic_list.cpp",
602 "core/fxcrt/fx_basic_memmgr.cpp",
603 "core/fxcrt/fx_basic_plex.cpp",
604 "core/fxcrt/fx_basic_utf.cpp",
605 "core/fxcrt/fx_basic_util.cpp",
606 "core/fxcrt/fx_basic_wstring.cpp",
607 "core/fxcrt/fx_bidi.cpp",
Dan Sinclaira8a28e02016-03-23 15:41:39 -0400608 "core/fxcrt/fx_bidi.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400609 "core/fxcrt/fx_extension.cpp",
610 "core/fxcrt/fx_ucddata.cpp",
611 "core/fxcrt/fx_unicode.cpp",
612 "core/fxcrt/fx_xml_composer.cpp",
613 "core/fxcrt/fx_xml_parser.cpp",
614 "core/fxcrt/fxcrt_platforms.cpp",
615 "core/fxcrt/fxcrt_platforms.h",
616 "core/fxcrt/fxcrt_posix.cpp",
617 "core/fxcrt/fxcrt_posix.h",
618 "core/fxcrt/fxcrt_stream.cpp",
619 "core/fxcrt/fxcrt_windows.cpp",
620 "core/fxcrt/fxcrt_windows.h",
tsepez602aebc2016-03-29 15:04:21 -0700621 "core/fxcrt/include/cfx_retain_ptr.h",
Dan Sinclaira8a28e02016-03-23 15:41:39 -0400622 "core/fxcrt/include/fx_basic.h",
623 "core/fxcrt/include/fx_coordinates.h",
624 "core/fxcrt/include/fx_ext.h",
625 "core/fxcrt/include/fx_memory.h",
626 "core/fxcrt/include/fx_safe_types.h",
627 "core/fxcrt/include/fx_stream.h",
628 "core/fxcrt/include/fx_string.h",
629 "core/fxcrt/include/fx_system.h",
630 "core/fxcrt/include/fx_ucd.h",
631 "core/fxcrt/include/fx_xml.h",
Dan Sinclair764ec512016-03-14 13:35:12 -0400632 "core/fxcrt/plex.h",
633 "core/fxcrt/xml_int.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700634 ]
Tom Sepezd2e023b2015-12-08 14:36:16 -0800635 if (pdf_enable_xfa) {
636 sources += [
Dan Sinclair764ec512016-03-14 13:35:12 -0400637 "core/fxcrt/fx_arabic.cpp",
638 "core/fxcrt/fx_arabic.h",
639 "core/fxcrt/fx_basic_maps.cpp",
Dan Sinclaira8a28e02016-03-23 15:41:39 -0400640 "core/fxcrt/include/fx_arb.h",
Tom Sepezd2e023b2015-12-08 14:36:16 -0800641 ]
642 }
Lei Zhang476ac132015-11-05 20:07:27 -0800643 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700644}
645
646static_library("fxge") {
Tom Sepezb7d358b2015-06-17 10:01:00 -0700647 deps = [
648 "third_party:fx_agg",
649 ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700650 sources = [
Dan Sinclair764ec512016-03-14 13:35:12 -0400651 "core/fxge/agg/fx_agg_driver.cpp",
652 "core/fxge/agg/fx_agg_driver.h",
653 "core/fxge/android/fpf_skiafont.cpp",
654 "core/fxge/android/fpf_skiafont.h",
655 "core/fxge/android/fpf_skiafontmgr.cpp",
656 "core/fxge/android/fpf_skiafontmgr.h",
657 "core/fxge/android/fpf_skiamodule.cpp",
658 "core/fxge/android/fpf_skiamodule.h",
659 "core/fxge/android/fx_android_font.cpp",
660 "core/fxge/android/fx_android_font.h",
661 "core/fxge/android/fx_android_imp.cpp",
662 "core/fxge/apple/apple_int.h",
663 "core/fxge/apple/fx_apple_platform.cpp",
664 "core/fxge/apple/fx_mac_imp.cpp",
665 "core/fxge/apple/fx_quartz_device.cpp",
666 "core/fxge/dib/dib_int.h",
667 "core/fxge/dib/fx_dib_composite.cpp",
668 "core/fxge/dib/fx_dib_convert.cpp",
669 "core/fxge/dib/fx_dib_engine.cpp",
670 "core/fxge/dib/fx_dib_main.cpp",
671 "core/fxge/dib/fx_dib_transform.cpp",
672 "core/fxge/fontdata/chromefontdata/FoxitDingbats.cpp",
673 "core/fxge/fontdata/chromefontdata/FoxitFixed.cpp",
674 "core/fxge/fontdata/chromefontdata/FoxitFixedBold.cpp",
675 "core/fxge/fontdata/chromefontdata/FoxitFixedBoldItalic.cpp",
676 "core/fxge/fontdata/chromefontdata/FoxitFixedItalic.cpp",
677 "core/fxge/fontdata/chromefontdata/FoxitSans.cpp",
678 "core/fxge/fontdata/chromefontdata/FoxitSansBold.cpp",
679 "core/fxge/fontdata/chromefontdata/FoxitSansBoldItalic.cpp",
680 "core/fxge/fontdata/chromefontdata/FoxitSansItalic.cpp",
681 "core/fxge/fontdata/chromefontdata/FoxitSansMM.cpp",
682 "core/fxge/fontdata/chromefontdata/FoxitSerif.cpp",
683 "core/fxge/fontdata/chromefontdata/FoxitSerifBold.cpp",
684 "core/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.cpp",
685 "core/fxge/fontdata/chromefontdata/FoxitSerifItalic.cpp",
686 "core/fxge/fontdata/chromefontdata/FoxitSerifMM.cpp",
687 "core/fxge/fontdata/chromefontdata/FoxitSymbol.cpp",
688 "core/fxge/fontdata/chromefontdata/chromefontdata.h",
689 "core/fxge/freetype/fx_freetype.cpp",
690 "core/fxge/ge/fx_ge.cpp",
691 "core/fxge/ge/fx_ge_device.cpp",
692 "core/fxge/ge/fx_ge_font.cpp",
693 "core/fxge/ge/fx_ge_fontmap.cpp",
694 "core/fxge/ge/fx_ge_linux.cpp",
695 "core/fxge/ge/fx_ge_path.cpp",
696 "core/fxge/ge/fx_ge_ps.cpp",
697 "core/fxge/ge/fx_ge_text.cpp",
698 "core/fxge/ge/fx_text_int.h",
dsinclair48baa5f2016-04-06 10:00:40 -0700699 "core/fxge/include/fpf.h",
700 "core/fxge/include/fx_dib.h",
701 "core/fxge/include/fx_font.h",
702 "core/fxge/include/fx_freetype.h",
703 "core/fxge/include/fx_ge.h",
704 "core/fxge/include/fx_ge_apple.h",
705 "core/fxge/include/fx_ge_win32.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700706 ]
707
Dan Sinclairbc6c6722015-10-22 14:58:54 -0400708 configs += [
Lei Zhang7b16ba52015-10-26 17:06:53 -0700709 ":fxge_warnings",
Lei Zhang476ac132015-11-05 20:07:27 -0800710 ":pdfium_config",
Dan Sinclairbc6c6722015-10-22 14:58:54 -0400711 ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700712
713 if (pdf_use_skia) {
Cary Clark59b3a482016-03-17 12:00:39 -0400714 sources += [ "core/fxge/skia/fx_skia_device.cpp" ]
Cary Clark399be5b2016-03-14 16:51:29 -0400715 deps += [ "//skia" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700716 }
717
718 if (is_win) {
719 sources += [
Dan Sinclair764ec512016-03-14 13:35:12 -0400720 "core/fxge/win32/dwrite_int.h",
721 "core/fxge/win32/fx_win32_device.cpp",
722 "core/fxge/win32/fx_win32_dib.cpp",
723 "core/fxge/win32/fx_win32_dwrite.cpp",
724 "core/fxge/win32/fx_win32_gdipext.cpp",
725 "core/fxge/win32/fx_win32_print.cpp",
726 "core/fxge/win32/win32_int.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700727 ]
Tom Sepez465ed872015-12-09 14:55:41 -0800728 configs -= [ "//build/config/win:lean_and_mean" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700729 }
730}
731
732static_library("fxedit") {
733 sources = [
Dan Sinclairf766ad22016-03-14 13:51:24 -0400734 "fpdfsdk/fxedit/fxet_ap.cpp",
735 "fpdfsdk/fxedit/fxet_edit.cpp",
736 "fpdfsdk/fxedit/fxet_list.cpp",
737 "fpdfsdk/fxedit/fxet_module.cpp",
738 "fpdfsdk/fxedit/fxet_pageobjs.cpp",
dsinclair89bdd082016-04-06 10:47:54 -0700739 "fpdfsdk/fxedit/include/fx_edit.h",
740 "fpdfsdk/fxedit/include/fxet_edit.h",
741 "fpdfsdk/fxedit/include/fxet_list.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700742 ]
Lei Zhang476ac132015-11-05 20:07:27 -0800743 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700744}
745
746static_library("pdfwindow") {
747 sources = [
Dan Sinclairf766ad22016-03-14 13:51:24 -0400748 "fpdfsdk/pdfwindow/PWL_Button.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400749 "fpdfsdk/pdfwindow/PWL_Button.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400750 "fpdfsdk/pdfwindow/PWL_Caret.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400751 "fpdfsdk/pdfwindow/PWL_Caret.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400752 "fpdfsdk/pdfwindow/PWL_ComboBox.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400753 "fpdfsdk/pdfwindow/PWL_ComboBox.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400754 "fpdfsdk/pdfwindow/PWL_Edit.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400755 "fpdfsdk/pdfwindow/PWL_Edit.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400756 "fpdfsdk/pdfwindow/PWL_EditCtrl.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400757 "fpdfsdk/pdfwindow/PWL_EditCtrl.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400758 "fpdfsdk/pdfwindow/PWL_FontMap.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400759 "fpdfsdk/pdfwindow/PWL_FontMap.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400760 "fpdfsdk/pdfwindow/PWL_Icon.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400761 "fpdfsdk/pdfwindow/PWL_Icon.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400762 "fpdfsdk/pdfwindow/PWL_IconList.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400763 "fpdfsdk/pdfwindow/PWL_IconList.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400764 "fpdfsdk/pdfwindow/PWL_Label.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400765 "fpdfsdk/pdfwindow/PWL_Label.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400766 "fpdfsdk/pdfwindow/PWL_ListBox.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400767 "fpdfsdk/pdfwindow/PWL_ListBox.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400768 "fpdfsdk/pdfwindow/PWL_ListCtrl.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400769 "fpdfsdk/pdfwindow/PWL_ListCtrl.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400770 "fpdfsdk/pdfwindow/PWL_Note.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400771 "fpdfsdk/pdfwindow/PWL_Note.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400772 "fpdfsdk/pdfwindow/PWL_ScrollBar.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400773 "fpdfsdk/pdfwindow/PWL_ScrollBar.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400774 "fpdfsdk/pdfwindow/PWL_Signature.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400775 "fpdfsdk/pdfwindow/PWL_Signature.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400776 "fpdfsdk/pdfwindow/PWL_SpecialButton.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400777 "fpdfsdk/pdfwindow/PWL_SpecialButton.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400778 "fpdfsdk/pdfwindow/PWL_Utils.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400779 "fpdfsdk/pdfwindow/PWL_Utils.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400780 "fpdfsdk/pdfwindow/PWL_Wnd.cpp",
dan sinclair89e904b2016-03-23 19:29:15 -0400781 "fpdfsdk/pdfwindow/PWL_Wnd.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700782 ]
Lei Zhang476ac132015-11-05 20:07:27 -0800783 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700784}
785
786static_library("javascript") {
787 sources = [
dsinclair64376be2016-03-31 20:03:24 -0700788 "fpdfsdk/javascript/ijs_context.h",
789 "fpdfsdk/javascript/ijs_runtime.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700790 ]
Tom Sepez452b4f32015-10-13 09:27:27 -0700791 if (pdf_enable_v8) {
792 sources += [
Dan Sinclairf766ad22016-03-14 13:51:24 -0400793 "fpdfsdk/javascript/Consts.cpp",
794 "fpdfsdk/javascript/Consts.h",
795 "fpdfsdk/javascript/Document.cpp",
796 "fpdfsdk/javascript/Document.h",
797 "fpdfsdk/javascript/Field.cpp",
798 "fpdfsdk/javascript/Field.h",
799 "fpdfsdk/javascript/Icon.cpp",
800 "fpdfsdk/javascript/Icon.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400801 "fpdfsdk/javascript/JS_Define.h",
802 "fpdfsdk/javascript/JS_EventHandler.cpp",
803 "fpdfsdk/javascript/JS_EventHandler.h",
804 "fpdfsdk/javascript/JS_GlobalData.cpp",
805 "fpdfsdk/javascript/JS_GlobalData.h",
806 "fpdfsdk/javascript/JS_Object.cpp",
807 "fpdfsdk/javascript/JS_Object.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400808 "fpdfsdk/javascript/JS_Value.cpp",
809 "fpdfsdk/javascript/JS_Value.h",
810 "fpdfsdk/javascript/PublicMethods.cpp",
811 "fpdfsdk/javascript/PublicMethods.h",
812 "fpdfsdk/javascript/app.cpp",
813 "fpdfsdk/javascript/app.h",
dsinclair64376be2016-03-31 20:03:24 -0700814 "fpdfsdk/javascript/cjs_context.cpp",
815 "fpdfsdk/javascript/cjs_context.h",
816 "fpdfsdk/javascript/cjs_runtime.cpp",
817 "fpdfsdk/javascript/cjs_runtime.h",
Dan Sinclairf766ad22016-03-14 13:51:24 -0400818 "fpdfsdk/javascript/color.cpp",
819 "fpdfsdk/javascript/color.h",
820 "fpdfsdk/javascript/console.cpp",
821 "fpdfsdk/javascript/console.h",
822 "fpdfsdk/javascript/event.cpp",
823 "fpdfsdk/javascript/event.h",
824 "fpdfsdk/javascript/global.cpp",
825 "fpdfsdk/javascript/global.h",
826 "fpdfsdk/javascript/report.cpp",
827 "fpdfsdk/javascript/report.h",
828 "fpdfsdk/javascript/resource.cpp",
829 "fpdfsdk/javascript/resource.h",
830 "fpdfsdk/javascript/util.cpp",
831 "fpdfsdk/javascript/util.h",
832 "fpdfsdk/jsapi/fxjs_v8.cpp",
dsinclair89bdd082016-04-06 10:47:54 -0700833 "fpdfsdk/jsapi/include/fxjs_v8.h",
Tom Sepez452b4f32015-10-13 09:27:27 -0700834 ]
835 include_dirs = [
836 "//v8",
837 "//v8/include",
838 ]
839 public_deps = [
840 "//v8",
841 ]
Jochen Eisinger7ed503d2015-12-10 14:38:06 +0100842 configs += [ "//v8:external_startup_data" ]
Tom Sepez452b4f32015-10-13 09:27:27 -0700843 } else {
Dan Sinclairf766ad22016-03-14 13:51:24 -0400844 sources += [ "fpdfsdk/javascript/JS_Runtime_Stub.cpp" ]
Tom Sepez452b4f32015-10-13 09:27:27 -0700845 }
Lei Zhang476ac132015-11-05 20:07:27 -0800846 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700847}
848
849static_library("formfiller") {
850 sources = [
Dan Sinclairedbb3192016-03-21 09:08:24 -0400851 "fpdfsdk/formfiller/cba_fontmap.cpp",
852 "fpdfsdk/formfiller/cba_fontmap.h",
853 "fpdfsdk/formfiller/cffl_checkbox.cpp",
854 "fpdfsdk/formfiller/cffl_checkbox.h",
855 "fpdfsdk/formfiller/cffl_combobox.cpp",
856 "fpdfsdk/formfiller/cffl_combobox.h",
857 "fpdfsdk/formfiller/cffl_formfiller.cpp",
858 "fpdfsdk/formfiller/cffl_formfiller.h",
859 "fpdfsdk/formfiller/cffl_iformfiller.cpp",
860 "fpdfsdk/formfiller/cffl_iformfiller.h",
861 "fpdfsdk/formfiller/cffl_listbox.cpp",
862 "fpdfsdk/formfiller/cffl_listbox.h",
863 "fpdfsdk/formfiller/cffl_pushbutton.cpp",
864 "fpdfsdk/formfiller/cffl_pushbutton.h",
865 "fpdfsdk/formfiller/cffl_radiobutton.cpp",
866 "fpdfsdk/formfiller/cffl_radiobutton.h",
867 "fpdfsdk/formfiller/cffl_textfield.cpp",
868 "fpdfsdk/formfiller/cffl_textfield.h",
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700869 ]
Lei Zhang476ac132015-11-05 20:07:27 -0800870 configs += [ ":pdfium_config" ]
John Abd-El-Malekd68f9a32014-06-05 12:45:33 -0700871}
Tom Sepezc706fc02014-11-14 13:39:20 -0800872
Tom Sepezb36747d2015-12-08 15:49:25 -0800873if (pdf_enable_xfa) {
874 static_library("fpdfxfa") {
875 sources = [
Dan Sinclairf766ad22016-03-14 13:51:24 -0400876 "fpdfsdk/fpdfxfa/fpdfxfa_app.cpp",
877 "fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp",
878 "fpdfsdk/fpdfxfa/fpdfxfa_page.cpp",
879 "fpdfsdk/fpdfxfa/fpdfxfa_util.cpp",
dsinclair89bdd082016-04-06 10:47:54 -0700880 "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h",
881 "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h",
882 "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h",
883 "fpdfsdk/fpdfxfa/include/fpdfxfa_util.h",
Tom Sepez452b4f32015-10-13 09:27:27 -0700884 ]
885 deps = [
Tom Sepezb36747d2015-12-08 15:49:25 -0800886 ":xfa",
887 ]
888 configs -= [ "//build/config/compiler:chromium_code" ]
Tom Sepezb5451592016-02-22 16:48:02 -0800889 configs += [
890 ":pdfium_config",
891 "//build/config/compiler:no_chromium_code",
892 ]
Tom Sepezb36747d2015-12-08 15:49:25 -0800893 }
894
895 static_library("xfa") {
896 sources = [
Dan Sinclair1770c022016-03-14 14:14:16 -0400897 "xfa/fde/css/fde_css.h",
898 "xfa/fde/css/fde_csscache.cpp",
899 "xfa/fde/css/fde_csscache.h",
900 "xfa/fde/css/fde_cssdatatable.cpp",
901 "xfa/fde/css/fde_cssdatatable.h",
902 "xfa/fde/css/fde_cssdeclaration.cpp",
903 "xfa/fde/css/fde_cssdeclaration.h",
904 "xfa/fde/css/fde_cssstyleselector.cpp",
905 "xfa/fde/css/fde_cssstyleselector.h",
906 "xfa/fde/css/fde_cssstylesheet.cpp",
907 "xfa/fde/css/fde_cssstylesheet.h",
908 "xfa/fde/css/fde_csssyntax.cpp",
909 "xfa/fde/css/fde_csssyntax.h",
910 "xfa/fde/fde_brush.h",
911 "xfa/fde/fde_devbasic.cpp",
912 "xfa/fde/fde_devbasic.h",
913 "xfa/fde/fde_gedevice.cpp",
914 "xfa/fde/fde_gedevice.h",
915 "xfa/fde/fde_geobject.cpp",
916 "xfa/fde/fde_geobject.h",
917 "xfa/fde/fde_image.h",
918 "xfa/fde/fde_iterator.cpp",
919 "xfa/fde/fde_iterator.h",
920 "xfa/fde/fde_object.cpp",
921 "xfa/fde/fde_object.h",
922 "xfa/fde/fde_path.h",
923 "xfa/fde/fde_pen.h",
924 "xfa/fde/fde_render.cpp",
925 "xfa/fde/fde_render.h",
926 "xfa/fde/fde_renderdevice.h",
927 "xfa/fde/tto/fde_textout.cpp",
928 "xfa/fde/tto/fde_textout.h",
929 "xfa/fde/xml/fde_xml.h",
930 "xfa/fde/xml/fde_xml_imp.cpp",
931 "xfa/fde/xml/fde_xml_imp.h",
932 "xfa/fee/fde_txtedtbuf.cpp",
933 "xfa/fee/fde_txtedtbuf.h",
934 "xfa/fee/fde_txtedtengine.cpp",
935 "xfa/fee/fde_txtedtengine.h",
936 "xfa/fee/fde_txtedtpage.cpp",
937 "xfa/fee/fde_txtedtpage.h",
938 "xfa/fee/fde_txtedtparag.cpp",
939 "xfa/fee/fde_txtedtparag.h",
940 "xfa/fee/fx_wordbreak/fx_wordbreak.h",
941 "xfa/fee/fx_wordbreak/fx_wordbreak_impl.cpp",
942 "xfa/fee/fx_wordbreak/fx_wordbreak_impl.h",
943 "xfa/fee/fx_wordbreak/fx_wordbreakdata.cpp",
944 "xfa/fee/ifde_txtedtbuf.h",
945 "xfa/fee/ifde_txtedtengine.h",
946 "xfa/fee/ifde_txtedtpage.h",
947 "xfa/fgas/crt/fgas_algorithm.cpp",
948 "xfa/fgas/crt/fgas_algorithm.h",
949 "xfa/fgas/crt/fgas_codepage.cpp",
950 "xfa/fgas/crt/fgas_codepage.h",
951 "xfa/fgas/crt/fgas_encode.cpp",
952 "xfa/fgas/crt/fgas_language.h",
953 "xfa/fgas/crt/fgas_memory.cpp",
954 "xfa/fgas/crt/fgas_memory.h",
955 "xfa/fgas/crt/fgas_stream.cpp",
956 "xfa/fgas/crt/fgas_stream.h",
957 "xfa/fgas/crt/fgas_system.cpp",
958 "xfa/fgas/crt/fgas_system.h",
959 "xfa/fgas/crt/fgas_utils.cpp",
960 "xfa/fgas/crt/fgas_utils.h",
961 "xfa/fgas/font/fgas_font.h",
962 "xfa/fgas/font/fgas_fontutils.cpp",
963 "xfa/fgas/font/fgas_fontutils.h",
964 "xfa/fgas/font/fgas_gefont.cpp",
965 "xfa/fgas/font/fgas_gefont.h",
966 "xfa/fgas/font/fgas_stdfontmgr.cpp",
967 "xfa/fgas/font/fgas_stdfontmgr.h",
968 "xfa/fgas/layout/fgas_linebreak.cpp",
969 "xfa/fgas/layout/fgas_linebreak.h",
970 "xfa/fgas/layout/fgas_rtfbreak.cpp",
971 "xfa/fgas/layout/fgas_rtfbreak.h",
972 "xfa/fgas/layout/fgas_textbreak.cpp",
973 "xfa/fgas/layout/fgas_textbreak.h",
974 "xfa/fgas/layout/fgas_unicode.cpp",
975 "xfa/fgas/layout/fgas_unicode.h",
976 "xfa/fgas/localization/fgas_datetime.cpp",
977 "xfa/fgas/localization/fgas_datetime.h",
978 "xfa/fgas/localization/fgas_locale.cpp",
979 "xfa/fgas/localization/fgas_locale.h",
980 "xfa/fgas/localization/fgas_localeimp.h",
981 "xfa/fgas/localization/fgas_localemgr.cpp",
982 "xfa/fgas/localization/fgas_localemgr.h",
983 "xfa/fgas/xml/fgas_sax.h",
984 "xfa/fgas/xml/fgas_sax_imp.cpp",
985 "xfa/fgas/xml/fgas_sax_imp.h",
986 "xfa/fwl/basewidget/fwl_barcodeimp.cpp",
987 "xfa/fwl/basewidget/fwl_barcodeimp.h",
988 "xfa/fwl/basewidget/fwl_caretimp.cpp",
989 "xfa/fwl/basewidget/fwl_caretimp.h",
990 "xfa/fwl/basewidget/fwl_checkboximp.cpp",
991 "xfa/fwl/basewidget/fwl_checkboximp.h",
992 "xfa/fwl/basewidget/fwl_comboboximp.cpp",
993 "xfa/fwl/basewidget/fwl_comboboximp.h",
994 "xfa/fwl/basewidget/fwl_datetimepickerimp.cpp",
995 "xfa/fwl/basewidget/fwl_datetimepickerimp.h",
996 "xfa/fwl/basewidget/fwl_editimp.cpp",
997 "xfa/fwl/basewidget/fwl_editimp.h",
998 "xfa/fwl/basewidget/fwl_formproxyimp.cpp",
999 "xfa/fwl/basewidget/fwl_formproxyimp.h",
1000 "xfa/fwl/basewidget/fwl_listboximp.cpp",
1001 "xfa/fwl/basewidget/fwl_listboximp.h",
1002 "xfa/fwl/basewidget/fwl_monthcalendarimp.cpp",
1003 "xfa/fwl/basewidget/fwl_monthcalendarimp.h",
1004 "xfa/fwl/basewidget/fwl_pictureboximp.cpp",
1005 "xfa/fwl/basewidget/fwl_pictureboximp.h",
1006 "xfa/fwl/basewidget/fwl_pushbuttonimp.cpp",
1007 "xfa/fwl/basewidget/fwl_pushbuttonimp.h",
1008 "xfa/fwl/basewidget/fwl_scrollbarimp.cpp",
1009 "xfa/fwl/basewidget/fwl_scrollbarimp.h",
1010 "xfa/fwl/basewidget/fwl_spinbuttonimp.cpp",
1011 "xfa/fwl/basewidget/fwl_spinbuttonimp.h",
1012 "xfa/fwl/basewidget/fwl_tooltipctrlimp.cpp",
1013 "xfa/fwl/basewidget/fwl_tooltipctrlimp.h",
1014 "xfa/fwl/basewidget/fxmath_barcodeimp.cpp",
1015 "xfa/fwl/basewidget/fxmath_barcodeimp.h",
Dan Sinclair398a43d2016-03-23 15:51:01 -04001016 "xfa/fwl/basewidget/ifwl_barcode.h",
1017 "xfa/fwl/basewidget/ifwl_caret.h",
1018 "xfa/fwl/basewidget/ifwl_checkbox.h",
1019 "xfa/fwl/basewidget/ifwl_combobox.h",
1020 "xfa/fwl/basewidget/ifwl_datetimepicker.h",
1021 "xfa/fwl/basewidget/ifwl_edit.h",
1022 "xfa/fwl/basewidget/ifwl_listbox.h",
1023 "xfa/fwl/basewidget/ifwl_monthcalendar.h",
1024 "xfa/fwl/basewidget/ifwl_picturebox.h",
1025 "xfa/fwl/basewidget/ifwl_pushbutton.h",
1026 "xfa/fwl/basewidget/ifwl_scrollbar.h",
1027 "xfa/fwl/basewidget/ifwl_spinbutton.h",
1028 "xfa/fwl/basewidget/ifwl_tooltip.h",
1029 "xfa/fwl/basewidget/ifx_barcode.h",
1030 "xfa/fwl/core/cfwl_event.h",
1031 "xfa/fwl/core/cfwl_message.h",
1032 "xfa/fwl/core/cfwl_note.h",
1033 "xfa/fwl/core/cfwl_themebackground.h",
1034 "xfa/fwl/core/cfwl_themepart.h",
1035 "xfa/fwl/core/cfwl_themetext.h",
1036 "xfa/fwl/core/cfwl_widgetimpproperties.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001037 "xfa/fwl/core/fwl_appimp.cpp",
1038 "xfa/fwl/core/fwl_appimp.h",
1039 "xfa/fwl/core/fwl_contentimp.cpp",
1040 "xfa/fwl/core/fwl_contentimp.h",
Dan Sinclair398a43d2016-03-23 15:51:01 -04001041 "xfa/fwl/core/fwl_error.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001042 "xfa/fwl/core/fwl_formimp.cpp",
1043 "xfa/fwl/core/fwl_formimp.h",
1044 "xfa/fwl/core/fwl_gridimp.cpp",
1045 "xfa/fwl/core/fwl_gridimp.h",
1046 "xfa/fwl/core/fwl_noteimp.cpp",
1047 "xfa/fwl/core/fwl_noteimp.h",
1048 "xfa/fwl/core/fwl_panelimp.cpp",
1049 "xfa/fwl/core/fwl_panelimp.h",
1050 "xfa/fwl/core/fwl_sdadapterimp.cpp",
Dan Sinclair398a43d2016-03-23 15:51:01 -04001051 "xfa/fwl/core/fwl_sdadapterimp.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001052 "xfa/fwl/core/fwl_targetimp.cpp",
1053 "xfa/fwl/core/fwl_targetimp.h",
1054 "xfa/fwl/core/fwl_threadimp.cpp",
1055 "xfa/fwl/core/fwl_threadimp.h",
1056 "xfa/fwl/core/fwl_timerimp.cpp",
Dan Sinclair398a43d2016-03-23 15:51:01 -04001057 "xfa/fwl/core/fwl_widgetdef.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001058 "xfa/fwl/core/fwl_widgetimp.cpp",
1059 "xfa/fwl/core/fwl_widgetimp.h",
1060 "xfa/fwl/core/fwl_widgetmgrimp.cpp",
1061 "xfa/fwl/core/fwl_widgetmgrimp.h",
Dan Sinclair398a43d2016-03-23 15:51:01 -04001062 "xfa/fwl/core/ifwl_adapternative.h",
1063 "xfa/fwl/core/ifwl_adapterthreadmgr.h",
1064 "xfa/fwl/core/ifwl_adapterwidgetmgr.h",
1065 "xfa/fwl/core/ifwl_app.h",
1066 "xfa/fwl/core/ifwl_content.h",
1067 "xfa/fwl/core/ifwl_custom.h",
1068 "xfa/fwl/core/ifwl_custompanel.h",
1069 "xfa/fwl/core/ifwl_dataprovider.h",
1070 "xfa/fwl/core/ifwl_form.h",
1071 "xfa/fwl/core/ifwl_grid.h",
1072 "xfa/fwl/core/ifwl_notedriver.h",
1073 "xfa/fwl/core/ifwl_noteloop.h",
1074 "xfa/fwl/core/ifwl_notethread.h",
1075 "xfa/fwl/core/ifwl_panel.h",
1076 "xfa/fwl/core/ifwl_proxy.h",
1077 "xfa/fwl/core/ifwl_target.h",
1078 "xfa/fwl/core/ifwl_themeprovider.h",
1079 "xfa/fwl/core/ifwl_thread.h",
1080 "xfa/fwl/core/ifwl_timer.h",
1081 "xfa/fwl/core/ifwl_tooltiptarget.h",
1082 "xfa/fwl/core/ifwl_widget.h",
1083 "xfa/fwl/core/ifwl_widgetdelegate.h",
1084 "xfa/fwl/core/ifwl_widgetmgr.h",
1085 "xfa/fwl/core/ifwl_widgetmgrdelegate.h",
1086 "xfa/fwl/core/include/ifwl_adaptertimermgr.h",
dsinclair7f432a12016-03-29 12:38:01 -07001087 "xfa/fwl/lightwidget/cfwl_app.cpp",
1088 "xfa/fwl/lightwidget/cfwl_app.h",
1089 "xfa/fwl/lightwidget/cfwl_barcode.cpp",
1090 "xfa/fwl/lightwidget/cfwl_barcode.h",
1091 "xfa/fwl/lightwidget/cfwl_caret.cpp",
1092 "xfa/fwl/lightwidget/cfwl_caret.h",
1093 "xfa/fwl/lightwidget/cfwl_checkbox.cpp",
1094 "xfa/fwl/lightwidget/cfwl_checkbox.h",
1095 "xfa/fwl/lightwidget/cfwl_combobox.cpp",
1096 "xfa/fwl/lightwidget/cfwl_combobox.h",
1097 "xfa/fwl/lightwidget/cfwl_datetimepicker.cpp",
1098 "xfa/fwl/lightwidget/cfwl_datetimepicker.h",
1099 "xfa/fwl/lightwidget/cfwl_edit.cpp",
1100 "xfa/fwl/lightwidget/cfwl_edit.h",
1101 "xfa/fwl/lightwidget/cfwl_listbox.cpp",
1102 "xfa/fwl/lightwidget/cfwl_listbox.h",
1103 "xfa/fwl/lightwidget/cfwl_picturebox.cpp",
1104 "xfa/fwl/lightwidget/cfwl_picturebox.h",
1105 "xfa/fwl/lightwidget/cfwl_pushbutton.cpp",
1106 "xfa/fwl/lightwidget/cfwl_pushbutton.h",
1107 "xfa/fwl/lightwidget/cfwl_scrollbar.cpp",
1108 "xfa/fwl/lightwidget/cfwl_scrollbar.h",
1109 "xfa/fwl/lightwidget/cfwl_theme.cpp",
1110 "xfa/fwl/lightwidget/cfwl_theme.h",
1111 "xfa/fwl/lightwidget/cfwl_tooltip.cpp",
1112 "xfa/fwl/lightwidget/cfwl_tooltip.h",
1113 "xfa/fwl/lightwidget/cfwl_widget.cpp",
1114 "xfa/fwl/lightwidget/cfwl_widget.h",
1115 "xfa/fwl/lightwidget/cfwl_widgetdelegate.cpp",
1116 "xfa/fwl/lightwidget/cfwl_widgetdelegate.h",
avallee62514d92016-03-31 10:23:19 -07001117 "xfa/fwl/lightwidget/cfwl_widgetproperties.cpp",
dsinclair7f432a12016-03-29 12:38:01 -07001118 "xfa/fwl/lightwidget/cfwl_widgetproperties.h",
1119 "xfa/fwl/theme/cfwl_barcodetp.cpp",
1120 "xfa/fwl/theme/cfwl_barcodetp.h",
1121 "xfa/fwl/theme/cfwl_carettp.cpp",
1122 "xfa/fwl/theme/cfwl_carettp.h",
1123 "xfa/fwl/theme/cfwl_checkboxtp.cpp",
1124 "xfa/fwl/theme/cfwl_checkboxtp.h",
1125 "xfa/fwl/theme/cfwl_comboboxtp.cpp",
1126 "xfa/fwl/theme/cfwl_comboboxtp.h",
1127 "xfa/fwl/theme/cfwl_datetimepickedtp.cpp",
1128 "xfa/fwl/theme/cfwl_datetimepickertp.h",
1129 "xfa/fwl/theme/cfwl_edittp.cpp",
1130 "xfa/fwl/theme/cfwl_edittp.h",
1131 "xfa/fwl/theme/cfwl_formtp.cpp",
1132 "xfa/fwl/theme/cfwl_formtp.h",
1133 "xfa/fwl/theme/cfwl_listboxtp.cpp",
1134 "xfa/fwl/theme/cfwl_listboxtp.h",
1135 "xfa/fwl/theme/cfwl_monthcalendartp.cpp",
1136 "xfa/fwl/theme/cfwl_monthcalendartp.h",
1137 "xfa/fwl/theme/cfwl_pictureboxtp.cpp",
1138 "xfa/fwl/theme/cfwl_pictureboxtp.h",
1139 "xfa/fwl/theme/cfwl_pushbuttontp.cpp",
1140 "xfa/fwl/theme/cfwl_pushbuttontp.h",
1141 "xfa/fwl/theme/cfwl_scrollbartp.cpp",
1142 "xfa/fwl/theme/cfwl_scrollbartp.h",
1143 "xfa/fwl/theme/cfwl_utils.h",
1144 "xfa/fwl/theme/cfwl_widgettp.cpp",
1145 "xfa/fwl/theme/cfwl_widgettp.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001146 "xfa/fxbarcode/BC_Binarizer.cpp",
1147 "xfa/fxbarcode/BC_Binarizer.h",
1148 "xfa/fxbarcode/BC_BinaryBitmap.cpp",
1149 "xfa/fxbarcode/BC_BinaryBitmap.h",
1150 "xfa/fxbarcode/BC_BufferedImageLuminanceSource.cpp",
1151 "xfa/fxbarcode/BC_BufferedImageLuminanceSource.h",
1152 "xfa/fxbarcode/BC_DecoderResult.h",
1153 "xfa/fxbarcode/BC_Dimension.cpp",
1154 "xfa/fxbarcode/BC_Dimension.h",
1155 "xfa/fxbarcode/BC_Library.cpp",
1156 "xfa/fxbarcode/BC_LuminanceSource.cpp",
1157 "xfa/fxbarcode/BC_LuminanceSource.h",
1158 "xfa/fxbarcode/BC_Reader.cpp",
1159 "xfa/fxbarcode/BC_Reader.h",
1160 "xfa/fxbarcode/BC_ResultPoint.cpp",
1161 "xfa/fxbarcode/BC_ResultPoint.h",
1162 "xfa/fxbarcode/BC_TwoDimWriter.cpp",
1163 "xfa/fxbarcode/BC_TwoDimWriter.h",
1164 "xfa/fxbarcode/BC_UtilCodingConvert.cpp",
1165 "xfa/fxbarcode/BC_UtilCodingConvert.h",
1166 "xfa/fxbarcode/BC_UtilRSS.cpp",
1167 "xfa/fxbarcode/BC_UtilRSS.h",
1168 "xfa/fxbarcode/BC_Utils.cpp",
1169 "xfa/fxbarcode/BC_Writer.cpp",
1170 "xfa/fxbarcode/BC_Writer.h",
Dan Sinclaira8a28e02016-03-23 15:41:39 -04001171 "xfa/fxbarcode/cbc_codabar.cpp",
1172 "xfa/fxbarcode/cbc_codabar.h",
1173 "xfa/fxbarcode/cbc_code128.cpp",
1174 "xfa/fxbarcode/cbc_code128.h",
1175 "xfa/fxbarcode/cbc_code39.cpp",
1176 "xfa/fxbarcode/cbc_code39.h",
1177 "xfa/fxbarcode/cbc_codebase.cpp",
1178 "xfa/fxbarcode/cbc_codebase.h",
1179 "xfa/fxbarcode/cbc_datamatrix.cpp",
1180 "xfa/fxbarcode/cbc_datamatrix.h",
1181 "xfa/fxbarcode/cbc_ean13.cpp",
1182 "xfa/fxbarcode/cbc_ean13.h",
1183 "xfa/fxbarcode/cbc_ean8.cpp",
1184 "xfa/fxbarcode/cbc_ean8.h",
1185 "xfa/fxbarcode/cbc_onecode.cpp",
1186 "xfa/fxbarcode/cbc_onecode.h",
1187 "xfa/fxbarcode/cbc_pdf417i.cpp",
1188 "xfa/fxbarcode/cbc_pdf417i.h",
1189 "xfa/fxbarcode/cbc_qrcode.cpp",
1190 "xfa/fxbarcode/cbc_qrcode.h",
1191 "xfa/fxbarcode/cbc_upca.cpp",
1192 "xfa/fxbarcode/cbc_upca.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001193 "xfa/fxbarcode/common/BC_CommonBitArray.cpp",
1194 "xfa/fxbarcode/common/BC_CommonBitArray.h",
1195 "xfa/fxbarcode/common/BC_CommonBitMatrix.cpp",
1196 "xfa/fxbarcode/common/BC_CommonBitMatrix.h",
1197 "xfa/fxbarcode/common/BC_CommonBitSource.cpp",
1198 "xfa/fxbarcode/common/BC_CommonBitSource.h",
1199 "xfa/fxbarcode/common/BC_CommonByteArray.cpp",
1200 "xfa/fxbarcode/common/BC_CommonByteArray.h",
1201 "xfa/fxbarcode/common/BC_CommonByteMatrix.cpp",
1202 "xfa/fxbarcode/common/BC_CommonByteMatrix.h",
1203 "xfa/fxbarcode/common/BC_CommonCharacterSetECI.cpp",
1204 "xfa/fxbarcode/common/BC_CommonCharacterSetECI.h",
1205 "xfa/fxbarcode/common/BC_CommonDecoderResult.cpp",
1206 "xfa/fxbarcode/common/BC_CommonDecoderResult.h",
1207 "xfa/fxbarcode/common/BC_CommonECI.cpp",
1208 "xfa/fxbarcode/common/BC_CommonECI.h",
1209 "xfa/fxbarcode/common/BC_CommonPerspectiveTransform.cpp",
1210 "xfa/fxbarcode/common/BC_CommonPerspectiveTransform.h",
1211 "xfa/fxbarcode/common/BC_GlobalHistogramBinarizer.cpp",
1212 "xfa/fxbarcode/common/BC_GlobalHistogramBinarizer.h",
1213 "xfa/fxbarcode/common/BC_WhiteRectangleDetector.cpp",
1214 "xfa/fxbarcode/common/BC_WhiteRectangleDetector.h",
1215 "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.cpp",
1216 "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h",
1217 "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonDecoder.cpp",
1218 "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonDecoder.h",
1219 "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.cpp",
1220 "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.h",
1221 "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp",
1222 "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.h",
1223 "xfa/fxbarcode/datamatrix/BC_ASCIIEncoder.cpp",
1224 "xfa/fxbarcode/datamatrix/BC_ASCIIEncoder.h",
1225 "xfa/fxbarcode/datamatrix/BC_Base256Encoder.cpp",
1226 "xfa/fxbarcode/datamatrix/BC_Base256Encoder.h",
1227 "xfa/fxbarcode/datamatrix/BC_C40Encoder.cpp",
1228 "xfa/fxbarcode/datamatrix/BC_C40Encoder.h",
1229 "xfa/fxbarcode/datamatrix/BC_DataMatrixBitMatrixParser.cpp",
1230 "xfa/fxbarcode/datamatrix/BC_DataMatrixBitMatrixParser.h",
1231 "xfa/fxbarcode/datamatrix/BC_DataMatrixDataBlock.cpp",
1232 "xfa/fxbarcode/datamatrix/BC_DataMatrixDataBlock.h",
1233 "xfa/fxbarcode/datamatrix/BC_DataMatrixDecodedBitStreamParser.cpp",
1234 "xfa/fxbarcode/datamatrix/BC_DataMatrixDecodedBitStreamParser.h",
1235 "xfa/fxbarcode/datamatrix/BC_DataMatrixDecoder.cpp",
1236 "xfa/fxbarcode/datamatrix/BC_DataMatrixDecoder.h",
1237 "xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp",
1238 "xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.h",
1239 "xfa/fxbarcode/datamatrix/BC_DataMatrixReader.cpp",
1240 "xfa/fxbarcode/datamatrix/BC_DataMatrixReader.h",
1241 "xfa/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.cpp",
1242 "xfa/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.h",
1243 "xfa/fxbarcode/datamatrix/BC_DataMatrixVersion.cpp",
1244 "xfa/fxbarcode/datamatrix/BC_DataMatrixVersion.h",
1245 "xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.cpp",
1246 "xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h",
1247 "xfa/fxbarcode/datamatrix/BC_DefaultPlacement.cpp",
1248 "xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h",
1249 "xfa/fxbarcode/datamatrix/BC_EdifactEncoder.cpp",
1250 "xfa/fxbarcode/datamatrix/BC_EdifactEncoder.h",
1251 "xfa/fxbarcode/datamatrix/BC_Encoder.cpp",
1252 "xfa/fxbarcode/datamatrix/BC_Encoder.h",
1253 "xfa/fxbarcode/datamatrix/BC_EncoderContext.cpp",
1254 "xfa/fxbarcode/datamatrix/BC_EncoderContext.h",
1255 "xfa/fxbarcode/datamatrix/BC_ErrorCorrection.cpp",
1256 "xfa/fxbarcode/datamatrix/BC_ErrorCorrection.h",
1257 "xfa/fxbarcode/datamatrix/BC_HighLevelEncoder.cpp",
1258 "xfa/fxbarcode/datamatrix/BC_HighLevelEncoder.h",
1259 "xfa/fxbarcode/datamatrix/BC_SymbolInfo.cpp",
1260 "xfa/fxbarcode/datamatrix/BC_SymbolInfo.h",
1261 "xfa/fxbarcode/datamatrix/BC_SymbolShapeHint.cpp",
1262 "xfa/fxbarcode/datamatrix/BC_SymbolShapeHint.h",
1263 "xfa/fxbarcode/datamatrix/BC_TextEncoder.cpp",
1264 "xfa/fxbarcode/datamatrix/BC_TextEncoder.h",
1265 "xfa/fxbarcode/datamatrix/BC_X12Encoder.cpp",
1266 "xfa/fxbarcode/datamatrix/BC_X12Encoder.h",
Dan Sinclaira8a28e02016-03-23 15:41:39 -04001267 "xfa/fxbarcode/include/BC_Library.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001268 "xfa/fxbarcode/oned/BC_OneDReader.cpp",
1269 "xfa/fxbarcode/oned/BC_OneDReader.h",
1270 "xfa/fxbarcode/oned/BC_OneDimReader.cpp",
1271 "xfa/fxbarcode/oned/BC_OneDimReader.h",
1272 "xfa/fxbarcode/oned/BC_OneDimWriter.cpp",
1273 "xfa/fxbarcode/oned/BC_OneDimWriter.h",
1274 "xfa/fxbarcode/oned/BC_OnedCodaBarReader.cpp",
1275 "xfa/fxbarcode/oned/BC_OnedCodaBarReader.h",
1276 "xfa/fxbarcode/oned/BC_OnedCodaBarWriter.cpp",
1277 "xfa/fxbarcode/oned/BC_OnedCodaBarWriter.h",
1278 "xfa/fxbarcode/oned/BC_OnedCode128Reader.cpp",
1279 "xfa/fxbarcode/oned/BC_OnedCode128Reader.h",
1280 "xfa/fxbarcode/oned/BC_OnedCode128Writer.cpp",
1281 "xfa/fxbarcode/oned/BC_OnedCode128Writer.h",
1282 "xfa/fxbarcode/oned/BC_OnedCode39Reader.cpp",
1283 "xfa/fxbarcode/oned/BC_OnedCode39Reader.h",
1284 "xfa/fxbarcode/oned/BC_OnedCode39Writer.cpp",
1285 "xfa/fxbarcode/oned/BC_OnedCode39Writer.h",
1286 "xfa/fxbarcode/oned/BC_OnedEAN13Reader.cpp",
1287 "xfa/fxbarcode/oned/BC_OnedEAN13Reader.h",
1288 "xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp",
1289 "xfa/fxbarcode/oned/BC_OnedEAN13Writer.h",
1290 "xfa/fxbarcode/oned/BC_OnedEAN8Reader.cpp",
1291 "xfa/fxbarcode/oned/BC_OnedEAN8Reader.h",
1292 "xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp",
1293 "xfa/fxbarcode/oned/BC_OnedEAN8Writer.h",
1294 "xfa/fxbarcode/oned/BC_OnedUPCAReader.cpp",
1295 "xfa/fxbarcode/oned/BC_OnedUPCAReader.h",
1296 "xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp",
1297 "xfa/fxbarcode/oned/BC_OnedUPCAWriter.h",
1298 "xfa/fxbarcode/pdf417/BC_PDF417.cpp",
1299 "xfa/fxbarcode/pdf417/BC_PDF417.h",
1300 "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp",
1301 "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h",
1302 "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp",
1303 "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.h",
1304 "xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.cpp",
1305 "xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h",
1306 "xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.cpp",
1307 "xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.h",
1308 "xfa/fxbarcode/pdf417/BC_PDF417BoundingBox.cpp",
1309 "xfa/fxbarcode/pdf417/BC_PDF417BoundingBox.h",
1310 "xfa/fxbarcode/pdf417/BC_PDF417Codeword.cpp",
1311 "xfa/fxbarcode/pdf417/BC_PDF417Codeword.h",
1312 "xfa/fxbarcode/pdf417/BC_PDF417CodewordDecoder.cpp",
1313 "xfa/fxbarcode/pdf417/BC_PDF417CodewordDecoder.h",
1314 "xfa/fxbarcode/pdf417/BC_PDF417Common.cpp",
1315 "xfa/fxbarcode/pdf417/BC_PDF417Common.h",
1316 "xfa/fxbarcode/pdf417/BC_PDF417Compaction.cpp",
1317 "xfa/fxbarcode/pdf417/BC_PDF417Compaction.h",
1318 "xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp",
1319 "xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h",
1320 "xfa/fxbarcode/pdf417/BC_PDF417DetectionResult.cpp",
1321 "xfa/fxbarcode/pdf417/BC_PDF417DetectionResult.h",
1322 "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp",
1323 "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.h",
1324 "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.cpp",
1325 "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.h",
1326 "xfa/fxbarcode/pdf417/BC_PDF417Detector.cpp",
1327 "xfa/fxbarcode/pdf417/BC_PDF417Detector.h",
1328 "xfa/fxbarcode/pdf417/BC_PDF417DetectorResult.cpp",
1329 "xfa/fxbarcode/pdf417/BC_PDF417DetectorResult.h",
1330 "xfa/fxbarcode/pdf417/BC_PDF417Dimensions.cpp",
1331 "xfa/fxbarcode/pdf417/BC_PDF417Dimensions.h",
1332 "xfa/fxbarcode/pdf417/BC_PDF417ECErrorCorrection.cpp",
1333 "xfa/fxbarcode/pdf417/BC_PDF417ECErrorCorrection.h",
1334 "xfa/fxbarcode/pdf417/BC_PDF417ECModulusGF.cpp",
1335 "xfa/fxbarcode/pdf417/BC_PDF417ECModulusGF.h",
1336 "xfa/fxbarcode/pdf417/BC_PDF417ECModulusPoly.cpp",
1337 "xfa/fxbarcode/pdf417/BC_PDF417ECModulusPoly.h",
1338 "xfa/fxbarcode/pdf417/BC_PDF417ErrorCorrection.cpp",
1339 "xfa/fxbarcode/pdf417/BC_PDF417ErrorCorrection.h",
1340 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.cpp",
1341 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.h",
1342 "xfa/fxbarcode/pdf417/BC_PDF417Reader.cpp",
1343 "xfa/fxbarcode/pdf417/BC_PDF417Reader.h",
1344 "xfa/fxbarcode/pdf417/BC_PDF417ResultMetadata.cpp",
1345 "xfa/fxbarcode/pdf417/BC_PDF417ResultMetadata.h",
1346 "xfa/fxbarcode/pdf417/BC_PDF417ScanningDecoder.cpp",
1347 "xfa/fxbarcode/pdf417/BC_PDF417ScanningDecoder.h",
1348 "xfa/fxbarcode/pdf417/BC_PDF417Writer.cpp",
1349 "xfa/fxbarcode/pdf417/BC_PDF417Writer.h",
1350 "xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp",
1351 "xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h",
1352 "xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.cpp",
1353 "xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h",
1354 "xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.cpp",
1355 "xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.h",
1356 "xfa/fxbarcode/qrcode/BC_QRBitMatrixParser.cpp",
1357 "xfa/fxbarcode/qrcode/BC_QRBitMatrixParser.h",
1358 "xfa/fxbarcode/qrcode/BC_QRCodeReader.cpp",
1359 "xfa/fxbarcode/qrcode/BC_QRCodeReader.h",
1360 "xfa/fxbarcode/qrcode/BC_QRCodeWriter.cpp",
1361 "xfa/fxbarcode/qrcode/BC_QRCodeWriter.h",
1362 "xfa/fxbarcode/qrcode/BC_QRCoder.cpp",
1363 "xfa/fxbarcode/qrcode/BC_QRCoder.h",
1364 "xfa/fxbarcode/qrcode/BC_QRCoderBitVector.cpp",
1365 "xfa/fxbarcode/qrcode/BC_QRCoderBitVector.h",
1366 "xfa/fxbarcode/qrcode/BC_QRCoderBlockPair.cpp",
1367 "xfa/fxbarcode/qrcode/BC_QRCoderBlockPair.h",
1368 "xfa/fxbarcode/qrcode/BC_QRCoderDecoder.cpp",
1369 "xfa/fxbarcode/qrcode/BC_QRCoderDecoder.h",
1370 "xfa/fxbarcode/qrcode/BC_QRCoderECB.cpp",
1371 "xfa/fxbarcode/qrcode/BC_QRCoderECB.h",
1372 "xfa/fxbarcode/qrcode/BC_QRCoderECBlocks.cpp",
1373 "xfa/fxbarcode/qrcode/BC_QRCoderECBlocks.h",
1374 "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.cpp",
1375 "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.h",
1376 "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.cpp",
1377 "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.h",
1378 "xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.cpp",
1379 "xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h",
1380 "xfa/fxbarcode/qrcode/BC_QRCoderMaskUtil.cpp",
1381 "xfa/fxbarcode/qrcode/BC_QRCoderMaskUtil.h",
1382 "xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp",
1383 "xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.h",
1384 "xfa/fxbarcode/qrcode/BC_QRCoderMode.cpp",
1385 "xfa/fxbarcode/qrcode/BC_QRCoderMode.h",
1386 "xfa/fxbarcode/qrcode/BC_QRCoderVersion.cpp",
1387 "xfa/fxbarcode/qrcode/BC_QRCoderVersion.h",
1388 "xfa/fxbarcode/qrcode/BC_QRDataBlock.cpp",
1389 "xfa/fxbarcode/qrcode/BC_QRDataBlock.h",
1390 "xfa/fxbarcode/qrcode/BC_QRDataMask.cpp",
1391 "xfa/fxbarcode/qrcode/BC_QRDataMask.h",
1392 "xfa/fxbarcode/qrcode/BC_QRDecodedBitStreamParser.cpp",
1393 "xfa/fxbarcode/qrcode/BC_QRDecodedBitStreamParser.h",
1394 "xfa/fxbarcode/qrcode/BC_QRDetector.cpp",
1395 "xfa/fxbarcode/qrcode/BC_QRDetector.h",
1396 "xfa/fxbarcode/qrcode/BC_QRDetectorResult.cpp",
1397 "xfa/fxbarcode/qrcode/BC_QRDetectorResult.h",
1398 "xfa/fxbarcode/qrcode/BC_QRFinderPattern.cpp",
1399 "xfa/fxbarcode/qrcode/BC_QRFinderPattern.h",
1400 "xfa/fxbarcode/qrcode/BC_QRFinderPatternFinder.cpp",
1401 "xfa/fxbarcode/qrcode/BC_QRFinderPatternFinder.h",
1402 "xfa/fxbarcode/qrcode/BC_QRGridSampler.cpp",
1403 "xfa/fxbarcode/qrcode/BC_QRGridSampler.h",
1404 "xfa/fxbarcode/utils.h",
1405 "xfa/fxfa/app/xfa_checksum.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001406 "xfa/fxfa/app/xfa_ffapp.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001407 "xfa/fxfa/app/xfa_ffbarcode.cpp",
1408 "xfa/fxfa/app/xfa_ffbarcode.h",
1409 "xfa/fxfa/app/xfa_ffcheckbutton.cpp",
1410 "xfa/fxfa/app/xfa_ffcheckbutton.h",
1411 "xfa/fxfa/app/xfa_ffchoicelist.cpp",
1412 "xfa/fxfa/app/xfa_ffchoicelist.h",
1413 "xfa/fxfa/app/xfa_ffdoc.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001414 "xfa/fxfa/app/xfa_ffdochandler.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001415 "xfa/fxfa/app/xfa_ffdocview.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001416 "xfa/fxfa/app/xfa_ffdraw.cpp",
1417 "xfa/fxfa/app/xfa_ffdraw.h",
1418 "xfa/fxfa/app/xfa_ffexclgroup.cpp",
1419 "xfa/fxfa/app/xfa_ffexclgroup.h",
1420 "xfa/fxfa/app/xfa_fffield.cpp",
1421 "xfa/fxfa/app/xfa_fffield.h",
1422 "xfa/fxfa/app/xfa_ffimage.cpp",
1423 "xfa/fxfa/app/xfa_ffimage.h",
1424 "xfa/fxfa/app/xfa_ffimageedit.cpp",
1425 "xfa/fxfa/app/xfa_ffimageedit.h",
1426 "xfa/fxfa/app/xfa_ffnotify.cpp",
1427 "xfa/fxfa/app/xfa_ffnotify.h",
1428 "xfa/fxfa/app/xfa_ffpageview.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001429 "xfa/fxfa/app/xfa_ffpath.cpp",
1430 "xfa/fxfa/app/xfa_ffpath.h",
1431 "xfa/fxfa/app/xfa_ffpushbutton.cpp",
1432 "xfa/fxfa/app/xfa_ffpushbutton.h",
1433 "xfa/fxfa/app/xfa_ffsignature.cpp",
1434 "xfa/fxfa/app/xfa_ffsignature.h",
1435 "xfa/fxfa/app/xfa_ffsubform.cpp",
1436 "xfa/fxfa/app/xfa_ffsubform.h",
1437 "xfa/fxfa/app/xfa_fftext.cpp",
1438 "xfa/fxfa/app/xfa_fftext.h",
1439 "xfa/fxfa/app/xfa_fftextedit.cpp",
1440 "xfa/fxfa/app/xfa_fftextedit.h",
1441 "xfa/fxfa/app/xfa_ffwidget.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001442 "xfa/fxfa/app/xfa_ffwidgetacc.cpp",
1443 "xfa/fxfa/app/xfa_ffwidgetacc.h",
1444 "xfa/fxfa/app/xfa_ffwidgethandler.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001445 "xfa/fxfa/app/xfa_fontmgr.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001446 "xfa/fxfa/app/xfa_fwladapter.cpp",
1447 "xfa/fxfa/app/xfa_fwladapter.h",
1448 "xfa/fxfa/app/xfa_fwltheme.cpp",
1449 "xfa/fxfa/app/xfa_fwltheme.h",
1450 "xfa/fxfa/app/xfa_rendercontext.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001451 "xfa/fxfa/app/xfa_textlayout.cpp",
1452 "xfa/fxfa/app/xfa_textlayout.h",
1453 "xfa/fxfa/fm2js/xfa_error.cpp",
1454 "xfa/fxfa/fm2js/xfa_error.h",
1455 "xfa/fxfa/fm2js/xfa_expression.cpp",
1456 "xfa/fxfa/fm2js/xfa_expression.h",
1457 "xfa/fxfa/fm2js/xfa_fm2jsapi.cpp",
1458 "xfa/fxfa/fm2js/xfa_fm2jsapi.h",
1459 "xfa/fxfa/fm2js/xfa_fm2jscontext.cpp",
1460 "xfa/fxfa/fm2js/xfa_fm2jscontext.h",
1461 "xfa/fxfa/fm2js/xfa_fmparse.cpp",
1462 "xfa/fxfa/fm2js/xfa_fmparse.h",
1463 "xfa/fxfa/fm2js/xfa_lexer.cpp",
1464 "xfa/fxfa/fm2js/xfa_lexer.h",
1465 "xfa/fxfa/fm2js/xfa_program.cpp",
1466 "xfa/fxfa/fm2js/xfa_program.h",
1467 "xfa/fxfa/fm2js/xfa_simpleexpression.cpp",
1468 "xfa/fxfa/fm2js/xfa_simpleexpression.h",
dsinclair44d054c2016-04-06 10:23:46 -07001469 "xfa/fxfa/parser/cxfa_arc.h",
1470 "xfa/fxfa/parser/cxfa_assist.cpp",
1471 "xfa/fxfa/parser/cxfa_assist.h",
1472 "xfa/fxfa/parser/cxfa_bind.cpp",
1473 "xfa/fxfa/parser/cxfa_bind.h",
1474 "xfa/fxfa/parser/cxfa_binditems.cpp",
1475 "xfa/fxfa/parser/cxfa_binditems.h",
1476 "xfa/fxfa/parser/cxfa_border.h",
1477 "xfa/fxfa/parser/cxfa_box.cpp",
1478 "xfa/fxfa/parser/cxfa_box.h",
1479 "xfa/fxfa/parser/cxfa_calculate.cpp",
1480 "xfa/fxfa/parser/cxfa_calculate.h",
1481 "xfa/fxfa/parser/cxfa_caption.cpp",
1482 "xfa/fxfa/parser/cxfa_caption.h",
1483 "xfa/fxfa/parser/cxfa_corner.h",
1484 "xfa/fxfa/parser/cxfa_data.cpp",
1485 "xfa/fxfa/parser/cxfa_data.h",
1486 "xfa/fxfa/parser/cxfa_edge.h",
1487 "xfa/fxfa/parser/cxfa_event.cpp",
1488 "xfa/fxfa/parser/cxfa_event.h",
1489 "xfa/fxfa/parser/cxfa_exdata.cpp",
1490 "xfa/fxfa/parser/cxfa_exdata.h",
1491 "xfa/fxfa/parser/cxfa_fill.cpp",
1492 "xfa/fxfa/parser/cxfa_fill.h",
1493 "xfa/fxfa/parser/cxfa_font.cpp",
1494 "xfa/fxfa/parser/cxfa_font.h",
1495 "xfa/fxfa/parser/cxfa_image.cpp",
1496 "xfa/fxfa/parser/cxfa_image.h",
1497 "xfa/fxfa/parser/cxfa_line.cpp",
1498 "xfa/fxfa/parser/cxfa_line.h",
1499 "xfa/fxfa/parser/cxfa_margin.cpp",
1500 "xfa/fxfa/parser/cxfa_margin.h",
1501 "xfa/fxfa/parser/cxfa_occur.cpp",
1502 "xfa/fxfa/parser/cxfa_occur.h",
1503 "xfa/fxfa/parser/cxfa_para.cpp",
1504 "xfa/fxfa/parser/cxfa_para.h",
1505 "xfa/fxfa/parser/cxfa_rectangle.h",
1506 "xfa/fxfa/parser/cxfa_script.cpp",
1507 "xfa/fxfa/parser/cxfa_script.h",
1508 "xfa/fxfa/parser/cxfa_stroke.cpp",
1509 "xfa/fxfa/parser/cxfa_stroke.h",
1510 "xfa/fxfa/parser/cxfa_submit.cpp",
1511 "xfa/fxfa/parser/cxfa_submit.h",
1512 "xfa/fxfa/parser/cxfa_text.cpp",
1513 "xfa/fxfa/parser/cxfa_text.h",
1514 "xfa/fxfa/parser/cxfa_tooltip.cpp",
1515 "xfa/fxfa/parser/cxfa_tooltip.h",
1516 "xfa/fxfa/parser/cxfa_validate.cpp",
1517 "xfa/fxfa/parser/cxfa_validate.h",
1518 "xfa/fxfa/parser/cxfa_value.cpp",
1519 "xfa/fxfa/parser/cxfa_value.h",
1520 "xfa/fxfa/parser/cxfa_widgetdata.cpp",
1521 "xfa/fxfa/parser/cxfa_widgetdata.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001522 "xfa/fxfa/parser/xfa_basic_data.cpp",
1523 "xfa/fxfa/parser/xfa_basic_data.h",
1524 "xfa/fxfa/parser/xfa_basic_imp.cpp",
1525 "xfa/fxfa/parser/xfa_basic_imp.h",
1526 "xfa/fxfa/parser/xfa_docdata.h",
1527 "xfa/fxfa/parser/xfa_doclayout.h",
1528 "xfa/fxfa/parser/xfa_document.h",
1529 "xfa/fxfa/parser/xfa_document_datadescription_imp.cpp",
1530 "xfa/fxfa/parser/xfa_document_datadescription_imp.h",
1531 "xfa/fxfa/parser/xfa_document_datamerger_imp.cpp",
1532 "xfa/fxfa/parser/xfa_document_datamerger_imp.h",
1533 "xfa/fxfa/parser/xfa_document_imp.cpp",
1534 "xfa/fxfa/parser/xfa_document_layout_imp.cpp",
1535 "xfa/fxfa/parser/xfa_document_layout_imp.h",
1536 "xfa/fxfa/parser/xfa_document_serialize.cpp",
1537 "xfa/fxfa/parser/xfa_document_serialize.h",
1538 "xfa/fxfa/parser/xfa_layout_appadapter.cpp",
1539 "xfa/fxfa/parser/xfa_layout_appadapter.h",
1540 "xfa/fxfa/parser/xfa_layout_itemlayout.cpp",
1541 "xfa/fxfa/parser/xfa_layout_itemlayout.h",
1542 "xfa/fxfa/parser/xfa_layout_pagemgr_new.cpp",
1543 "xfa/fxfa/parser/xfa_layout_pagemgr_new.h",
1544 "xfa/fxfa/parser/xfa_locale.cpp",
1545 "xfa/fxfa/parser/xfa_locale.h",
1546 "xfa/fxfa/parser/xfa_localemgr.cpp",
1547 "xfa/fxfa/parser/xfa_localemgr.h",
1548 "xfa/fxfa/parser/xfa_localevalue.cpp",
1549 "xfa/fxfa/parser/xfa_localevalue.h",
1550 "xfa/fxfa/parser/xfa_object.h",
1551 "xfa/fxfa/parser/xfa_object_imp.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001552 "xfa/fxfa/parser/xfa_parser.h",
1553 "xfa/fxfa/parser/xfa_parser_imp.cpp",
1554 "xfa/fxfa/parser/xfa_parser_imp.h",
1555 "xfa/fxfa/parser/xfa_script.h",
1556 "xfa/fxfa/parser/xfa_script_datawindow.cpp",
1557 "xfa/fxfa/parser/xfa_script_datawindow.h",
1558 "xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp",
1559 "xfa/fxfa/parser/xfa_script_eventpseudomodel.h",
1560 "xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp",
1561 "xfa/fxfa/parser/xfa_script_hostpseudomodel.h",
1562 "xfa/fxfa/parser/xfa_script_imp.cpp",
1563 "xfa/fxfa/parser/xfa_script_imp.h",
1564 "xfa/fxfa/parser/xfa_script_layoutpseudomodel.cpp",
1565 "xfa/fxfa/parser/xfa_script_layoutpseudomodel.h",
1566 "xfa/fxfa/parser/xfa_script_logpseudomodel.cpp",
1567 "xfa/fxfa/parser/xfa_script_logpseudomodel.h",
1568 "xfa/fxfa/parser/xfa_script_nodehelper.cpp",
1569 "xfa/fxfa/parser/xfa_script_nodehelper.h",
1570 "xfa/fxfa/parser/xfa_script_resolveprocessor.cpp",
1571 "xfa/fxfa/parser/xfa_script_resolveprocessor.h",
1572 "xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp",
1573 "xfa/fxfa/parser/xfa_script_signaturepseudomodel.h",
1574 "xfa/fxfa/parser/xfa_utils.h",
1575 "xfa/fxfa/parser/xfa_utils_imp.cpp",
Dan Sinclair811b8a42016-03-17 08:59:42 -04001576 "xfa/fxgraphics/cagg_graphics.cpp",
1577 "xfa/fxgraphics/cagg_graphics.h",
1578 "xfa/fxgraphics/cfx_color.cpp",
1579 "xfa/fxgraphics/cfx_color.h",
1580 "xfa/fxgraphics/cfx_graphics.cpp",
1581 "xfa/fxgraphics/cfx_path.cpp",
1582 "xfa/fxgraphics/cfx_path.h",
1583 "xfa/fxgraphics/cfx_path_generator.cpp",
1584 "xfa/fxgraphics/cfx_path_generator.h",
1585 "xfa/fxgraphics/cfx_pattern.cpp",
1586 "xfa/fxgraphics/cfx_pattern.h",
1587 "xfa/fxgraphics/cfx_shading.cpp",
1588 "xfa/fxgraphics/cfx_shading.h",
1589 "xfa/fxgraphics/include/cfx_graphics.h",
Dan Sinclair3a8051c2016-03-15 15:42:31 -04001590 "xfa/fxjse/include/fxjse.h",
Tom Sepezb36747d2015-12-08 15:49:25 -08001591 "xfa/include/fxfa/fxfa.h",
1592 "xfa/include/fxfa/fxfa_basic.h",
Tom Sepezb36747d2015-12-08 15:49:25 -08001593 "xfa/include/fxfa/fxfa_widget.h",
dsinclairdf4bc592016-03-31 20:34:43 -07001594 "xfa/include/fxfa/xfa_checksum.h",
1595 "xfa/include/fxfa/xfa_ffapp.h",
1596 "xfa/include/fxfa/xfa_ffdoc.h",
1597 "xfa/include/fxfa/xfa_ffdochandler.h",
1598 "xfa/include/fxfa/xfa_ffdocview.h",
1599 "xfa/include/fxfa/xfa_ffpageview.h",
dsinclair221caf62016-04-04 12:08:40 -07001600 "xfa/include/fxfa/xfa_ffwidget.h",
dsinclairdf4bc592016-03-31 20:34:43 -07001601 "xfa/include/fxfa/xfa_ffwidgethandler.h",
1602 "xfa/include/fxfa/xfa_fontmgr.h",
1603 "xfa/include/fxfa/xfa_rendercontext.h",
Tom Sepezb36747d2015-12-08 15:49:25 -08001604 ]
Tom Sepezb5451592016-02-22 16:48:02 -08001605 include_dirs = [ "." ]
Tom Sepezb36747d2015-12-08 15:49:25 -08001606 if (pdf_enable_v8) {
1607 sources += [
Dan Sinclair3a8051c2016-03-15 15:42:31 -04001608 "xfa/fxjse/cfxjse_arguments.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001609 "xfa/fxjse/class.cpp",
1610 "xfa/fxjse/class.h",
1611 "xfa/fxjse/context.cpp",
1612 "xfa/fxjse/context.h",
1613 "xfa/fxjse/dynprop.cpp",
1614 "xfa/fxjse/runtime.cpp",
1615 "xfa/fxjse/runtime.h",
1616 "xfa/fxjse/scope_inline.h",
1617 "xfa/fxjse/util_inline.h",
1618 "xfa/fxjse/value.cpp",
1619 "xfa/fxjse/value.h",
Tom Sepezb36747d2015-12-08 15:49:25 -08001620 ]
1621 include_dirs += [
1622 "//v8",
1623 "//v8/include",
1624 ]
1625 public_deps = [
1626 "//v8",
1627 ]
1628 deps = [
1629 "//v8:v8_libplatform",
1630 ]
1631 }
1632 configs -= [ "//build/config/compiler:chromium_code" ]
1633 configs += [
1634 ":pdfium_config",
1635 "//build/config/compiler:no_chromium_code",
Tom Sepez452b4f32015-10-13 09:27:27 -07001636 ]
1637 }
Tom Sepezc706fc02014-11-14 13:39:20 -08001638}
Tom Sepez04681f32015-01-09 13:59:19 -08001639
1640test("pdfium_unittests") {
1641 sources = [
Dan Sinclair764ec512016-03-14 13:35:12 -04001642 "core/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp",
1643 "core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp",
1644 "core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp",
dsinclaird80e0a72016-04-04 09:38:55 -07001645 "core/fpdfapi/fpdf_page/fpdf_page_parser_unittest.cpp",
Dan Sinclair764ec512016-03-14 13:35:12 -04001646 "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp",
1647 "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp",
1648 "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp",
1649 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp",
1650 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp",
1651 "core/fpdfdoc/doc_basic_unittest.cpp",
1652 "core/fpdftext/fpdf_text_int_unittest.cpp",
1653 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp",
tsepez602aebc2016-03-29 15:04:21 -07001654 "core/fxcrt/cfx_retain_ptr_unittest.cpp",
Dan Sinclair764ec512016-03-14 13:35:12 -04001655 "core/fxcrt/fx_basic_bstring_unittest.cpp",
1656 "core/fxcrt/fx_basic_gcc_unittest.cpp",
1657 "core/fxcrt/fx_basic_memmgr_unittest.cpp",
1658 "core/fxcrt/fx_basic_wstring_unittest.cpp",
1659 "core/fxcrt/fx_bidi_unittest.cpp",
1660 "core/fxcrt/fx_extension_unittest.cpp",
1661 "core/fxcrt/fx_system_unittest.cpp",
Dan Sinclairf766ad22016-03-14 13:51:24 -04001662 "fpdfsdk/fpdfdoc_unittest.cpp",
Tom Sepez04681f32015-01-09 13:59:19 -08001663 ]
1664 deps = [
Tom Sepezd831dc72015-10-19 16:04:22 -07001665 ":pdfium",
1666 ":test_support",
Dan Sinclairfffc9632016-03-08 08:57:05 -05001667 "//testing/gtest",
1668 "//testing/gtest:gtest_main",
Tom Sepez04681f32015-01-09 13:59:19 -08001669 ]
Dan Sinclair30410ce2016-03-16 10:20:24 -04001670 include_dirs = []
Tom Sepezd2e023b2015-12-08 14:36:16 -08001671 if (pdf_enable_xfa) {
1672 sources += [
dsinclair11ac93c2016-03-31 09:45:20 -07001673 "xfa/fde/xml/fde_xml_imp_unittest.cpp",
Dan Sinclair1770c022016-03-14 14:14:16 -04001674 "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp",
1675 "xfa/fxfa/parser/xfa_utils_imp_unittest.cpp",
Tom Sepezd2e023b2015-12-08 14:36:16 -08001676 ]
1677 }
Wei Li614d20a2016-03-15 13:55:12 -07001678 if (pdf_enable_v8) {
Dan Sinclair811b8a42016-03-17 08:59:42 -04001679 sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ]
Wei Li614d20a2016-03-15 13:55:12 -07001680 include_dirs += [
1681 "//v8",
1682 "//v8/include",
1683 ]
1684 }
Lei Zhang476ac132015-11-05 20:07:27 -08001685 configs += [ ":pdfium_config" ]
Tom Sepez04681f32015-01-09 13:59:19 -08001686}
Tom Sepez1b1bb492015-01-22 17:36:32 -08001687
1688test("pdfium_embeddertests") {
1689 sources = [
Dan Sinclair764ec512016-03-14 13:35:12 -04001690 "core/fpdfapi/fpdf_page/fpdf_page_func_embeddertest.cpp",
1691 "core/fpdfapi/fpdf_parser/cpdf_parser_embeddertest.cpp",
1692 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_embeddertest.cpp",
1693 "core/fpdfapi/fpdf_render/fpdf_render_loadimage_embeddertest.cpp",
1694 "core/fpdfapi/fpdf_render/fpdf_render_pattern_embeddertest.cpp",
Dan Sinclairf766ad22016-03-14 13:51:24 -04001695 "fpdfsdk/fpdf_dataavail_embeddertest.cpp",
1696 "fpdfsdk/fpdfdoc_embeddertest.cpp",
1697 "fpdfsdk/fpdfedit_embeddertest.cpp",
1698 "fpdfsdk/fpdfext_embeddertest.cpp",
1699 "fpdfsdk/fpdfformfill_embeddertest.cpp",
1700 "fpdfsdk/fpdfsave_embeddertest.cpp",
1701 "fpdfsdk/fpdftext_embeddertest.cpp",
1702 "fpdfsdk/fpdfview_c_api_test.c",
1703 "fpdfsdk/fpdfview_c_api_test.h",
1704 "fpdfsdk/fpdfview_embeddertest.cpp",
1705 "fpdfsdk/fsdk_baseform_embeddertest.cpp",
Tom Sepez1b1bb492015-01-22 17:36:32 -08001706 "testing/embedder_test.cpp",
1707 "testing/embedder_test.h",
Tom Sepeza310e002015-02-27 13:03:07 -08001708 "testing/embedder_test_mock_delegate.h",
Tom Sepez6efc0ad2015-06-02 17:11:18 -07001709 "testing/embedder_test_timer_handling_delegate.h",
Dan Sinclair1770c022016-03-14 14:14:16 -04001710 "xfa/fxfa/parser/xfa_parser_imp_embeddertest.cpp",
Tom Sepez1b1bb492015-01-22 17:36:32 -08001711 ]
1712 deps = [
Tom Sepez452b4f32015-10-13 09:27:27 -07001713 ":pdfium",
Tom Sepezd831dc72015-10-19 16:04:22 -07001714 ":test_support",
Dan Sinclairfffc9632016-03-08 08:57:05 -05001715 "//testing/gmock",
1716 "//testing/gtest",
Tom Sepez1b1bb492015-01-22 17:36:32 -08001717 ]
Lei Zhang8241df72015-11-06 14:38:48 -08001718 include_dirs = []
Tom Sepez452b4f32015-10-13 09:27:27 -07001719 if (pdf_enable_v8) {
Lei Zhang1ac47eb2015-12-21 11:04:44 -08001720 sources += [
Dan Sinclairf766ad22016-03-14 13:51:24 -04001721 "fpdfsdk/javascript/public_methods_embeddertest.cpp",
1722 "fpdfsdk/jsapi/fxjs_v8_embeddertest.cpp",
Lei Zhang1ac47eb2015-12-21 11:04:44 -08001723 "testing/js_embedder_test.cpp",
1724 "testing/js_embedder_test.h",
1725 ]
Tom Sepez452b4f32015-10-13 09:27:27 -07001726 deps += [
1727 "//v8",
1728 "//v8:v8_libplatform",
1729 ]
1730 include_dirs += [
1731 "//v8",
1732 "//v8/include",
1733 ]
Jochen Eisinger7ed503d2015-12-10 14:38:06 +01001734 configs += [ "//v8:external_startup_data" ]
Tom Sepez452b4f32015-10-13 09:27:27 -07001735 }
Lei Zhang476ac132015-11-05 20:07:27 -08001736 configs += [ ":pdfium_config" ]
Tom Sepez1b1bb492015-01-22 17:36:32 -08001737}