John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1 | # 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 | |
| 5 | pdf_use_skia = false |
| 6 | |
| 7 | config("pdfium_config") { |
| 8 | cflags = [] |
Bo Xu | 4c764f3 | 2014-12-19 14:29:17 -0800 | [diff] [blame] | 9 | include_dirs = [ |
| 10 | "third_party/freetype/include" |
| 11 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 12 | defines = [ |
Bo Xu | 4c764f3 | 2014-12-19 14:29:17 -0800 | [diff] [blame] | 13 | "FT2_BUILD_LIBRARY", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 14 | "_FPDFSDK_LIB", |
| 15 | "_NO_GDIPLUS_", # workaround text rendering issues on Windows |
| 16 | ] |
| 17 | |
| 18 | if (pdf_use_skia) { |
| 19 | defines += [ "_SKIA_SUPPORT_" ] |
| 20 | } |
| 21 | |
| 22 | if (is_linux) { |
| 23 | if (cpu_arch == "x64") { |
| 24 | defines += [ "_FX_CPU_=_FX_X64_" ] |
| 25 | cflags += [ "-fPIC" ] |
| 26 | } else if (cpu_arch == "x86") { |
| 27 | defines += [ "_FX_CPU_=_FX_X86_" ] |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | if (is_win) { |
| 32 | cflags += [ |
| 33 | "/wd4005", |
| 34 | "/wd4018", |
| 35 | "/wd4146", |
| 36 | "/wd4333", |
| 37 | "/wd4345", |
| 38 | ] |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | static_library("pdfium") { |
| 43 | sources = [ |
| 44 | "fpdfsdk/include/fpdfdoc.h", |
| 45 | "fpdfsdk/include/fpdfedit.h", |
| 46 | "fpdfsdk/include/fpdfformfill.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 47 | "fpdfsdk/include/fpdftext.h", |
| 48 | "fpdfsdk/include/fpdfview.h", |
| 49 | "fpdfsdk/include/fpdf_dataavail.h", |
| 50 | "fpdfsdk/include/fpdf_flatten.h", |
| 51 | "fpdfsdk/include/fpdf_progressive.h", |
| 52 | "fpdfsdk/include/fpdf_searchex.h", |
| 53 | "fpdfsdk/include/fpdf_sysfontinfo.h", |
| 54 | "fpdfsdk/include/fpdf_ext.h", |
| 55 | "fpdfsdk/include/fpdf_sysfontinfo.h", |
| 56 | "fpdfsdk/include/fsdk_actionhandler.h", |
| 57 | "fpdfsdk/include/fsdk_annothandler.h", |
| 58 | "fpdfsdk/include/fsdk_baseannot.h", |
| 59 | "fpdfsdk/include/fsdk_baseform.h", |
| 60 | "fpdfsdk/src/fpdfdoc.cpp", |
| 61 | "fpdfsdk/src/fpdfeditimg.cpp", |
| 62 | "fpdfsdk/src/fpdfeditpage.cpp", |
| 63 | "fpdfsdk/src/fpdfformfill.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 64 | "fpdfsdk/src/fpdfppo.cpp", |
| 65 | "fpdfsdk/src/fpdfsave.cpp", |
| 66 | "fpdfsdk/src/fpdftext.cpp", |
| 67 | "fpdfsdk/src/fpdfview.cpp", |
| 68 | "fpdfsdk/src/fpdf_dataavail.cpp", |
| 69 | "fpdfsdk/src/fpdf_ext.cpp", |
| 70 | "fpdfsdk/src/fpdf_flatten.cpp", |
| 71 | "fpdfsdk/src/fpdf_progressive.cpp", |
| 72 | "fpdfsdk/src/fpdf_searchex.cpp", |
| 73 | "fpdfsdk/src/fpdf_sysfontinfo.cpp", |
| 74 | "fpdfsdk/src/fsdk_actionhandler.cpp", |
| 75 | "fpdfsdk/src/fsdk_annothandler.cpp", |
| 76 | "fpdfsdk/src/fsdk_baseannot.cpp", |
| 77 | "fpdfsdk/src/fsdk_baseform.cpp", |
| 78 | "fpdfsdk/src/fsdk_mgr.cpp", |
| 79 | "fpdfsdk/src/fsdk_rendercontext.cpp", |
| 80 | "fpdfsdk/src/fpdfsdkdll.rc", |
| 81 | "fpdfsdk/src/resource.h", |
| 82 | "fpdfsdk/include/fpdf_transformpage.h", |
| 83 | "fpdfsdk/src/fpdf_transformpage.cpp", |
| 84 | ] |
| 85 | |
| 86 | libs = [] |
| 87 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 88 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 89 | |
| 90 | deps = [ |
Bo Xu | 4c764f3 | 2014-12-19 14:29:17 -0800 | [diff] [blame] | 91 | "third_party:bigint", |
| 92 | "third_party:freetype", |
| 93 | "third_party:safemath", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 94 | ":fdrm", |
| 95 | ":formfiller", |
| 96 | ":fpdfapi", |
| 97 | ":fpdfdoc", |
| 98 | ":fpdftext", |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 99 | ":fpdfxfa", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 100 | ":fxcodec", |
| 101 | ":fxcrt", |
| 102 | ":fxedit", |
| 103 | ":fxge", |
| 104 | ":javascript", |
| 105 | ":jsapi", |
| 106 | ":pdfwindow", |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 107 | ":xfa", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 108 | ] |
| 109 | |
| 110 | if (is_win) { |
| 111 | libs += [ "advapi32.lib", "gdi32.lib", "user32.lib" ] |
| 112 | } |
| 113 | |
| 114 | if (is_mac) { |
| 115 | libs += [ "AppKit.framework", "CoreFoundation.framework" ] |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | # Targets below this are only visible within this file. |
Brett Wilson | edbf8ac | 2014-09-08 16:36:48 -0700 | [diff] [blame] | 120 | visibility = [ ":*" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 121 | |
| 122 | static_library("fdrm") { |
| 123 | sources = [ |
| 124 | "core/include/fdrm/fx_crypt.h", |
| 125 | "core/src/fdrm/crypto/fx_crypt.cpp", |
| 126 | "core/src/fdrm/crypto/fx_crypt_aes.cpp", |
| 127 | "core/src/fdrm/crypto/fx_crypt_sha.cpp", |
| 128 | ] |
| 129 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 130 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 131 | } |
| 132 | |
| 133 | static_library("fpdfdoc") { |
| 134 | sources = [ |
| 135 | "core/include/fpdfdoc/fpdf_ap.h", |
| 136 | "core/include/fpdfdoc/fpdf_doc.h", |
| 137 | "core/include/fpdfdoc/fpdf_tagged.h", |
| 138 | "core/include/fpdfdoc/fpdf_vt.h", |
| 139 | "core/src/fpdfdoc/doc_action.cpp", |
| 140 | "core/src/fpdfdoc/doc_annot.cpp", |
| 141 | "core/src/fpdfdoc/doc_ap.cpp", |
| 142 | "core/src/fpdfdoc/doc_basic.cpp", |
| 143 | "core/src/fpdfdoc/doc_bookmark.cpp", |
| 144 | "core/src/fpdfdoc/doc_form.cpp", |
| 145 | "core/src/fpdfdoc/doc_formcontrol.cpp", |
| 146 | "core/src/fpdfdoc/doc_formfield.cpp", |
| 147 | "core/src/fpdfdoc/doc_link.cpp", |
| 148 | "core/src/fpdfdoc/doc_metadata.cpp", |
| 149 | "core/src/fpdfdoc/doc_ocg.cpp", |
| 150 | "core/src/fpdfdoc/doc_tagged.cpp", |
| 151 | "core/src/fpdfdoc/doc_utils.cpp", |
| 152 | "core/src/fpdfdoc/doc_viewerPreferences.cpp", |
| 153 | "core/src/fpdfdoc/doc_vt.cpp", |
| 154 | "core/src/fpdfdoc/doc_vtmodule.cpp", |
| 155 | "core/src/fpdfdoc/pdf_vt.h", |
| 156 | "core/src/fpdfdoc/tagged_int.h", |
| 157 | ] |
| 158 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 159 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 160 | } |
| 161 | |
| 162 | |
| 163 | static_library("fpdfapi") { |
| 164 | sources = [ |
| 165 | "core/include/fpdfapi/fpdfapi.h", |
| 166 | "core/include/fpdfapi/fpdf_module.h", |
| 167 | "core/include/fpdfapi/fpdf_objects.h", |
| 168 | "core/include/fpdfapi/fpdf_page.h", |
| 169 | "core/include/fpdfapi/fpdf_pageobj.h", |
| 170 | "core/include/fpdfapi/fpdf_parser.h", |
| 171 | "core/include/fpdfapi/fpdf_render.h", |
| 172 | "core/include/fpdfapi/fpdf_resource.h", |
| 173 | "core/include/fpdfapi/fpdf_serial.h", |
| 174 | "core/src/fpdfapi/fpdf_basic_module.cpp", |
| 175 | "core/src/fpdfapi/fpdf_cmaps/cmap_int.h", |
| 176 | "core/src/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp", |
| 177 | "core/src/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp", |
| 178 | "core/src/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp", |
| 179 | "core/src/fpdfapi/fpdf_cmaps/CNS1/cmaps_cns1.cpp", |
| 180 | "core/src/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp", |
| 181 | "core/src/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp", |
| 182 | "core/src/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp", |
| 183 | "core/src/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-V_0.cpp", |
| 184 | "core/src/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-H_0.cpp", |
| 185 | "core/src/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-V_0.cpp", |
| 186 | "core/src/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-H_5.cpp", |
| 187 | "core/src/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-V_5.cpp", |
| 188 | "core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-H_3.cpp", |
| 189 | "core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-V_3.cpp", |
| 190 | "core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UTF16-H_0.cpp", |
| 191 | "core/src/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp", |
| 192 | "core/src/fpdfapi/fpdf_cmaps/GB1/Adobe-GB1-UCS2_5.cpp", |
| 193 | "core/src/fpdfapi/fpdf_cmaps/GB1/cmaps_gb1.cpp", |
| 194 | "core/src/fpdfapi/fpdf_cmaps/GB1/GB-EUC-H_0.cpp", |
| 195 | "core/src/fpdfapi/fpdf_cmaps/GB1/GB-EUC-V_0.cpp", |
| 196 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-H_2.cpp", |
| 197 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-V_2.cpp", |
| 198 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBK2K-H_5.cpp", |
| 199 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBK2K-V_5.cpp", |
| 200 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-H_2.cpp", |
| 201 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-V_2.cpp", |
| 202 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-H_0.cpp", |
| 203 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-V_0.cpp", |
| 204 | "core/src/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-H_4.cpp", |
| 205 | "core/src/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-V_4.cpp", |
| 206 | "core/src/fpdfapi/fpdf_cmaps/Japan1/83pv-RKSJ-H_1.cpp", |
| 207 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-H_2.cpp", |
| 208 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-V_2.cpp", |
| 209 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-H_2.cpp", |
| 210 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-V_2.cpp", |
| 211 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90pv-RKSJ-H_1.cpp", |
| 212 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-H_1.cpp", |
| 213 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-V_1.cpp", |
| 214 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Adobe-Japan1-UCS2_4.cpp", |
| 215 | "core/src/fpdfapi/fpdf_cmaps/Japan1/cmaps_japan1.cpp", |
| 216 | "core/src/fpdfapi/fpdf_cmaps/Japan1/EUC-H_1.cpp", |
| 217 | "core/src/fpdfapi/fpdf_cmaps/Japan1/EUC-V_1.cpp", |
| 218 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-H_2.cpp", |
| 219 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-V_2.cpp", |
| 220 | "core/src/fpdfapi/fpdf_cmaps/Japan1/H_1.cpp", |
| 221 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-H_4.cpp", |
| 222 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-V_4.cpp", |
| 223 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-H_4.cpp", |
| 224 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-V_4.cpp", |
| 225 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UTF16-H_5.cpp", |
| 226 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UTF16-V_5.cpp", |
| 227 | "core/src/fpdfapi/fpdf_cmaps/Japan1/V_1.cpp", |
| 228 | "core/src/fpdfapi/fpdf_cmaps/Korea1/Adobe-Korea1-UCS2_2.cpp", |
| 229 | "core/src/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp", |
| 230 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-H_0.cpp", |
| 231 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-V_0.cpp", |
| 232 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-H_1.cpp", |
| 233 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-V_1.cpp", |
| 234 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-H_1.cpp", |
| 235 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-V_1.cpp", |
| 236 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCpc-EUC-H_0.cpp", |
| 237 | "core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-H_1.cpp", |
| 238 | "core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-V_1.cpp", |
| 239 | "core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UTF16-H_0.cpp", |
| 240 | "core/src/fpdfapi/fpdf_edit/editint.h", |
| 241 | "core/src/fpdfapi/fpdf_edit/fpdf_edit_content.cpp", |
| 242 | "core/src/fpdfapi/fpdf_edit/fpdf_edit_create.cpp", |
| 243 | "core/src/fpdfapi/fpdf_edit/fpdf_edit_doc.cpp", |
| 244 | "core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp", |
| 245 | "core/src/fpdfapi/fpdf_font/common.h", |
| 246 | "core/src/fpdfapi/fpdf_font/font_int.h", |
| 247 | "core/src/fpdfapi/fpdf_font/fpdf_font.cpp", |
| 248 | "core/src/fpdfapi/fpdf_font/fpdf_font_charset.cpp", |
| 249 | "core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp", |
| 250 | "core/src/fpdfapi/fpdf_font/fpdf_font_utility.cpp", |
| 251 | "core/src/fpdfapi/fpdf_font/ttgsubtable.cpp", |
| 252 | "core/src/fpdfapi/fpdf_font/ttgsubtable.h", |
| 253 | "core/src/fpdfapi/fpdf_page/fpdf_page.cpp", |
| 254 | "core/src/fpdfapi/fpdf_page/fpdf_page_colors.cpp", |
| 255 | "core/src/fpdfapi/fpdf_page/fpdf_page_doc.cpp", |
| 256 | "core/src/fpdfapi/fpdf_page/fpdf_page_func.cpp", |
| 257 | "core/src/fpdfapi/fpdf_page/fpdf_page_graph_state.cpp", |
| 258 | "core/src/fpdfapi/fpdf_page/fpdf_page_image.cpp", |
| 259 | "core/src/fpdfapi/fpdf_page/fpdf_page_parser.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 260 | "core/src/fpdfapi/fpdf_page/fpdf_page_parser_old.cpp", |
| 261 | "core/src/fpdfapi/fpdf_page/fpdf_page_path.cpp", |
| 262 | "core/src/fpdfapi/fpdf_page/fpdf_page_pattern.cpp", |
| 263 | "core/src/fpdfapi/fpdf_page/pageint.h", |
| 264 | "core/src/fpdfapi/fpdf_parser/filters_int.h", |
| 265 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode.cpp", |
| 266 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_document.cpp", |
| 267 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_encrypt.cpp", |
| 268 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_fdf.cpp", |
| 269 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_filters.cpp", |
| 270 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp", |
| 271 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser.cpp", |
| 272 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_utility.cpp", |
| 273 | "core/src/fpdfapi/fpdf_render/fpdf_render.cpp", |
| 274 | "core/src/fpdfapi/fpdf_render/fpdf_render_cache.cpp", |
| 275 | "core/src/fpdfapi/fpdf_render/fpdf_render_image.cpp", |
| 276 | "core/src/fpdfapi/fpdf_render/fpdf_render_loadimage.cpp", |
| 277 | "core/src/fpdfapi/fpdf_render/fpdf_render_pattern.cpp", |
| 278 | "core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp", |
| 279 | "core/src/fpdfapi/fpdf_render/render_int.h", |
| 280 | ] |
| 281 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 282 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 283 | } |
| 284 | |
| 285 | static_library("fpdftext") { |
| 286 | sources = [ |
| 287 | "core/include/fpdftext/fpdf_text.h", |
| 288 | "core/src/fpdftext/fpdf_text.cpp", |
| 289 | "core/src/fpdftext/fpdf_text_int.cpp", |
| 290 | "core/src/fpdftext/fpdf_text_search.cpp", |
| 291 | "core/src/fpdftext/text_int.h", |
| 292 | "core/src/fpdftext/txtproc.h", |
| 293 | "core/src/fpdftext/unicodenormalization.cpp", |
| 294 | "core/src/fpdftext/unicodenormalizationdata.cpp", |
| 295 | ] |
| 296 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 297 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 298 | } |
| 299 | |
| 300 | static_library("fxcodec") { |
| 301 | sources = [ |
| 302 | "core/include/fxcodec/fx_codec.h", |
| 303 | "core/include/fxcodec/fx_codec_def.h", |
| 304 | "core/include/fxcodec/fx_codec_provider.h", |
| 305 | "core/src/fxcodec/codec/codec_int.h", |
| 306 | "core/src/fxcodec/codec/fx_codec.cpp", |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 307 | "core/src/fxcodec/codec/fx_codec_bmp.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 308 | "core/src/fxcodec/codec/fx_codec_fax.cpp", |
| 309 | "core/src/fxcodec/codec/fx_codec_flate.cpp", |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 310 | "core/src/fxcodec/codec/fx_codec_gif.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 311 | "core/src/fxcodec/codec/fx_codec_icc.cpp", |
| 312 | "core/src/fxcodec/codec/fx_codec_jbig.cpp", |
| 313 | "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", |
| 314 | "core/src/fxcodec/codec/fx_codec_jpeg.cpp", |
| 315 | "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 316 | "core/src/fxcodec/codec/fx_codec_png.cpp", |
| 317 | "core/src/fxcodec/codec/fx_codec_progress.cpp", |
| 318 | "core/src/fxcodec/codec/fx_codec_progress.h", |
| 319 | "core/src/fxcodec/codec/fx_codec_tiff.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 320 | "core/src/fxcodec/fx_libopenjpeg/include/fx_openjpeg.h", |
| 321 | "core/src/fxcodec/fx_libopenjpeg/src/fx_bio.c", |
| 322 | "core/src/fxcodec/fx_libopenjpeg/src/fx_cio.c", |
| 323 | "core/src/fxcodec/fx_libopenjpeg/src/fx_dwt.c", |
| 324 | "core/src/fxcodec/fx_libopenjpeg/src/fx_event.c", |
| 325 | "core/src/fxcodec/fx_libopenjpeg/src/fx_function_list.c", |
| 326 | "core/src/fxcodec/fx_libopenjpeg/src/fx_image.c", |
| 327 | "core/src/fxcodec/fx_libopenjpeg/src/fx_invert.c", |
| 328 | "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k.c", |
| 329 | "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k_lib.c", |
| 330 | "core/src/fxcodec/fx_libopenjpeg/src/fx_jpt.c", |
| 331 | "core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c", |
| 332 | "core/src/fxcodec/fx_libopenjpeg/src/fx_mqc.c", |
| 333 | "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg.c", |
| 334 | "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg_jp2.c", |
| 335 | "core/src/fxcodec/fx_libopenjpeg/src/fx_opj_clock.c", |
| 336 | "core/src/fxcodec/fx_libopenjpeg/src/fx_pi.c", |
| 337 | "core/src/fxcodec/fx_libopenjpeg/src/fx_raw.c", |
| 338 | "core/src/fxcodec/fx_libopenjpeg/src/fx_t1.c", |
| 339 | "core/src/fxcodec/fx_libopenjpeg/src/fx_t1_generate_luts.c", |
| 340 | "core/src/fxcodec/fx_libopenjpeg/src/fx_t2.c", |
| 341 | "core/src/fxcodec/fx_libopenjpeg/src/fx_tcd.c", |
| 342 | "core/src/fxcodec/fx_libopenjpeg/src/fx_tgt.c", |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 343 | "core/src/fxcodec/fx_lpng/src/fx_png.c", |
| 344 | "core/src/fxcodec/fx_lpng/src/fx_pngerror.c", |
| 345 | "core/src/fxcodec/fx_lpng/src/fx_pngget.c", |
| 346 | "core/src/fxcodec/fx_lpng/src/fx_pngmem.c", |
| 347 | "core/src/fxcodec/fx_lpng/src/fx_pngpread.c", |
| 348 | "core/src/fxcodec/fx_lpng/src/fx_pngread.c", |
| 349 | "core/src/fxcodec/fx_lpng/src/fx_pngrio.c", |
| 350 | "core/src/fxcodec/fx_lpng/src/fx_pngrtran.c", |
| 351 | "core/src/fxcodec/fx_lpng/src/fx_pngrutil.c", |
| 352 | "core/src/fxcodec/fx_lpng/src/fx_pngset.c", |
| 353 | "core/src/fxcodec/fx_lpng/src/fx_pngtrans.c", |
| 354 | "core/src/fxcodec/fx_lpng/src/fx_pngwio.c", |
| 355 | "core/src/fxcodec/fx_lpng/src/fx_pngwrite.c", |
| 356 | "core/src/fxcodec/fx_lpng/src/fx_pngwtran.c", |
| 357 | "core/src/fxcodec/fx_lpng/src/fx_pngwutil.c", |
| 358 | "core/src/fxcodec/fx_tiff/include/fx_tiffiop.h", |
| 359 | "core/src/fxcodec/fx_tiff/src/fx_tif_aux.c", |
| 360 | "core/src/fxcodec/fx_tiff/src/fx_tif_close.c", |
| 361 | "core/src/fxcodec/fx_tiff/src/fx_tif_codec.c", |
| 362 | "core/src/fxcodec/fx_tiff/src/fx_tif_color.c", |
| 363 | "core/src/fxcodec/fx_tiff/src/fx_tif_compress.c", |
| 364 | "core/src/fxcodec/fx_tiff/src/fx_tif_dir.c", |
| 365 | "core/src/fxcodec/fx_tiff/src/fx_tif_dirinfo.c", |
| 366 | "core/src/fxcodec/fx_tiff/src/fx_tif_dirread.c", |
| 367 | "core/src/fxcodec/fx_tiff/src/fx_tif_dirwrite.c", |
| 368 | "core/src/fxcodec/fx_tiff/src/fx_tif_dumpmode.c", |
| 369 | "core/src/fxcodec/fx_tiff/src/fx_tif_error.c", |
| 370 | "core/src/fxcodec/fx_tiff/src/fx_tif_extension.c", |
| 371 | "core/src/fxcodec/fx_tiff/src/fx_tif_fax3.c", |
| 372 | "core/src/fxcodec/fx_tiff/src/fx_tif_fax3sm.c", |
| 373 | "core/src/fxcodec/fx_tiff/src/fx_tif_flush.c", |
| 374 | "core/src/fxcodec/fx_tiff/src/fx_tif_getimage.c", |
| 375 | "core/src/fxcodec/fx_tiff/src/fx_tif_jpeg.c", |
| 376 | "core/src/fxcodec/fx_tiff/src/fx_tif_luv.c", |
| 377 | "core/src/fxcodec/fx_tiff/src/fx_tif_lzw.c", |
| 378 | "core/src/fxcodec/fx_tiff/src/fx_tif_next.c", |
| 379 | "core/src/fxcodec/fx_tiff/src/fx_tif_ojpeg.c", |
| 380 | "core/src/fxcodec/fx_tiff/src/fx_tif_open.c", |
| 381 | "core/src/fxcodec/fx_tiff/src/fx_tif_packbits.c", |
| 382 | "core/src/fxcodec/fx_tiff/src/fx_tif_pixarlog.c", |
| 383 | "core/src/fxcodec/fx_tiff/src/fx_tif_predict.c", |
| 384 | "core/src/fxcodec/fx_tiff/src/fx_tif_print.c", |
| 385 | "core/src/fxcodec/fx_tiff/src/fx_tif_read.c", |
| 386 | "core/src/fxcodec/fx_tiff/src/fx_tif_strip.c", |
| 387 | "core/src/fxcodec/fx_tiff/src/fx_tif_swab.c", |
| 388 | "core/src/fxcodec/fx_tiff/src/fx_tif_thunder.c", |
| 389 | "core/src/fxcodec/fx_tiff/src/fx_tif_tile.c", |
| 390 | "core/src/fxcodec/fx_tiff/src/fx_tif_version.c", |
| 391 | "core/src/fxcodec/fx_tiff/src/fx_tif_warning.c", |
| 392 | "core/src/fxcodec/fx_tiff/src/fx_tif_write.c", |
| 393 | "core/src/fxcodec/fx_tiff/src/fx_tif_zip.c", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 394 | "core/src/fxcodec/fx_zlib/include/fx_zlib.h", |
| 395 | "core/src/fxcodec/fx_zlib/src/fx_zlib_adler32.c", |
| 396 | "core/src/fxcodec/fx_zlib/src/fx_zlib_compress.c", |
| 397 | "core/src/fxcodec/fx_zlib/src/fx_zlib_crc32.c", |
| 398 | "core/src/fxcodec/fx_zlib/src/fx_zlib_deflate.c", |
| 399 | "core/src/fxcodec/fx_zlib/src/fx_zlib_gzclose.c", |
| 400 | "core/src/fxcodec/fx_zlib/src/fx_zlib_gzlib.c", |
| 401 | "core/src/fxcodec/fx_zlib/src/fx_zlib_gzread.c", |
| 402 | "core/src/fxcodec/fx_zlib/src/fx_zlib_gzwrite.c", |
| 403 | "core/src/fxcodec/fx_zlib/src/fx_zlib_infback.c", |
| 404 | "core/src/fxcodec/fx_zlib/src/fx_zlib_inffast.c", |
| 405 | "core/src/fxcodec/fx_zlib/src/fx_zlib_inflate.c", |
| 406 | "core/src/fxcodec/fx_zlib/src/fx_zlib_inftrees.c", |
| 407 | "core/src/fxcodec/fx_zlib/src/fx_zlib_trees.c", |
| 408 | "core/src/fxcodec/fx_zlib/src/fx_zlib_uncompr.c", |
| 409 | "core/src/fxcodec/fx_zlib/src/fx_zlib_zutil.c", |
| 410 | "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", |
| 411 | "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
| 412 | "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| 413 | "core/src/fxcodec/jbig2/JBig2_ArithQe.h", |
| 414 | "core/src/fxcodec/jbig2/JBig2_BitStream.h", |
| 415 | "core/src/fxcodec/jbig2/JBig2_Context.cpp", |
| 416 | "core/src/fxcodec/jbig2/JBig2_Context.h", |
| 417 | "core/src/fxcodec/jbig2/JBig2_Define.h", |
| 418 | "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.cpp", |
| 419 | "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h", |
| 420 | "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp", |
| 421 | "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.h", |
| 422 | "core/src/fxcodec/jbig2/JBig2_HuffmanTable.cpp", |
| 423 | "core/src/fxcodec/jbig2/JBig2_HuffmanTable.h", |
| 424 | "core/src/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h", |
| 425 | "core/src/fxcodec/jbig2/JBig2_Image.cpp", |
| 426 | "core/src/fxcodec/jbig2/JBig2_Image.h", |
| 427 | "core/src/fxcodec/jbig2/JBig2_List.h", |
| 428 | "core/src/fxcodec/jbig2/JBig2_Module.h", |
| 429 | "core/src/fxcodec/jbig2/JBig2_Object.cpp", |
| 430 | "core/src/fxcodec/jbig2/JBig2_Object.h", |
| 431 | "core/src/fxcodec/jbig2/JBig2_Page.h", |
| 432 | "core/src/fxcodec/jbig2/JBig2_PatternDict.cpp", |
| 433 | "core/src/fxcodec/jbig2/JBig2_PatternDict.h", |
| 434 | "core/src/fxcodec/jbig2/JBig2_Segment.cpp", |
| 435 | "core/src/fxcodec/jbig2/JBig2_Segment.h", |
| 436 | "core/src/fxcodec/jbig2/JBig2_SymbolDict.cpp", |
| 437 | "core/src/fxcodec/jbig2/JBig2_SymbolDict.h", |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 438 | "core/src/fxcodec/lbmp/fx_bmp.cpp", |
| 439 | "core/src/fxcodec/lbmp/fx_bmp.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 440 | "core/src/fxcodec/lcms2/src/fx_cmscam02.c", |
| 441 | "core/src/fxcodec/lcms2/src/fx_cmscgats.c", |
| 442 | "core/src/fxcodec/lcms2/src/fx_cmscnvrt.c", |
| 443 | "core/src/fxcodec/lcms2/src/fx_cmserr.c", |
| 444 | "core/src/fxcodec/lcms2/src/fx_cmsgamma.c", |
| 445 | "core/src/fxcodec/lcms2/src/fx_cmsgmt.c", |
| 446 | "core/src/fxcodec/lcms2/src/fx_cmshalf.c", |
| 447 | "core/src/fxcodec/lcms2/src/fx_cmsintrp.c", |
| 448 | "core/src/fxcodec/lcms2/src/fx_cmsio0.c", |
| 449 | "core/src/fxcodec/lcms2/src/fx_cmsio1.c", |
| 450 | "core/src/fxcodec/lcms2/src/fx_cmslut.c", |
| 451 | "core/src/fxcodec/lcms2/src/fx_cmsmd5.c", |
| 452 | "core/src/fxcodec/lcms2/src/fx_cmsmtrx.c", |
| 453 | "core/src/fxcodec/lcms2/src/fx_cmsnamed.c", |
| 454 | "core/src/fxcodec/lcms2/src/fx_cmsopt.c", |
| 455 | "core/src/fxcodec/lcms2/src/fx_cmspack.c", |
| 456 | "core/src/fxcodec/lcms2/src/fx_cmspcs.c", |
| 457 | "core/src/fxcodec/lcms2/src/fx_cmsplugin.c", |
| 458 | "core/src/fxcodec/lcms2/src/fx_cmsps2.c", |
| 459 | "core/src/fxcodec/lcms2/src/fx_cmssamp.c", |
| 460 | "core/src/fxcodec/lcms2/src/fx_cmssm.c", |
| 461 | "core/src/fxcodec/lcms2/src/fx_cmstypes.c", |
| 462 | "core/src/fxcodec/lcms2/src/fx_cmsvirt.c", |
| 463 | "core/src/fxcodec/lcms2/src/fx_cmswtpnt.c", |
| 464 | "core/src/fxcodec/lcms2/src/fx_cmsxform.c", |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 465 | "core/src/fxcodec/lgif/fx_gif.cpp", |
| 466 | "core/src/fxcodec/lgif/fx_gif.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 467 | "core/src/fxcodec/libjpeg/cderror.h", |
| 468 | "core/src/fxcodec/libjpeg/cdjpeg.h", |
| 469 | "core/src/fxcodec/libjpeg/fpdfapi_jcapimin.c", |
| 470 | "core/src/fxcodec/libjpeg/fpdfapi_jcapistd.c", |
| 471 | "core/src/fxcodec/libjpeg/fpdfapi_jccoefct.c", |
| 472 | "core/src/fxcodec/libjpeg/fpdfapi_jccolor.c", |
| 473 | "core/src/fxcodec/libjpeg/fpdfapi_jcdctmgr.c", |
| 474 | "core/src/fxcodec/libjpeg/fpdfapi_jchuff.c", |
| 475 | "core/src/fxcodec/libjpeg/fpdfapi_jcinit.c", |
| 476 | "core/src/fxcodec/libjpeg/fpdfapi_jcmainct.c", |
| 477 | "core/src/fxcodec/libjpeg/fpdfapi_jcmarker.c", |
| 478 | "core/src/fxcodec/libjpeg/fpdfapi_jcmaster.c", |
| 479 | "core/src/fxcodec/libjpeg/fpdfapi_jcomapi.c", |
| 480 | "core/src/fxcodec/libjpeg/fpdfapi_jcparam.c", |
| 481 | "core/src/fxcodec/libjpeg/fpdfapi_jcphuff.c", |
| 482 | "core/src/fxcodec/libjpeg/fpdfapi_jcprepct.c", |
| 483 | "core/src/fxcodec/libjpeg/fpdfapi_jcsample.c", |
| 484 | "core/src/fxcodec/libjpeg/fpdfapi_jctrans.c", |
| 485 | "core/src/fxcodec/libjpeg/fpdfapi_jdapimin.c", |
| 486 | "core/src/fxcodec/libjpeg/fpdfapi_jdapistd.c", |
| 487 | "core/src/fxcodec/libjpeg/fpdfapi_jdcoefct.c", |
| 488 | "core/src/fxcodec/libjpeg/fpdfapi_jdcolor.c", |
| 489 | "core/src/fxcodec/libjpeg/fpdfapi_jddctmgr.c", |
| 490 | "core/src/fxcodec/libjpeg/fpdfapi_jdhuff.c", |
| 491 | "core/src/fxcodec/libjpeg/fpdfapi_jdinput.c", |
| 492 | "core/src/fxcodec/libjpeg/fpdfapi_jdmainct.c", |
| 493 | "core/src/fxcodec/libjpeg/fpdfapi_jdmarker.c", |
| 494 | "core/src/fxcodec/libjpeg/fpdfapi_jdmaster.c", |
| 495 | "core/src/fxcodec/libjpeg/fpdfapi_jdmerge.c", |
| 496 | "core/src/fxcodec/libjpeg/fpdfapi_jdphuff.c", |
| 497 | "core/src/fxcodec/libjpeg/fpdfapi_jdpostct.c", |
| 498 | "core/src/fxcodec/libjpeg/fpdfapi_jdsample.c", |
| 499 | "core/src/fxcodec/libjpeg/fpdfapi_jdtrans.c", |
| 500 | "core/src/fxcodec/libjpeg/fpdfapi_jerror.c", |
| 501 | "core/src/fxcodec/libjpeg/fpdfapi_jfdctfst.c", |
| 502 | "core/src/fxcodec/libjpeg/fpdfapi_jfdctint.c", |
| 503 | "core/src/fxcodec/libjpeg/fpdfapi_jidctfst.c", |
| 504 | "core/src/fxcodec/libjpeg/fpdfapi_jidctint.c", |
| 505 | "core/src/fxcodec/libjpeg/fpdfapi_jidctred.c", |
| 506 | "core/src/fxcodec/libjpeg/fpdfapi_jmemmgr.c", |
| 507 | "core/src/fxcodec/libjpeg/fpdfapi_jmemnobs.c", |
| 508 | "core/src/fxcodec/libjpeg/fpdfapi_jutils.c", |
| 509 | "core/src/fxcodec/libjpeg/jchuff.h", |
| 510 | "core/src/fxcodec/libjpeg/jconfig.h", |
| 511 | "core/src/fxcodec/libjpeg/jdct.h", |
| 512 | "core/src/fxcodec/libjpeg/jdhuff.h", |
| 513 | "core/src/fxcodec/libjpeg/jerror.h", |
| 514 | "core/src/fxcodec/libjpeg/jinclude.h", |
| 515 | "core/src/fxcodec/libjpeg/jmemsys.h", |
| 516 | "core/src/fxcodec/libjpeg/jmorecfg.h", |
| 517 | "core/src/fxcodec/libjpeg/jpegint.h", |
| 518 | "core/src/fxcodec/libjpeg/jpeglib.h", |
| 519 | "core/src/fxcodec/libjpeg/jversion.h", |
| 520 | "core/src/fxcodec/libjpeg/makefile", |
| 521 | "core/src/fxcodec/libjpeg/transupp.h", |
| 522 | ] |
| 523 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | def5c7d | 2014-06-09 16:07:18 -0700 | [diff] [blame] | 524 | |
| 525 | if (is_posix) { |
| 526 | # core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c does an pointer-to-int |
| 527 | # conversion to check that an address is 16-bit aligned (benign). |
| 528 | cflags_c = [ "-Wno-pointer-to-int-cast" ] |
| 529 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 530 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 531 | } |
| 532 | |
| 533 | static_library("fxcrt") { |
| 534 | sources = [ |
| 535 | "core/include/fxcrt/fx_arb.h", |
| 536 | "core/include/fxcrt/fx_basic.h", |
| 537 | "core/include/fxcrt/fx_coordinates.h", |
| 538 | "core/include/fxcrt/fx_ext.h", |
| 539 | "core/include/fxcrt/fx_memory.h", |
| 540 | "core/include/fxcrt/fx_stream.h", |
| 541 | "core/include/fxcrt/fx_string.h", |
| 542 | "core/include/fxcrt/fx_system.h", |
| 543 | "core/include/fxcrt/fx_ucd.h", |
| 544 | "core/include/fxcrt/fx_xml.h", |
| 545 | "core/src/fxcrt/extension.h", |
| 546 | "core/src/fxcrt/fxcrt_platforms.cpp", |
| 547 | "core/src/fxcrt/fxcrt_platforms.h", |
| 548 | "core/src/fxcrt/fxcrt_posix.cpp", |
| 549 | "core/src/fxcrt/fxcrt_posix.h", |
| 550 | "core/src/fxcrt/fxcrt_windows.cpp", |
| 551 | "core/src/fxcrt/fxcrt_windows.h", |
| 552 | "core/src/fxcrt/fx_arabic.cpp", |
| 553 | "core/src/fxcrt/fx_arabic.h", |
| 554 | "core/src/fxcrt/fx_basic_array.cpp", |
| 555 | "core/src/fxcrt/fx_basic_bstring.cpp", |
| 556 | "core/src/fxcrt/fx_basic_buffer.cpp", |
| 557 | "core/src/fxcrt/fx_basic_coords.cpp", |
| 558 | "core/src/fxcrt/fx_basic_gcc.cpp", |
| 559 | "core/src/fxcrt/fx_basic_list.cpp", |
| 560 | "core/src/fxcrt/fx_basic_maps.cpp", |
| 561 | "core/src/fxcrt/fx_basic_memmgr.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 562 | "core/src/fxcrt/fx_basic_plex.cpp", |
| 563 | "core/src/fxcrt/fx_basic_utf.cpp", |
| 564 | "core/src/fxcrt/fx_basic_util.cpp", |
| 565 | "core/src/fxcrt/fx_basic_wstring.cpp", |
| 566 | "core/src/fxcrt/fx_extension.cpp", |
| 567 | "core/src/fxcrt/fx_ucddata.cpp", |
| 568 | "core/src/fxcrt/fx_unicode.cpp", |
| 569 | "core/src/fxcrt/fx_xml_composer.cpp", |
| 570 | "core/src/fxcrt/fx_xml_parser.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 571 | "core/src/fxcrt/plex.h", |
| 572 | "core/src/fxcrt/xml_int.h", |
| 573 | ] |
| 574 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 575 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 576 | } |
| 577 | |
| 578 | static_library("fxge") { |
| 579 | sources = [ |
| 580 | "core/include/fxge/fpf.h", |
| 581 | "core/include/fxge/fx_dib.h", |
| 582 | "core/include/fxge/fx_font.h", |
| 583 | "core/include/fxge/fx_freetype.h", |
| 584 | "core/include/fxge/fx_ge.h", |
| 585 | "core/include/fxge/fx_ge_apple.h", |
| 586 | "core/include/fxge/fx_ge_win32.h", |
| 587 | "core/src/fxge/agg/include/fxfx_agg_basics.h", |
| 588 | "core/src/fxge/agg/include/fxfx_agg_clip_liang_barsky.h", |
| 589 | "core/src/fxge/agg/include/fxfx_agg_conv_dash.h", |
| 590 | "core/src/fxge/agg/include/fxfx_agg_conv_stroke.h", |
| 591 | "core/src/fxge/agg/include/fxfx_agg_curves.h", |
| 592 | "core/src/fxge/agg/include/fxfx_agg_path_storage.h", |
| 593 | "core/src/fxge/agg/include/fxfx_agg_rasterizer_scanline_aa.h", |
| 594 | "core/src/fxge/agg/include/fxfx_agg_renderer_scanline.h", |
| 595 | "core/src/fxge/agg/include/fxfx_agg_rendering_buffer.h", |
| 596 | "core/src/fxge/agg/include/fxfx_agg_scanline_u.h", |
| 597 | "core/src/fxge/agg/include/fx_agg_driver.h", |
| 598 | "core/src/fxge/agg/src/fxfx_agg_curves.cpp", |
| 599 | "core/src/fxge/agg/src/fxfx_agg_driver.cpp", |
| 600 | "core/src/fxge/agg/src/fxfx_agg_path_storage.cpp", |
| 601 | "core/src/fxge/agg/src/fxfx_agg_rasterizer_scanline_aa.cpp", |
| 602 | "core/src/fxge/agg/src/fxfx_agg_vcgen_dash.cpp", |
| 603 | "core/src/fxge/agg/src/fxfx_agg_vcgen_stroke.cpp", |
| 604 | "core/src/fxge/android/fpf_skiafont.cpp", |
| 605 | "core/src/fxge/android/fpf_skiafont.h", |
| 606 | "core/src/fxge/android/fpf_skiafontmgr.cpp", |
| 607 | "core/src/fxge/android/fpf_skiafontmgr.h", |
| 608 | "core/src/fxge/android/fpf_skiamodule.cpp", |
| 609 | "core/src/fxge/android/fpf_skiamodule.h", |
| 610 | "core/src/fxge/android/fx_android_font.cpp", |
| 611 | "core/src/fxge/android/fx_android_font.h", |
| 612 | "core/src/fxge/android/fx_android_imp.cpp", |
| 613 | "core/src/fxge/android/fx_fpf.h", |
| 614 | "core/src/fxge/apple/apple_int.h", |
| 615 | "core/src/fxge/apple/fx_apple_platform.cpp", |
| 616 | "core/src/fxge/apple/fx_mac_imp.cpp", |
| 617 | "core/src/fxge/apple/fx_quartz_device.cpp", |
| 618 | "core/src/fxge/dib/dib_int.h", |
| 619 | "core/src/fxge/dib/fx_dib_composite.cpp", |
| 620 | "core/src/fxge/dib/fx_dib_convert.cpp", |
| 621 | "core/src/fxge/dib/fx_dib_engine.cpp", |
| 622 | "core/src/fxge/dib/fx_dib_main.cpp", |
| 623 | "core/src/fxge/dib/fx_dib_transform.cpp", |
| 624 | "core/src/fxge/fontdata/chromefontdata/FoxitDingbats.c", |
| 625 | "core/src/fxge/fontdata/chromefontdata/FoxitFixed.c", |
| 626 | "core/src/fxge/fontdata/chromefontdata/FoxitFixedBold.c", |
| 627 | "core/src/fxge/fontdata/chromefontdata/FoxitFixedBoldItalic.c", |
| 628 | "core/src/fxge/fontdata/chromefontdata/FoxitFixedItalic.c", |
| 629 | "core/src/fxge/fontdata/chromefontdata/FoxitSans.c", |
| 630 | "core/src/fxge/fontdata/chromefontdata/FoxitSansBold.c", |
| 631 | "core/src/fxge/fontdata/chromefontdata/FoxitSansBoldItalic.c", |
| 632 | "core/src/fxge/fontdata/chromefontdata/FoxitSansItalic.c", |
| 633 | "core/src/fxge/fontdata/chromefontdata/FoxitSansMM.c", |
| 634 | "core/src/fxge/fontdata/chromefontdata/FoxitSerif.c", |
| 635 | "core/src/fxge/fontdata/chromefontdata/FoxitSerifBold.c", |
| 636 | "core/src/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.c", |
| 637 | "core/src/fxge/fontdata/chromefontdata/FoxitSerifItalic.c", |
| 638 | "core/src/fxge/fontdata/chromefontdata/FoxitSerifMM.c", |
| 639 | "core/src/fxge/fontdata/chromefontdata/FoxitSymbol.c", |
Bo Xu | 4c764f3 | 2014-12-19 14:29:17 -0800 | [diff] [blame] | 640 | "core/src/fxge/freetype/fx_freetype.c", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 641 | "core/src/fxge/ge/fx_ge.cpp", |
| 642 | "core/src/fxge/ge/fx_ge_device.cpp", |
| 643 | "core/src/fxge/ge/fx_ge_font.cpp", |
| 644 | "core/src/fxge/ge/fx_ge_fontmap.cpp", |
| 645 | "core/src/fxge/ge/fx_ge_linux.cpp", |
| 646 | "core/src/fxge/ge/fx_ge_path.cpp", |
| 647 | "core/src/fxge/ge/fx_ge_ps.cpp", |
| 648 | "core/src/fxge/ge/fx_ge_text.cpp", |
| 649 | "core/src/fxge/ge/text_int.h", |
| 650 | ] |
| 651 | |
| 652 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 653 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 654 | |
| 655 | if (pdf_use_skia) { |
| 656 | sources = [ |
| 657 | "core/src/fxge/skia/fx_skia_blitter_new.cpp", |
| 658 | "core/src/fxge/skia/fx_skia_device.cpp", |
| 659 | ] |
| 660 | include_dirs = [ |
| 661 | "//third_party/skia/include/config", |
| 662 | "//third_party/skia/include/core", |
| 663 | "//third_party/skia/include/effects", |
| 664 | "//third_party/skia/include/images", |
| 665 | "//third_party/skia/include/lazy", |
| 666 | "//third_party/skia/include/pathops", |
| 667 | "//third_party/skia/include/utils", |
| 668 | "//third_party/skia/src/core", |
| 669 | ] |
| 670 | deps = [ "//skia" ] |
| 671 | } |
| 672 | |
| 673 | if (is_win) { |
| 674 | sources += [ |
| 675 | "core/src/fxge/win32/dwrite_int.h", |
| 676 | "core/src/fxge/win32/fx_win32_device.cpp", |
| 677 | "core/src/fxge/win32/fx_win32_dib.cpp", |
| 678 | "core/src/fxge/win32/fx_win32_dwrite.cpp", |
| 679 | "core/src/fxge/win32/fx_win32_gdipext.cpp", |
| 680 | "core/src/fxge/win32/fx_win32_print.cpp", |
| 681 | "core/src/fxge/win32/win32_int.h", |
| 682 | ] |
| 683 | configs -= [ |
| 684 | "//build/config/win:lean_and_mean", |
| 685 | "//build/config/win:nominmax", |
| 686 | ] |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | static_library("fxedit") { |
| 691 | sources = [ |
| 692 | "fpdfsdk/include/fxedit/fx_edit.h", |
| 693 | "fpdfsdk/include/fxedit/fxet_edit.h", |
| 694 | "fpdfsdk/include/fxedit/fxet_list.h", |
| 695 | "fpdfsdk/include/fxedit/fxet_stub.h", |
| 696 | "fpdfsdk/src/fxedit/fxet_ap.cpp", |
| 697 | "fpdfsdk/src/fxedit/fxet_edit.cpp", |
| 698 | "fpdfsdk/src/fxedit/fxet_list.cpp", |
| 699 | "fpdfsdk/src/fxedit/fxet_module.cpp", |
| 700 | "fpdfsdk/src/fxedit/fxet_pageobjs.cpp", |
| 701 | ] |
| 702 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 703 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 704 | } |
| 705 | |
| 706 | static_library("pdfwindow") { |
| 707 | sources = [ |
| 708 | "fpdfsdk/include/pdfwindow/IPDFWindow.h", |
| 709 | "fpdfsdk/include/pdfwindow/PDFWindow.h", |
| 710 | "fpdfsdk/include/pdfwindow/PWL_Button.h", |
| 711 | "fpdfsdk/include/pdfwindow/PWL_Caret.h", |
| 712 | "fpdfsdk/include/pdfwindow/PWL_ComboBox.h", |
| 713 | "fpdfsdk/include/pdfwindow/PWL_Edit.h", |
| 714 | "fpdfsdk/include/pdfwindow/PWL_EditCtrl.h", |
| 715 | "fpdfsdk/include/pdfwindow/PWL_FontMap.h", |
| 716 | "fpdfsdk/include/pdfwindow/PWL_Icon.h", |
| 717 | "fpdfsdk/include/pdfwindow/PWL_IconList.h", |
| 718 | "fpdfsdk/include/pdfwindow/PWL_Label.h", |
| 719 | "fpdfsdk/include/pdfwindow/PWL_ListBox.h", |
| 720 | "fpdfsdk/include/pdfwindow/PWL_ListCtrl.h", |
| 721 | "fpdfsdk/include/pdfwindow/PWL_Note.h", |
| 722 | "fpdfsdk/include/pdfwindow/PWL_ScrollBar.h", |
| 723 | "fpdfsdk/include/pdfwindow/PWL_Signature.h", |
| 724 | "fpdfsdk/include/pdfwindow/PWL_SpecialButton.h", |
| 725 | "fpdfsdk/include/pdfwindow/PWL_Utils.h", |
| 726 | "fpdfsdk/include/pdfwindow/PWL_Wnd.h", |
| 727 | "fpdfsdk/src/pdfwindow/PWL_Button.cpp", |
| 728 | "fpdfsdk/src/pdfwindow/PWL_Caret.cpp", |
| 729 | "fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp", |
| 730 | "fpdfsdk/src/pdfwindow/PWL_Edit.cpp", |
| 731 | "fpdfsdk/src/pdfwindow/PWL_EditCtrl.cpp", |
| 732 | "fpdfsdk/src/pdfwindow/PWL_FontMap.cpp", |
| 733 | "fpdfsdk/src/pdfwindow/PWL_Icon.cpp", |
| 734 | "fpdfsdk/src/pdfwindow/PWL_IconList.cpp", |
| 735 | "fpdfsdk/src/pdfwindow/PWL_Label.cpp", |
| 736 | "fpdfsdk/src/pdfwindow/PWL_ListBox.cpp", |
| 737 | "fpdfsdk/src/pdfwindow/PWL_ListCtrl.cpp", |
| 738 | "fpdfsdk/src/pdfwindow/PWL_Note.cpp", |
| 739 | "fpdfsdk/src/pdfwindow/PWL_ScrollBar.cpp", |
| 740 | "fpdfsdk/src/pdfwindow/PWL_Signature.cpp", |
| 741 | "fpdfsdk/src/pdfwindow/PWL_SpecialButton.cpp", |
| 742 | "fpdfsdk/src/pdfwindow/PWL_Utils.cpp", |
| 743 | "fpdfsdk/src/pdfwindow/PWL_Wnd.cpp", |
| 744 | ] |
| 745 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 746 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 747 | } |
| 748 | |
| 749 | static_library("javascript") { |
| 750 | sources = [ |
| 751 | "fpdfsdk/include/javascript/app.h", |
| 752 | "fpdfsdk/include/javascript/color.h", |
| 753 | "fpdfsdk/include/javascript/console.h", |
| 754 | "fpdfsdk/include/javascript/Consts.h", |
| 755 | "fpdfsdk/include/javascript/Document.h", |
| 756 | "fpdfsdk/include/javascript/event.h", |
| 757 | "fpdfsdk/include/javascript/Field.h", |
| 758 | "fpdfsdk/include/javascript/global.h", |
| 759 | "fpdfsdk/include/javascript/Icon.h", |
| 760 | "fpdfsdk/include/javascript/IJavaScript.h", |
| 761 | "fpdfsdk/include/javascript/JavaScript.h", |
| 762 | "fpdfsdk/include/javascript/JS_Console.h", |
| 763 | "fpdfsdk/include/javascript/JS_Context.h", |
| 764 | "fpdfsdk/include/javascript/JS_Define.h", |
| 765 | "fpdfsdk/include/javascript/JS_EventHandler.h", |
| 766 | "fpdfsdk/include/javascript/JS_GlobalData.h", |
| 767 | "fpdfsdk/include/javascript/JS_Module.h", |
| 768 | "fpdfsdk/include/javascript/JS_Object.h", |
| 769 | "fpdfsdk/include/javascript/JS_Runtime.h", |
| 770 | "fpdfsdk/include/javascript/JS_Value.h", |
| 771 | "fpdfsdk/include/javascript/PublicMethods.h", |
| 772 | "fpdfsdk/include/javascript/report.h", |
| 773 | "fpdfsdk/include/javascript/resource.h", |
| 774 | "fpdfsdk/include/javascript/util.h", |
| 775 | "fpdfsdk/src/javascript/app.cpp", |
| 776 | "fpdfsdk/src/javascript/color.cpp", |
| 777 | "fpdfsdk/src/javascript/console.cpp", |
| 778 | "fpdfsdk/src/javascript/Consts.cpp", |
| 779 | "fpdfsdk/src/javascript/Document.cpp", |
| 780 | "fpdfsdk/src/javascript/event.cpp", |
| 781 | "fpdfsdk/src/javascript/Field.cpp", |
| 782 | "fpdfsdk/src/javascript/global.cpp", |
| 783 | "fpdfsdk/src/javascript/Icon.cpp", |
| 784 | "fpdfsdk/src/javascript/JS_Context.cpp", |
| 785 | "fpdfsdk/src/javascript/JS_EventHandler.cpp", |
| 786 | "fpdfsdk/src/javascript/JS_GlobalData.cpp", |
| 787 | "fpdfsdk/src/javascript/JS_Object.cpp", |
| 788 | "fpdfsdk/src/javascript/JS_Runtime.cpp", |
| 789 | "fpdfsdk/src/javascript/JS_Value.cpp", |
| 790 | "fpdfsdk/src/javascript/PublicMethods.cpp", |
| 791 | "fpdfsdk/src/javascript/report.cpp", |
| 792 | "fpdfsdk/src/javascript/util.cpp", |
| 793 | ] |
| 794 | |
| 795 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 796 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 797 | include_dirs = [ |
Jochen Eisinger | 3fb18f4 | 2014-07-17 08:46:45 +0200 | [diff] [blame] | 798 | "//v8", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 799 | "//v8/include", |
| 800 | ] |
Brett Wilson | 7a649fe | 2014-09-24 15:32:49 -0700 | [diff] [blame] | 801 | |
| 802 | public_deps = [ |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 803 | "//v8", |
Brett Wilson | 7a649fe | 2014-09-24 15:32:49 -0700 | [diff] [blame] | 804 | ] |
| 805 | deps = [ |
Brett Wilson | e6e40ab | 2014-09-04 13:48:16 -0700 | [diff] [blame] | 806 | "//v8:v8_libplatform", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 807 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | static_library("jsapi") { |
| 811 | sources = [ |
| 812 | "fpdfsdk/include/jsapi/fxjs_v8.h", |
| 813 | "fpdfsdk/src/jsapi/fxjs_v8.cpp", |
| 814 | ] |
| 815 | |
| 816 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 817 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 818 | include_dirs = [ |
Jochen Eisinger | 3fb18f4 | 2014-07-17 08:46:45 +0200 | [diff] [blame] | 819 | "//v8", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 820 | "//v8/include", |
| 821 | ] |
Brett Wilson | 7a649fe | 2014-09-24 15:32:49 -0700 | [diff] [blame] | 822 | |
| 823 | public_deps = [ |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 824 | "//v8", |
| 825 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | static_library("formfiller") { |
| 829 | sources = [ |
| 830 | "fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h", |
| 831 | "fpdfsdk/include/formfiller/FFL_CheckBox.h", |
| 832 | "fpdfsdk/include/formfiller/FFL_ComboBox.h", |
| 833 | "fpdfsdk/include/formfiller/FFL_FormFiller.h", |
| 834 | "fpdfsdk/include/formfiller/FFL_IFormFiller.h", |
| 835 | "fpdfsdk/include/formfiller/FFL_ListBox.h", |
| 836 | "fpdfsdk/include/formfiller/FFL_Notify.h", |
| 837 | "fpdfsdk/include/formfiller/FFL_PushButton.h", |
| 838 | "fpdfsdk/include/formfiller/FFL_RadioButton.h", |
| 839 | "fpdfsdk/include/formfiller/FFL_TextField.h", |
| 840 | "fpdfsdk/include/formfiller/FFL_Utils.h", |
| 841 | "fpdfsdk/include/formfiller/FormFiller.h", |
| 842 | "fpdfsdk/src/formfiller/FFL_CBA_Fontmap.cpp", |
| 843 | "fpdfsdk/src/formfiller/FFL_CheckBox.cpp", |
| 844 | "fpdfsdk/src/formfiller/FFL_ComboBox.cpp", |
| 845 | "fpdfsdk/src/formfiller/FFL_FormFiller.cpp", |
| 846 | "fpdfsdk/src/formfiller/FFL_IFormFiller.cpp", |
| 847 | "fpdfsdk/src/formfiller/FFL_ListBox.cpp", |
| 848 | "fpdfsdk/src/formfiller/FFL_Notify.cpp", |
| 849 | "fpdfsdk/src/formfiller/FFL_PushButton.cpp", |
| 850 | "fpdfsdk/src/formfiller/FFL_RadioButton.cpp", |
| 851 | "fpdfsdk/src/formfiller/FFL_TextField.cpp", |
| 852 | "fpdfsdk/src/formfiller/FFL_Utils.cpp", |
| 853 | ] |
| 854 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 855 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 856 | } |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 857 | |
| 858 | static_library("fpdfxfa") { |
| 859 | sources = [ |
| 860 | "fpdfsdk/src/fpdfxfa/fpdfxfa_app.cpp", |
| 861 | "fpdfsdk/src/fpdfxfa/fpdfxfa_doc.cpp", |
| 862 | "fpdfsdk/src/fpdfxfa/fpdfxfa_page.cpp", |
| 863 | "fpdfsdk/src/fpdfxfa/fpdfxfa_util.cpp", |
| 864 | "fpdfsdk/include/fpdfxfa/fpdfxfa_app.h", |
| 865 | "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h", |
| 866 | "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h", |
| 867 | "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h", |
| 868 | ] |
| 869 | deps = [ |
| 870 | ":xfa", |
| 871 | ] |
| 872 | configs -= [ "//build/config/compiler:chromium_code" ] |
| 873 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 874 | } |
| 875 | |
| 876 | static_library("xfa") { |
| 877 | sources = [ |
| 878 | "xfa/include/foxitxfa.h", |
| 879 | "xfa/include/fwl/adapter/fwl_adapterclipboardmgr.h", |
| 880 | "xfa/include/fwl/adapter/fwl_adaptercursormgr.h", |
| 881 | "xfa/include/fwl/adapter/fwl_adaptermonitormgr.h", |
| 882 | "xfa/include/fwl/adapter/fwl_adapternative.h", |
| 883 | "xfa/include/fwl/adapter/fwl_adapterthreadmgr.h", |
| 884 | "xfa/include/fwl/adapter/fwl_adaptertimermgr.h", |
| 885 | "xfa/include/fwl/adapter/fwl_adapterwidgetmgr.h", |
| 886 | "xfa/include/fwl/adapter/fwl_sdadapterimp.h", |
| 887 | "xfa/include/fwl/basewidget/fwl_barcode.h", |
| 888 | "xfa/include/fwl/basewidget/fwl_caret.h", |
| 889 | "xfa/include/fwl/basewidget/fwl_checkbox.h", |
| 890 | "xfa/include/fwl/basewidget/fwl_combobox.h", |
| 891 | "xfa/include/fwl/basewidget/fwl_datetimepicker.h", |
| 892 | "xfa/include/fwl/basewidget/fwl_edit.h", |
| 893 | "xfa/include/fwl/basewidget/fwl_listbox.h", |
| 894 | "xfa/include/fwl/basewidget/fwl_menu.h", |
| 895 | "xfa/include/fwl/basewidget/fwl_monthcalendar.h", |
| 896 | "xfa/include/fwl/basewidget/fwl_picturebox.h", |
| 897 | "xfa/include/fwl/basewidget/fwl_pushbutton.h", |
| 898 | "xfa/include/fwl/basewidget/fwl_scrollbar.h", |
| 899 | "xfa/include/fwl/basewidget/fwl_spinbutton.h", |
| 900 | "xfa/include/fwl/basewidget/fwl_tooltipctrl.h", |
| 901 | "xfa/include/fwl/basewidget/fxmath_barcode.h", |
| 902 | "xfa/include/fwl/core/fwl_app.h", |
| 903 | "xfa/include/fwl/core/fwl_content.h", |
| 904 | "xfa/include/fwl/core/fwl_error.h", |
| 905 | "xfa/include/fwl/core/fwl_form.h", |
| 906 | "xfa/include/fwl/core/fwl_grid.h", |
| 907 | "xfa/include/fwl/core/fwl_note.h", |
| 908 | "xfa/include/fwl/core/fwl_panel.h", |
| 909 | "xfa/include/fwl/core/fwl_target.h", |
| 910 | "xfa/include/fwl/core/fwl_theme.h", |
| 911 | "xfa/include/fwl/core/fwl_thread.h", |
| 912 | "xfa/include/fwl/core/fwl_timer.h", |
| 913 | "xfa/include/fwl/core/fwl_widget.h", |
| 914 | "xfa/include/fwl/core/fwl_widgetdef.h", |
| 915 | "xfa/include/fwl/core/fwl_widgetmgr.h", |
| 916 | "xfa/include/fwl/fwl.h", |
| 917 | "xfa/include/fwl/lightwidget/app.h", |
| 918 | "xfa/include/fwl/lightwidget/barcode.h", |
| 919 | "xfa/include/fwl/lightwidget/caret.h", |
| 920 | "xfa/include/fwl/lightwidget/checkbox.h", |
| 921 | "xfa/include/fwl/lightwidget/combobox.h", |
| 922 | "xfa/include/fwl/lightwidget/datetimepicker.h", |
| 923 | "xfa/include/fwl/lightwidget/edit.h", |
| 924 | "xfa/include/fwl/lightwidget/listbox.h", |
| 925 | "xfa/include/fwl/lightwidget/picturebox.h", |
| 926 | "xfa/include/fwl/lightwidget/pushbutton.h", |
| 927 | "xfa/include/fwl/lightwidget/scrollbar.h", |
| 928 | "xfa/include/fwl/lightwidget/theme.h", |
| 929 | "xfa/include/fwl/lightwidget/tooltipctrl.h", |
| 930 | "xfa/include/fwl/lightwidget/widget.h", |
| 931 | "xfa/include/fwl/theme/barcodetp.h", |
| 932 | "xfa/include/fwl/theme/carettp.h", |
| 933 | "xfa/include/fwl/theme/checkboxtp.h", |
| 934 | "xfa/include/fwl/theme/comboboxtp.h", |
| 935 | "xfa/include/fwl/theme/datetimepickertp.h", |
| 936 | "xfa/include/fwl/theme/edittp.h", |
| 937 | "xfa/include/fwl/theme/formtp.h", |
| 938 | "xfa/include/fwl/theme/listboxtp.h", |
| 939 | "xfa/include/fwl/theme/monthcalendartp.h", |
| 940 | "xfa/include/fwl/theme/pictureboxtp.h", |
| 941 | "xfa/include/fwl/theme/pushbuttontp.h", |
| 942 | "xfa/include/fwl/theme/scrollbartp.h", |
| 943 | "xfa/include/fwl/theme/utils.h", |
| 944 | "xfa/include/fwl/theme/widgettp.h", |
| 945 | "xfa/include/fxbarcode/BC_BarCode.h", |
| 946 | "xfa/include/fxfa/fxfa.h", |
| 947 | "xfa/include/fxfa/fxfa_basic.h", |
| 948 | "xfa/include/fxfa/fxfa_objectacc.h", |
| 949 | "xfa/include/fxfa/fxfa_widget.h", |
| 950 | "xfa/include/fxgraphics/fx_graphics.h", |
| 951 | "xfa/include/fxjse/fxjse.h", |
| 952 | "xfa/src/fdp/include/fde.h", |
| 953 | "xfa/src/fdp/include/fde_brs.h", |
| 954 | "xfa/src/fdp/include/fde_css.h", |
| 955 | "xfa/src/fdp/include/fde_img.h", |
| 956 | "xfa/src/fdp/include/fde_mem.h", |
| 957 | "xfa/src/fdp/include/fde_pen.h", |
| 958 | "xfa/src/fdp/include/fde_psr.h", |
| 959 | "xfa/src/fdp/include/fde_pth.h", |
| 960 | "xfa/src/fdp/include/fde_rdr.h", |
| 961 | "xfa/src/fdp/include/fde_rdv.h", |
| 962 | "xfa/src/fdp/include/fde_tto.h", |
| 963 | "xfa/src/fdp/include/fde_xml.h", |
| 964 | "xfa/src/fdp/src/css/fde_csscache.cpp", |
| 965 | "xfa/src/fdp/src/css/fde_csscache.h", |
| 966 | "xfa/src/fdp/src/css/fde_cssdatatable.cpp", |
| 967 | "xfa/src/fdp/src/css/fde_cssdatatable.h", |
| 968 | "xfa/src/fdp/src/css/fde_cssdeclaration.cpp", |
| 969 | "xfa/src/fdp/src/css/fde_cssdeclaration.h", |
| 970 | "xfa/src/fdp/src/css/fde_cssstyleselector.cpp", |
| 971 | "xfa/src/fdp/src/css/fde_cssstyleselector.h", |
| 972 | "xfa/src/fdp/src/css/fde_cssstylesheet.cpp", |
| 973 | "xfa/src/fdp/src/css/fde_cssstylesheet.h", |
| 974 | "xfa/src/fdp/src/css/fde_csssyntax.cpp", |
| 975 | "xfa/src/fdp/src/css/fde_csssyntax.h", |
| 976 | "xfa/src/fdp/src/fde/fde_devbasic.cpp", |
| 977 | "xfa/src/fdp/src/fde/fde_devbasic.h", |
| 978 | "xfa/src/fdp/src/fde/fde_gedevice.cpp", |
| 979 | "xfa/src/fdp/src/fde/fde_gedevice.h", |
| 980 | "xfa/src/fdp/src/fde/fde_geobject.cpp", |
| 981 | "xfa/src/fdp/src/fde/fde_geobject.h", |
| 982 | "xfa/src/fdp/src/fde/fde_iterator.cpp", |
| 983 | "xfa/src/fdp/src/fde/fde_iterator.h", |
| 984 | "xfa/src/fdp/src/fde/fde_object.cpp", |
| 985 | "xfa/src/fdp/src/fde/fde_object.h", |
| 986 | "xfa/src/fdp/src/fde/fde_render.cpp", |
| 987 | "xfa/src/fdp/src/fde/fde_render.h", |
| 988 | "xfa/src/fdp/src/tto/fde_textout.cpp", |
| 989 | "xfa/src/fdp/src/tto/fde_textout.h", |
| 990 | "xfa/src/fdp/src/xml/fde_xml.cpp", |
| 991 | "xfa/src/fdp/src/xml/fde_xml.h", |
| 992 | "xfa/src/fee/include/fx_wordbreak.h", |
| 993 | "xfa/src/fee/include/ifde_txtedtbuf.h", |
| 994 | "xfa/src/fee/include/ifde_txtedtengine.h", |
| 995 | "xfa/src/fee/include/ifde_txtedtpage.h", |
| 996 | "xfa/src/fee/src/fee/fde_txtedtblock.cpp", |
| 997 | "xfa/src/fee/src/fee/fde_txtedtblock.h", |
| 998 | "xfa/src/fee/src/fee/fde_txtedtbuf.cpp", |
| 999 | "xfa/src/fee/src/fee/fde_txtedtbuf.h", |
| 1000 | "xfa/src/fee/src/fee/fde_txtedtengine.cpp", |
| 1001 | "xfa/src/fee/src/fee/fde_txtedtengine.h", |
| 1002 | "xfa/src/fee/src/fee/fde_txtedtkmpmatch.cpp", |
| 1003 | "xfa/src/fee/src/fee/fde_txtedtkmpmatch.h", |
| 1004 | "xfa/src/fee/src/fee/fde_txtedtpage.cpp", |
| 1005 | "xfa/src/fee/src/fee/fde_txtedtpage.h", |
| 1006 | "xfa/src/fee/src/fee/fde_txtedtparag.cpp", |
| 1007 | "xfa/src/fee/src/fee/fde_txtedtparag.h", |
| 1008 | "xfa/src/fee/src/fx_wordbreak/fx_wordbreakdata.cpp", |
| 1009 | "xfa/src/fee/src/fx_wordbreak/fx_wordbreak_impl.cpp", |
| 1010 | "xfa/src/fee/src/fx_wordbreak/fx_wordbreak_impl.h", |
| 1011 | "xfa/src/fgas/include/fgas.h", |
| 1012 | "xfa/src/fgas/include/fx_alg.h", |
| 1013 | "xfa/src/fgas/include/fx_cpg.h", |
| 1014 | "xfa/src/fgas/include/fx_datetime.h", |
| 1015 | "xfa/src/fgas/include/fx_fnt.h", |
| 1016 | "xfa/src/fgas/include/fx_lbk.h", |
| 1017 | "xfa/src/fgas/include/fx_lgg.h", |
| 1018 | "xfa/src/fgas/include/fx_locale.h", |
| 1019 | "xfa/src/fgas/include/fx_mem.h", |
| 1020 | "xfa/src/fgas/include/fx_rbk.h", |
| 1021 | "xfa/src/fgas/include/fx_sax.h", |
| 1022 | "xfa/src/fgas/include/fx_stm.h", |
| 1023 | "xfa/src/fgas/include/fx_sys.h", |
| 1024 | "xfa/src/fgas/include/fx_tbk.h", |
| 1025 | "xfa/src/fgas/include/fx_ucd.h", |
| 1026 | "xfa/src/fgas/include/fx_utl.h", |
| 1027 | "xfa/src/fgas/src/crt/fx_algorithm.cpp", |
| 1028 | "xfa/src/fgas/src/crt/fx_codepage.cpp", |
| 1029 | "xfa/src/fgas/src/crt/fx_codepage.h", |
| 1030 | "xfa/src/fgas/src/crt/fx_encode.cpp", |
| 1031 | "xfa/src/fgas/src/crt/fx_memory.cpp", |
| 1032 | "xfa/src/fgas/src/crt/fx_memory.h", |
| 1033 | "xfa/src/fgas/src/crt/fx_stream.cpp", |
| 1034 | "xfa/src/fgas/src/crt/fx_stream.h", |
| 1035 | "xfa/src/fgas/src/crt/fx_system.cpp", |
| 1036 | "xfa/src/fgas/src/crt/fx_utils.cpp", |
| 1037 | "xfa/src/fgas/src/crt/fx_utils.h", |
| 1038 | "xfa/src/fgas/src/fgas_base.h", |
| 1039 | "xfa/src/fgas/src/font/fx_fontutils.cpp", |
| 1040 | "xfa/src/fgas/src/font/fx_fontutils.h", |
| 1041 | "xfa/src/fgas/src/font/fx_gefont.cpp", |
| 1042 | "xfa/src/fgas/src/font/fx_gefont.h", |
| 1043 | "xfa/src/fgas/src/font/fx_stdfontmgr.cpp", |
| 1044 | "xfa/src/fgas/src/font/fx_stdfontmgr.h", |
| 1045 | "xfa/src/fgas/src/layout/fx_linebreak.cpp", |
| 1046 | "xfa/src/fgas/src/layout/fx_rtfbreak.cpp", |
| 1047 | "xfa/src/fgas/src/layout/fx_rtfbreak.h", |
| 1048 | "xfa/src/fgas/src/layout/fx_textbreak.cpp", |
| 1049 | "xfa/src/fgas/src/layout/fx_textbreak.h", |
| 1050 | "xfa/src/fgas/src/layout/fx_unicode.cpp", |
| 1051 | "xfa/src/fgas/src/layout/fx_unicode.h", |
| 1052 | "xfa/src/fgas/src/localization/fx_datetime.cpp", |
| 1053 | "xfa/src/fgas/src/localization/fx_locale.cpp", |
| 1054 | "xfa/src/fgas/src/localization/fx_localeimp.h", |
| 1055 | "xfa/src/fgas/src/localization/fx_localemgr.cpp", |
| 1056 | "xfa/src/fgas/src/localization/fx_localemgr.h", |
| 1057 | "xfa/src/fgas/src/xml/fx_sax_imp.cpp", |
| 1058 | "xfa/src/fgas/src/xml/fx_sax_imp.h", |
| 1059 | "xfa/src/foxitlib.h", |
| 1060 | "xfa/src/fwl/src/basewidget/fwl_barcodeimp.cpp", |
| 1061 | "xfa/src/fwl/src/basewidget/fwl_caretimp.cpp", |
| 1062 | "xfa/src/fwl/src/basewidget/fwl_checkboximp.cpp", |
| 1063 | "xfa/src/fwl/src/basewidget/fwl_comboboximp.cpp", |
| 1064 | "xfa/src/fwl/src/basewidget/fwl_datetimepickerimp.cpp", |
| 1065 | "xfa/src/fwl/src/basewidget/fwl_editimp.cpp", |
| 1066 | "xfa/src/fwl/src/basewidget/fwl_formproxyimp.cpp", |
| 1067 | "xfa/src/fwl/src/basewidget/fwl_listboximp.cpp", |
| 1068 | "xfa/src/fwl/src/basewidget/fwl_monthcalendarimp.cpp", |
| 1069 | "xfa/src/fwl/src/basewidget/fwl_pictureboximp.cpp", |
| 1070 | "xfa/src/fwl/src/basewidget/fwl_pushbuttonimp.cpp", |
| 1071 | "xfa/src/fwl/src/basewidget/fwl_scrollbarimp.cpp", |
| 1072 | "xfa/src/fwl/src/basewidget/fwl_spinbuttonimp.cpp", |
| 1073 | "xfa/src/fwl/src/basewidget/fwl_tooltipctrlimp.cpp", |
| 1074 | "xfa/src/fwl/src/basewidget/fxmath_barcodeimp.cpp", |
| 1075 | "xfa/src/fwl/src/basewidget/include/fwl_barcodeimp.h", |
| 1076 | "xfa/src/fwl/src/basewidget/include/fwl_caretimp.h", |
| 1077 | "xfa/src/fwl/src/basewidget/include/fwl_checkboximp.h", |
| 1078 | "xfa/src/fwl/src/basewidget/include/fwl_comboboximp.h", |
| 1079 | "xfa/src/fwl/src/basewidget/include/fwl_datetimepickerimp.h", |
| 1080 | "xfa/src/fwl/src/basewidget/include/fwl_editimp.h", |
| 1081 | "xfa/src/fwl/src/basewidget/include/fwl_formproxyimp.h", |
| 1082 | "xfa/src/fwl/src/basewidget/include/fwl_listboximp.h", |
| 1083 | "xfa/src/fwl/src/basewidget/include/fwl_monthcalendarimp.h", |
| 1084 | "xfa/src/fwl/src/basewidget/include/fwl_pictureboximp.h", |
| 1085 | "xfa/src/fwl/src/basewidget/include/fwl_pushbuttonimp.h", |
| 1086 | "xfa/src/fwl/src/basewidget/include/fwl_scrollbarimp.h", |
| 1087 | "xfa/src/fwl/src/basewidget/include/fwl_spinbuttonimp.h", |
| 1088 | "xfa/src/fwl/src/basewidget/include/fwl_tooltipctrlimp.h", |
| 1089 | "xfa/src/fwl/src/basewidget/include/fxmath_barcodeimp.h", |
| 1090 | "xfa/src/fwl/src/core/fwl_appimp.cpp", |
| 1091 | "xfa/src/fwl/src/core/fwl_contentimp.cpp", |
| 1092 | "xfa/src/fwl/src/core/fwl_formimp.cpp", |
| 1093 | "xfa/src/fwl/src/core/fwl_gridimp.cpp", |
| 1094 | "xfa/src/fwl/src/core/fwl_noteimp.cpp", |
| 1095 | "xfa/src/fwl/src/core/fwl_panelimp.cpp", |
| 1096 | "xfa/src/fwl/src/core/fwl_sdadapterimp.cpp", |
| 1097 | "xfa/src/fwl/src/core/fwl_targetimp.cpp", |
| 1098 | "xfa/src/fwl/src/core/fwl_threadimp.cpp", |
| 1099 | "xfa/src/fwl/src/core/fwl_timerimp.cpp", |
| 1100 | "xfa/src/fwl/src/core/fwl_widgetimp.cpp", |
| 1101 | "xfa/src/fwl/src/core/fwl_widgetmgrimp.cpp", |
| 1102 | "xfa/src/fwl/src/core/include/fwl_appimp.h", |
| 1103 | "xfa/src/fwl/src/core/include/fwl_contentimp.h", |
| 1104 | "xfa/src/fwl/src/core/include/fwl_formimp.h", |
| 1105 | "xfa/src/fwl/src/core/include/fwl_gridimp.h", |
| 1106 | "xfa/src/fwl/src/core/include/fwl_noteimp.h", |
| 1107 | "xfa/src/fwl/src/core/include/fwl_panelimp.h", |
| 1108 | "xfa/src/fwl/src/core/include/fwl_targetimp.h", |
| 1109 | "xfa/src/fwl/src/core/include/fwl_threadimp.h", |
| 1110 | "xfa/src/fwl/src/core/include/fwl_widgetimp.h", |
| 1111 | "xfa/src/fwl/src/core/include/fwl_widgetmgrimp.h", |
| 1112 | "xfa/src/fwl/src/lightwidget/app.cpp", |
| 1113 | "xfa/src/fwl/src/lightwidget/barcode.cpp", |
| 1114 | "xfa/src/fwl/src/lightwidget/caret.cpp", |
| 1115 | "xfa/src/fwl/src/lightwidget/checkbox.cpp", |
| 1116 | "xfa/src/fwl/src/lightwidget/combobox.cpp", |
| 1117 | "xfa/src/fwl/src/lightwidget/datetimepicker.cpp", |
| 1118 | "xfa/src/fwl/src/lightwidget/edit.cpp", |
| 1119 | "xfa/src/fwl/src/lightwidget/listbox.cpp", |
| 1120 | "xfa/src/fwl/src/lightwidget/picturebox.cpp", |
| 1121 | "xfa/src/fwl/src/lightwidget/pushbutton.cpp", |
| 1122 | "xfa/src/fwl/src/lightwidget/scrollbar.cpp", |
| 1123 | "xfa/src/fwl/src/lightwidget/theme.cpp", |
| 1124 | "xfa/src/fwl/src/lightwidget/tooltipctrl.cpp", |
| 1125 | "xfa/src/fwl/src/lightwidget/widget.cpp", |
| 1126 | "xfa/src/fwl/src/theme/barcodetp.cpp", |
| 1127 | "xfa/src/fwl/src/theme/carettp.cpp", |
| 1128 | "xfa/src/fwl/src/theme/checkboxtp.cpp", |
| 1129 | "xfa/src/fwl/src/theme/comboboxtp.cpp", |
| 1130 | "xfa/src/fwl/src/theme/datetimepickertp.cpp", |
| 1131 | "xfa/src/fwl/src/theme/edittp.cpp", |
| 1132 | "xfa/src/fwl/src/theme/formtp.cpp", |
| 1133 | "xfa/src/fwl/src/theme/listboxtp.cpp", |
| 1134 | "xfa/src/fwl/src/theme/monthcalendartp.cpp", |
| 1135 | "xfa/src/fwl/src/theme/pictureboxtp.cpp", |
| 1136 | "xfa/src/fwl/src/theme/pushbuttontp.cpp", |
| 1137 | "xfa/src/fwl/src/theme/scrollbartp.cpp", |
| 1138 | "xfa/src/fwl/src/theme/widgettp.cpp", |
| 1139 | "xfa/src/fxbarcode/src/barcode.h", |
| 1140 | "xfa/src/fxbarcode/src/BC_ASCIIEncoder.cpp", |
| 1141 | "xfa/src/fxbarcode/src/BC_BarCode.cpp", |
| 1142 | "xfa/src/fxbarcode/src/BC_Base256Encoder.cpp", |
| 1143 | "xfa/src/fxbarcode/src/BC_Binarizer.cpp", |
| 1144 | "xfa/src/fxbarcode/src/BC_BinaryBitmap.cpp", |
| 1145 | "xfa/src/fxbarcode/src/BC_BufferedImageLuminanceSource.cpp", |
| 1146 | "xfa/src/fxbarcode/src/BC_C40Encoder.cpp", |
| 1147 | "xfa/src/fxbarcode/src/BC_CommonBitArray.cpp", |
| 1148 | "xfa/src/fxbarcode/src/BC_CommonBitMatrix.cpp", |
| 1149 | "xfa/src/fxbarcode/src/BC_CommonBitSource.cpp", |
| 1150 | "xfa/src/fxbarcode/src/BC_CommonByteArray.cpp", |
| 1151 | "xfa/src/fxbarcode/src/BC_CommonByteMatrix.cpp", |
| 1152 | "xfa/src/fxbarcode/src/BC_CommonCharacterSetECI.cpp", |
| 1153 | "xfa/src/fxbarcode/src/BC_CommonDecoderResult.cpp", |
| 1154 | "xfa/src/fxbarcode/src/BC_CommonECI.cpp", |
| 1155 | "xfa/src/fxbarcode/src/BC_CommonPerspectiveTransform.cpp", |
| 1156 | "xfa/src/fxbarcode/src/BC_DataMatrixBitMatrixParser.cpp", |
| 1157 | "xfa/src/fxbarcode/src/BC_DataMatrixDataBlock.cpp", |
| 1158 | "xfa/src/fxbarcode/src/BC_DataMatrixDecodedBitStreamParser.cpp", |
| 1159 | "xfa/src/fxbarcode/src/BC_DataMatrixDecoder.cpp", |
| 1160 | "xfa/src/fxbarcode/src/BC_DataMatrixDetector.cpp", |
| 1161 | "xfa/src/fxbarcode/src/BC_DataMatrixReader.cpp", |
| 1162 | "xfa/src/fxbarcode/src/BC_DataMatrixSymbolInfo144.cpp", |
| 1163 | "xfa/src/fxbarcode/src/BC_DataMatrixVersion.cpp", |
| 1164 | "xfa/src/fxbarcode/src/BC_DataMatrixWriter.cpp", |
| 1165 | "xfa/src/fxbarcode/src/BC_DefaultPlacement.cpp", |
| 1166 | "xfa/src/fxbarcode/src/BC_Dimension.cpp", |
| 1167 | "xfa/src/fxbarcode/src/BC_EdifactEncoder.cpp", |
| 1168 | "xfa/src/fxbarcode/src/BC_Encoder.cpp", |
| 1169 | "xfa/src/fxbarcode/src/BC_EncoderContext.cpp", |
| 1170 | "xfa/src/fxbarcode/src/BC_ErrorCorrection.cpp", |
| 1171 | "xfa/src/fxbarcode/src/BC_FinderPatternInfo.cpp", |
| 1172 | "xfa/src/fxbarcode/src/BC_GlobalHistogramBinarizer.cpp", |
| 1173 | "xfa/src/fxbarcode/src/BC_HighLevelEncoder.cpp", |
| 1174 | "xfa/src/fxbarcode/src/BC_Library.cpp", |
| 1175 | "xfa/src/fxbarcode/src/BC_LuminanceSource.cpp", |
| 1176 | "xfa/src/fxbarcode/src/BC_OnedCodaBarReader.cpp", |
| 1177 | "xfa/src/fxbarcode/src/BC_OnedCodaBarWriter.cpp", |
| 1178 | "xfa/src/fxbarcode/src/BC_OnedCode128Reader.cpp", |
| 1179 | "xfa/src/fxbarcode/src/BC_OnedCode128Writer.cpp", |
| 1180 | "xfa/src/fxbarcode/src/BC_OnedCode39Reader.cpp", |
| 1181 | "xfa/src/fxbarcode/src/BC_OnedCode39Writer.cpp", |
| 1182 | "xfa/src/fxbarcode/src/BC_OnedEAN13Reader.cpp", |
| 1183 | "xfa/src/fxbarcode/src/BC_OnedEAN13Writer.cpp", |
| 1184 | "xfa/src/fxbarcode/src/BC_OnedEAN8Reader.cpp", |
| 1185 | "xfa/src/fxbarcode/src/BC_OnedEAN8Writer.cpp", |
| 1186 | "xfa/src/fxbarcode/src/BC_OneDimReader.cpp", |
| 1187 | "xfa/src/fxbarcode/src/BC_OneDimWriter.cpp", |
| 1188 | "xfa/src/fxbarcode/src/BC_OneDReader.cpp", |
| 1189 | "xfa/src/fxbarcode/src/BC_OnedUPCAReader.cpp", |
| 1190 | "xfa/src/fxbarcode/src/BC_OnedUPCAWriter.cpp", |
| 1191 | "xfa/src/fxbarcode/src/BC_PDF417.cpp", |
| 1192 | "xfa/src/fxbarcode/src/BC_PDF417BarcodeMatrix.cpp", |
| 1193 | "xfa/src/fxbarcode/src/BC_PDF417BarcodeMetadata.cpp", |
| 1194 | "xfa/src/fxbarcode/src/BC_PDF417BarcodeRow.cpp", |
| 1195 | "xfa/src/fxbarcode/src/BC_PDF417BarcodeValue.cpp", |
| 1196 | "xfa/src/fxbarcode/src/BC_PDF417BoundingBox.cpp", |
| 1197 | "xfa/src/fxbarcode/src/BC_PDF417Codeword.cpp", |
| 1198 | "xfa/src/fxbarcode/src/BC_PDF417CodewordDecoder.cpp", |
| 1199 | "xfa/src/fxbarcode/src/BC_PDF417Common.cpp", |
| 1200 | "xfa/src/fxbarcode/src/BC_PDF417Compaction.cpp", |
| 1201 | "xfa/src/fxbarcode/src/BC_PDF417DecodedBitStreamParser.cpp", |
| 1202 | "xfa/src/fxbarcode/src/BC_PDF417DetectionResult.cpp", |
| 1203 | "xfa/src/fxbarcode/src/BC_PDF417DetectionResultColumn.cpp", |
| 1204 | "xfa/src/fxbarcode/src/BC_PDF417DetectionResultRowIndicatorColumn.cpp", |
| 1205 | "xfa/src/fxbarcode/src/BC_PDF417Detector.cpp", |
| 1206 | "xfa/src/fxbarcode/src/BC_PDF417DetectorResult.cpp", |
| 1207 | "xfa/src/fxbarcode/src/BC_PDF417Dimensions.cpp", |
| 1208 | "xfa/src/fxbarcode/src/BC_PDF417ECErrorCorrection.cpp", |
| 1209 | "xfa/src/fxbarcode/src/BC_PDF417ECModulusGF.cpp", |
| 1210 | "xfa/src/fxbarcode/src/BC_PDF417ECModulusPoly.cpp", |
| 1211 | "xfa/src/fxbarcode/src/BC_PDF417ErrorCorrection.cpp", |
| 1212 | "xfa/src/fxbarcode/src/BC_PDF417HighLevelEncoder.cpp", |
| 1213 | "xfa/src/fxbarcode/src/BC_PDF417Reader.cpp", |
| 1214 | "xfa/src/fxbarcode/src/BC_PDF417ResultMetadata.cpp", |
| 1215 | "xfa/src/fxbarcode/src/BC_PDF417ScanningDecoder.cpp", |
| 1216 | "xfa/src/fxbarcode/src/BC_PDF417Writer.cpp", |
| 1217 | "xfa/src/fxbarcode/src/BC_QRAlignmentPattern.cpp", |
| 1218 | "xfa/src/fxbarcode/src/BC_QRAlignmentPatternFinder.cpp", |
| 1219 | "xfa/src/fxbarcode/src/BC_QRBitMatrixParser.cpp", |
| 1220 | "xfa/src/fxbarcode/src/BC_QRCoder.cpp", |
| 1221 | "xfa/src/fxbarcode/src/BC_QRCoderBitVector.cpp", |
| 1222 | "xfa/src/fxbarcode/src/BC_QRCoderBlockPair.cpp", |
| 1223 | "xfa/src/fxbarcode/src/BC_QRCoderDecoder.cpp", |
| 1224 | "xfa/src/fxbarcode/src/BC_QRCodeReader.cpp", |
| 1225 | "xfa/src/fxbarcode/src/BC_QRCoderECB.cpp", |
| 1226 | "xfa/src/fxbarcode/src/BC_QRCoderECBlocks.cpp", |
| 1227 | "xfa/src/fxbarcode/src/BC_QRCoderEncoder.cpp", |
| 1228 | "xfa/src/fxbarcode/src/BC_QRCoderErrorCorrectionLevel.cpp", |
| 1229 | "xfa/src/fxbarcode/src/BC_QRCoderFormatInformation.cpp", |
| 1230 | "xfa/src/fxbarcode/src/BC_QRCoderMaskUtil.cpp", |
| 1231 | "xfa/src/fxbarcode/src/BC_QRCoderMatrixUtil.cpp", |
| 1232 | "xfa/src/fxbarcode/src/BC_QRCoderMode.cpp", |
| 1233 | "xfa/src/fxbarcode/src/BC_QRCoderVersion.cpp", |
| 1234 | "xfa/src/fxbarcode/src/BC_QRCodeWriter.cpp", |
| 1235 | "xfa/src/fxbarcode/src/BC_QRDataBlock.cpp", |
| 1236 | "xfa/src/fxbarcode/src/BC_QRDataMask.cpp", |
| 1237 | "xfa/src/fxbarcode/src/BC_QRDecodedBitStreamParser.cpp", |
| 1238 | "xfa/src/fxbarcode/src/BC_QRDetector.cpp", |
| 1239 | "xfa/src/fxbarcode/src/BC_QRDetectorResult.cpp", |
| 1240 | "xfa/src/fxbarcode/src/BC_QRFinderPattern.cpp", |
| 1241 | "xfa/src/fxbarcode/src/BC_QRFinderPatternFinder.cpp", |
| 1242 | "xfa/src/fxbarcode/src/BC_QRGridSampler.cpp", |
| 1243 | "xfa/src/fxbarcode/src/BC_Reader.cpp", |
| 1244 | "xfa/src/fxbarcode/src/BC_ReedSolomon.cpp", |
| 1245 | "xfa/src/fxbarcode/src/BC_ReedSolomonDecoder.cpp", |
| 1246 | "xfa/src/fxbarcode/src/BC_ReedSolomonGF256.cpp", |
| 1247 | "xfa/src/fxbarcode/src/BC_ReedSolomonGF256Poly.cpp", |
| 1248 | "xfa/src/fxbarcode/src/BC_ResultPoint.cpp", |
| 1249 | "xfa/src/fxbarcode/src/BC_SymbolInfo.cpp", |
| 1250 | "xfa/src/fxbarcode/src/BC_SymbolShapeHint.cpp", |
| 1251 | "xfa/src/fxbarcode/src/BC_TextEncoder.cpp", |
| 1252 | "xfa/src/fxbarcode/src/BC_TwoDimWriter.cpp", |
| 1253 | "xfa/src/fxbarcode/src/BC_UtilCodingConvert.cpp", |
| 1254 | "xfa/src/fxbarcode/src/BC_UtilRSS.cpp", |
| 1255 | "xfa/src/fxbarcode/src/BC_Utils.cpp", |
| 1256 | "xfa/src/fxbarcode/src/BC_WhiteRectangleDetector.cpp", |
| 1257 | "xfa/src/fxbarcode/src/BC_Writer.cpp", |
| 1258 | "xfa/src/fxbarcode/src/BC_X12Encoder.cpp", |
| 1259 | "xfa/src/fxbarcode/src/include/BC_ASCIIEncoder.h", |
| 1260 | "xfa/src/fxbarcode/src/include/BC_Base256Encoder.h", |
| 1261 | "xfa/src/fxbarcode/src/include/BC_Binarizer.h", |
| 1262 | "xfa/src/fxbarcode/src/include/BC_BinaryBitmap.h", |
| 1263 | "xfa/src/fxbarcode/src/include/BC_BufferedImageLuminanceSource.h", |
| 1264 | "xfa/src/fxbarcode/src/include/BC_C40Encoder.h", |
| 1265 | "xfa/src/fxbarcode/src/include/BC_CommonBitArray.h", |
| 1266 | "xfa/src/fxbarcode/src/include/BC_CommonBitMatrix.h", |
| 1267 | "xfa/src/fxbarcode/src/include/BC_CommonBitSource.h", |
| 1268 | "xfa/src/fxbarcode/src/include/BC_CommonByteArray.h", |
| 1269 | "xfa/src/fxbarcode/src/include/BC_CommonByteMatrix.h", |
| 1270 | "xfa/src/fxbarcode/src/include/BC_CommonCharacterSetECI.h", |
| 1271 | "xfa/src/fxbarcode/src/include/BC_CommonDecoderResult.h", |
| 1272 | "xfa/src/fxbarcode/src/include/BC_CommonECI.h", |
| 1273 | "xfa/src/fxbarcode/src/include/BC_CommonPerspectiveTransform.h", |
| 1274 | "xfa/src/fxbarcode/src/include/BC_DataMatrixBitMatrixParser.h", |
| 1275 | "xfa/src/fxbarcode/src/include/BC_DataMatrixDataBlock.h", |
| 1276 | "xfa/src/fxbarcode/src/include/BC_DataMatrixDecodedBitStreamParser.h", |
| 1277 | "xfa/src/fxbarcode/src/include/BC_DataMatrixDecoder.h", |
| 1278 | "xfa/src/fxbarcode/src/include/BC_DataMatrixDetector.h", |
| 1279 | "xfa/src/fxbarcode/src/include/BC_DataMatrixReader.h", |
| 1280 | "xfa/src/fxbarcode/src/include/BC_DataMatrixSymbolInfo144.h", |
| 1281 | "xfa/src/fxbarcode/src/include/BC_DataMatrixVersion.h", |
| 1282 | "xfa/src/fxbarcode/src/include/BC_DataMatrixWriter.h", |
| 1283 | "xfa/src/fxbarcode/src/include/BC_DecoderResult.h", |
| 1284 | "xfa/src/fxbarcode/src/include/BC_DefaultPlacement.h", |
| 1285 | "xfa/src/fxbarcode/src/include/BC_Dimension.h", |
| 1286 | "xfa/src/fxbarcode/src/include/BC_EdifactEncoder.h", |
| 1287 | "xfa/src/fxbarcode/src/include/BC_Encoder.h", |
| 1288 | "xfa/src/fxbarcode/src/include/BC_EncoderContext.h", |
| 1289 | "xfa/src/fxbarcode/src/include/BC_ErrorCorrection.h", |
| 1290 | "xfa/src/fxbarcode/src/include/BC_FinderPatternInfo.h", |
| 1291 | "xfa/src/fxbarcode/src/include/BC_GlobalHistogramBinarizer.h", |
| 1292 | "xfa/src/fxbarcode/src/include/BC_HighLevelEncoder.h", |
| 1293 | "xfa/src/fxbarcode/src/include/BC_LuminanceSource.h", |
| 1294 | "xfa/src/fxbarcode/src/include/BC_OnedCodaBarReader.h", |
| 1295 | "xfa/src/fxbarcode/src/include/BC_OnedCodaBarWriter.h", |
| 1296 | "xfa/src/fxbarcode/src/include/BC_OnedCode128Reader.h", |
| 1297 | "xfa/src/fxbarcode/src/include/BC_OnedCode128Writer.h", |
| 1298 | "xfa/src/fxbarcode/src/include/BC_OnedCode39Reader.h", |
| 1299 | "xfa/src/fxbarcode/src/include/BC_OnedCode39Writer.h", |
| 1300 | "xfa/src/fxbarcode/src/include/BC_OnedEAN13Reader.h", |
| 1301 | "xfa/src/fxbarcode/src/include/BC_OnedEAN13Writer.h", |
| 1302 | "xfa/src/fxbarcode/src/include/BC_OnedEAN8Reader.h", |
| 1303 | "xfa/src/fxbarcode/src/include/BC_OnedEAN8Writer.h", |
| 1304 | "xfa/src/fxbarcode/src/include/BC_OneDimReader.h", |
| 1305 | "xfa/src/fxbarcode/src/include/BC_OneDimWriter.h", |
| 1306 | "xfa/src/fxbarcode/src/include/BC_OneDReader.h", |
| 1307 | "xfa/src/fxbarcode/src/include/BC_OnedUPCAReader.h", |
| 1308 | "xfa/src/fxbarcode/src/include/BC_OnedUPCAWriter.h", |
| 1309 | "xfa/src/fxbarcode/src/include/BC_PDF417.h", |
| 1310 | "xfa/src/fxbarcode/src/include/BC_PDF417BarcodeMatrix.h", |
| 1311 | "xfa/src/fxbarcode/src/include/BC_PDF417BarcodeMetadata.h", |
| 1312 | "xfa/src/fxbarcode/src/include/BC_PDF417BarcodeRow.h", |
| 1313 | "xfa/src/fxbarcode/src/include/BC_PDF417BarcodeValue.h", |
| 1314 | "xfa/src/fxbarcode/src/include/BC_PDF417BoundingBox.h", |
| 1315 | "xfa/src/fxbarcode/src/include/BC_PDF417Codeword.h", |
| 1316 | "xfa/src/fxbarcode/src/include/BC_PDF417CodewordDecoder.h", |
| 1317 | "xfa/src/fxbarcode/src/include/BC_PDF417Common.h", |
| 1318 | "xfa/src/fxbarcode/src/include/BC_PDF417Compaction.h", |
| 1319 | "xfa/src/fxbarcode/src/include/BC_PDF417DecodedBitStreamParser.h", |
| 1320 | "xfa/src/fxbarcode/src/include/BC_PDF417DetectionResult.h", |
| 1321 | "xfa/src/fxbarcode/src/include/BC_PDF417DetectionResultColumn.h", |
| 1322 | "xfa/src/fxbarcode/src/include/BC_PDF417DetectionResultRowIndicatorColumn.h", |
| 1323 | "xfa/src/fxbarcode/src/include/BC_PDF417Detector.h", |
| 1324 | "xfa/src/fxbarcode/src/include/BC_PDF417DetectorResult.h", |
| 1325 | "xfa/src/fxbarcode/src/include/BC_PDF417Dimensions.h", |
| 1326 | "xfa/src/fxbarcode/src/include/BC_PDF417ECErrorCorrection.h", |
| 1327 | "xfa/src/fxbarcode/src/include/BC_PDF417ECModulusGF.h", |
| 1328 | "xfa/src/fxbarcode/src/include/BC_PDF417ECModulusPoly.h", |
| 1329 | "xfa/src/fxbarcode/src/include/BC_PDF417ErrorCorrection.h", |
| 1330 | "xfa/src/fxbarcode/src/include/BC_PDF417HighLevelEncoder.h", |
| 1331 | "xfa/src/fxbarcode/src/include/BC_PDF417Reader.h", |
| 1332 | "xfa/src/fxbarcode/src/include/BC_PDF417ResultMetadata.h", |
| 1333 | "xfa/src/fxbarcode/src/include/BC_PDF417ScanningDecoder.h", |
| 1334 | "xfa/src/fxbarcode/src/include/BC_PDF417Writer.h", |
| 1335 | "xfa/src/fxbarcode/src/include/BC_QRAlignmentPattern.h", |
| 1336 | "xfa/src/fxbarcode/src/include/BC_QRAlignmentPatternFinder.h", |
| 1337 | "xfa/src/fxbarcode/src/include/BC_QRBitMatrixParser.h", |
| 1338 | "xfa/src/fxbarcode/src/include/BC_QRCoder.h", |
| 1339 | "xfa/src/fxbarcode/src/include/BC_QRCoderBitVector.h", |
| 1340 | "xfa/src/fxbarcode/src/include/BC_QRCoderBlockPair.h", |
| 1341 | "xfa/src/fxbarcode/src/include/BC_QRCoderDecoder.h", |
| 1342 | "xfa/src/fxbarcode/src/include/BC_QRCodeReader.h", |
| 1343 | "xfa/src/fxbarcode/src/include/BC_QRCoderECB.h", |
| 1344 | "xfa/src/fxbarcode/src/include/BC_QRCoderECBlocks.h", |
| 1345 | "xfa/src/fxbarcode/src/include/BC_QRCoderEncoder.h", |
| 1346 | "xfa/src/fxbarcode/src/include/BC_QRCoderErrorCorrectionLevel.h", |
| 1347 | "xfa/src/fxbarcode/src/include/BC_QRCoderFormatInformation.h", |
| 1348 | "xfa/src/fxbarcode/src/include/BC_QRCoderMaskUtil.h", |
| 1349 | "xfa/src/fxbarcode/src/include/BC_QRCoderMatrixUtil.h", |
| 1350 | "xfa/src/fxbarcode/src/include/BC_QRCoderMode.h", |
| 1351 | "xfa/src/fxbarcode/src/include/BC_QRCoderVersion.h", |
| 1352 | "xfa/src/fxbarcode/src/include/BC_QRCodeWriter.h", |
| 1353 | "xfa/src/fxbarcode/src/include/BC_QRDataBlock.h", |
| 1354 | "xfa/src/fxbarcode/src/include/BC_QRDataMask.h", |
| 1355 | "xfa/src/fxbarcode/src/include/BC_QRDecodedBitStreamParser.h", |
| 1356 | "xfa/src/fxbarcode/src/include/BC_QRDetector.h", |
| 1357 | "xfa/src/fxbarcode/src/include/BC_QRDetectorResult.h", |
| 1358 | "xfa/src/fxbarcode/src/include/BC_QRFinderPattern.h", |
| 1359 | "xfa/src/fxbarcode/src/include/BC_QRFinderPatternFinder.h", |
| 1360 | "xfa/src/fxbarcode/src/include/BC_QRGridSampler.h", |
| 1361 | "xfa/src/fxbarcode/src/include/BC_Reader.h", |
| 1362 | "xfa/src/fxbarcode/src/include/BC_ReedSolomon.h", |
| 1363 | "xfa/src/fxbarcode/src/include/BC_ReedSolomonDecoder.h", |
| 1364 | "xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256.h", |
| 1365 | "xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256Poly.h", |
| 1366 | "xfa/src/fxbarcode/src/include/BC_ResultPoint.h", |
| 1367 | "xfa/src/fxbarcode/src/include/BC_SymbolInfo.h", |
| 1368 | "xfa/src/fxbarcode/src/include/BC_SymbolShapeHint.h", |
| 1369 | "xfa/src/fxbarcode/src/include/BC_TextEncoder.h", |
| 1370 | "xfa/src/fxbarcode/src/include/BC_TwoDimWriter.h", |
| 1371 | "xfa/src/fxbarcode/src/include/BC_UtilCodingConvert.h", |
| 1372 | "xfa/src/fxbarcode/src/include/BC_UtilRSS.h", |
| 1373 | "xfa/src/fxbarcode/src/include/BC_WhiteRectangleDetector.h", |
| 1374 | "xfa/src/fxbarcode/src/include/BC_Writer.h", |
| 1375 | "xfa/src/fxbarcode/src/include/BC_X12Encoder.h", |
| 1376 | "xfa/src/fxbarcode/src/include/utils.h", |
| 1377 | "xfa/src/fxfa/src/app/xfa_checksum.cpp", |
| 1378 | "xfa/src/fxfa/src/app/xfa_checksum.h", |
| 1379 | "xfa/src/fxfa/src/app/xfa_ffapp.cpp", |
| 1380 | "xfa/src/fxfa/src/app/xfa_ffapp.h", |
| 1381 | "xfa/src/fxfa/src/app/xfa_ffbarcode.cpp", |
| 1382 | "xfa/src/fxfa/src/app/xfa_ffbarcode.h", |
| 1383 | "xfa/src/fxfa/src/app/xfa_ffcheckbutton.cpp", |
| 1384 | "xfa/src/fxfa/src/app/xfa_ffcheckbutton.h", |
| 1385 | "xfa/src/fxfa/src/app/xfa_ffchoicelist.cpp", |
| 1386 | "xfa/src/fxfa/src/app/xfa_ffchoicelist.h", |
| 1387 | "xfa/src/fxfa/src/app/xfa_ffConfigAcc.cpp", |
| 1388 | "xfa/src/fxfa/src/app/xfa_ffConfigAcc.h", |
| 1389 | "xfa/src/fxfa/src/app/xfa_ffdoc.cpp", |
| 1390 | "xfa/src/fxfa/src/app/xfa_ffdoc.h", |
| 1391 | "xfa/src/fxfa/src/app/xfa_ffdochandler.cpp", |
| 1392 | "xfa/src/fxfa/src/app/xfa_ffdochandler.h", |
| 1393 | "xfa/src/fxfa/src/app/xfa_ffdocview.cpp", |
| 1394 | "xfa/src/fxfa/src/app/xfa_ffdocview.h", |
| 1395 | "xfa/src/fxfa/src/app/xfa_ffdraw.cpp", |
| 1396 | "xfa/src/fxfa/src/app/xfa_ffdraw.h", |
| 1397 | "xfa/src/fxfa/src/app/xfa_ffexclgroup.cpp", |
| 1398 | "xfa/src/fxfa/src/app/xfa_ffexclgroup.h", |
| 1399 | "xfa/src/fxfa/src/app/xfa_fffield.cpp", |
| 1400 | "xfa/src/fxfa/src/app/xfa_fffield.h", |
| 1401 | "xfa/src/fxfa/src/app/xfa_ffimage.cpp", |
| 1402 | "xfa/src/fxfa/src/app/xfa_ffimage.h", |
| 1403 | "xfa/src/fxfa/src/app/xfa_ffimageedit.cpp", |
| 1404 | "xfa/src/fxfa/src/app/xfa_ffimageedit.h", |
| 1405 | "xfa/src/fxfa/src/app/xfa_ffnotify.cpp", |
| 1406 | "xfa/src/fxfa/src/app/xfa_ffnotify.h", |
| 1407 | "xfa/src/fxfa/src/app/xfa_ffpageview.cpp", |
| 1408 | "xfa/src/fxfa/src/app/xfa_ffpageview.h", |
| 1409 | "xfa/src/fxfa/src/app/xfa_ffpath.cpp", |
| 1410 | "xfa/src/fxfa/src/app/xfa_ffpath.h", |
| 1411 | "xfa/src/fxfa/src/app/xfa_ffpushbutton.cpp", |
| 1412 | "xfa/src/fxfa/src/app/xfa_ffpushbutton.h", |
| 1413 | "xfa/src/fxfa/src/app/xfa_ffsignature.cpp", |
| 1414 | "xfa/src/fxfa/src/app/xfa_ffsignature.h", |
| 1415 | "xfa/src/fxfa/src/app/xfa_ffsubform.cpp", |
| 1416 | "xfa/src/fxfa/src/app/xfa_ffsubform.h", |
| 1417 | "xfa/src/fxfa/src/app/xfa_fftext.cpp", |
| 1418 | "xfa/src/fxfa/src/app/xfa_fftext.h", |
| 1419 | "xfa/src/fxfa/src/app/xfa_fftextedit.cpp", |
| 1420 | "xfa/src/fxfa/src/app/xfa_fftextedit.h", |
| 1421 | "xfa/src/fxfa/src/app/xfa_ffwidget.cpp", |
| 1422 | "xfa/src/fxfa/src/app/xfa_ffwidget.h", |
| 1423 | "xfa/src/fxfa/src/app/xfa_ffwidgetacc.cpp", |
| 1424 | "xfa/src/fxfa/src/app/xfa_ffwidgetacc.h", |
| 1425 | "xfa/src/fxfa/src/app/xfa_ffwidgethandler.cpp", |
| 1426 | "xfa/src/fxfa/src/app/xfa_ffwidgethandler.h", |
| 1427 | "xfa/src/fxfa/src/app/xfa_fontmgr.cpp", |
| 1428 | "xfa/src/fxfa/src/app/xfa_fontmgr.h", |
| 1429 | "xfa/src/fxfa/src/app/xfa_fwladapter.cpp", |
| 1430 | "xfa/src/fxfa/src/app/xfa_fwladapter.h", |
| 1431 | "xfa/src/fxfa/src/app/xfa_fwltheme.cpp", |
| 1432 | "xfa/src/fxfa/src/app/xfa_fwltheme.h", |
| 1433 | "xfa/src/fxfa/src/app/xfa_rendercontext.cpp", |
| 1434 | "xfa/src/fxfa/src/app/xfa_rendercontext.h", |
| 1435 | "xfa/src/fxfa/src/app/xfa_textlayout.cpp", |
| 1436 | "xfa/src/fxfa/src/app/xfa_textlayout.h", |
| 1437 | "xfa/src/fxfa/src/common/fxfa_localevalue.h", |
| 1438 | "xfa/src/fxfa/src/common/xfa_common.h", |
| 1439 | "xfa/src/fxfa/src/common/xfa_debug.h", |
| 1440 | "xfa/src/fxfa/src/common/xfa_docdata.h", |
| 1441 | "xfa/src/fxfa/src/common/xfa_doclayout.h", |
| 1442 | "xfa/src/fxfa/src/common/xfa_document.h", |
| 1443 | "xfa/src/fxfa/src/common/xfa_fm2jsapi.h", |
| 1444 | "xfa/src/fxfa/src/common/xfa_localemgr.h", |
| 1445 | "xfa/src/fxfa/src/common/xfa_object.h", |
| 1446 | "xfa/src/fxfa/src/common/xfa_parser.h", |
| 1447 | "xfa/src/fxfa/src/common/xfa_script.h", |
| 1448 | "xfa/src/fxfa/src/common/xfa_utils.h", |
| 1449 | "xfa/src/fxfa/src/fm2js/xfa_error.cpp", |
| 1450 | "xfa/src/fxfa/src/fm2js/xfa_error.h", |
| 1451 | "xfa/src/fxfa/src/fm2js/xfa_expression.cpp", |
| 1452 | "xfa/src/fxfa/src/fm2js/xfa_expression.h", |
| 1453 | "xfa/src/fxfa/src/fm2js/xfa_fm2js.cpp", |
| 1454 | "xfa/src/fxfa/src/fm2js/xfa_fm2js.h", |
| 1455 | "xfa/src/fxfa/src/fm2js/xfa_fm2jsapi.cpp", |
| 1456 | "xfa/src/fxfa/src/fm2js/xfa_fm2jscontext.cpp", |
| 1457 | "xfa/src/fxfa/src/fm2js/xfa_fm2jscontext.h", |
| 1458 | "xfa/src/fxfa/src/fm2js/xfa_fmparse.cpp", |
| 1459 | "xfa/src/fxfa/src/fm2js/xfa_fmparse.h", |
| 1460 | "xfa/src/fxfa/src/fm2js/xfa_lexer.cpp", |
| 1461 | "xfa/src/fxfa/src/fm2js/xfa_lexer.h", |
| 1462 | "xfa/src/fxfa/src/fm2js/xfa_program.cpp", |
| 1463 | "xfa/src/fxfa/src/fm2js/xfa_program.h", |
| 1464 | "xfa/src/fxfa/src/fm2js/xfa_simpleexpression.cpp", |
| 1465 | "xfa/src/fxfa/src/fm2js/xfa_simpleexpression.h", |
| 1466 | "xfa/src/fxfa/src/parser/xfa_basic_data.cpp", |
| 1467 | "xfa/src/fxfa/src/parser/xfa_basic_imp.cpp", |
| 1468 | "xfa/src/fxfa/src/parser/xfa_basic_imp.h", |
| 1469 | "xfa/src/fxfa/src/parser/xfa_debug_parser.cpp", |
| 1470 | "xfa/src/fxfa/src/parser/xfa_debug_parser.h", |
| 1471 | "xfa/src/fxfa/src/parser/xfa_document_datadescription_imp.cpp", |
| 1472 | "xfa/src/fxfa/src/parser/xfa_document_datadescription_imp.h", |
| 1473 | "xfa/src/fxfa/src/parser/xfa_document_datamerger_imp.cpp", |
| 1474 | "xfa/src/fxfa/src/parser/xfa_document_datamerger_imp.h", |
| 1475 | "xfa/src/fxfa/src/parser/xfa_document_imp.cpp", |
| 1476 | "xfa/src/fxfa/src/parser/xfa_document_imp.h", |
| 1477 | "xfa/src/fxfa/src/parser/xfa_document_layout_imp.cpp", |
| 1478 | "xfa/src/fxfa/src/parser/xfa_document_layout_imp.h", |
| 1479 | "xfa/src/fxfa/src/parser/xfa_document_serialize.cpp", |
| 1480 | "xfa/src/fxfa/src/parser/xfa_document_serialize.h", |
| 1481 | "xfa/src/fxfa/src/parser/xfa_layout_appadapter.cpp", |
| 1482 | "xfa/src/fxfa/src/parser/xfa_layout_appadapter.h", |
| 1483 | "xfa/src/fxfa/src/parser/xfa_layout_itemlayout.cpp", |
| 1484 | "xfa/src/fxfa/src/parser/xfa_layout_itemlayout.h", |
| 1485 | "xfa/src/fxfa/src/parser/xfa_layout_pagemgr_new.cpp", |
| 1486 | "xfa/src/fxfa/src/parser/xfa_layout_pagemgr_new.h", |
| 1487 | "xfa/src/fxfa/src/parser/xfa_locale.cpp", |
| 1488 | "xfa/src/fxfa/src/parser/xfa_locale.h", |
| 1489 | "xfa/src/fxfa/src/parser/xfa_localemgr.cpp", |
| 1490 | "xfa/src/fxfa/src/parser/xfa_localevalue.cpp", |
| 1491 | "xfa/src/fxfa/src/parser/xfa_objectacc_imp.cpp", |
| 1492 | "xfa/src/fxfa/src/parser/xfa_object_imp.cpp", |
| 1493 | "xfa/src/fxfa/src/parser/xfa_parser_imp.cpp", |
| 1494 | "xfa/src/fxfa/src/parser/xfa_parser_imp.h", |
| 1495 | "xfa/src/fxfa/src/parser/xfa_script_datawindow.cpp", |
| 1496 | "xfa/src/fxfa/src/parser/xfa_script_datawindow.h", |
| 1497 | "xfa/src/fxfa/src/parser/xfa_script_eventpseudomodel.cpp", |
| 1498 | "xfa/src/fxfa/src/parser/xfa_script_eventpseudomodel.h", |
| 1499 | "xfa/src/fxfa/src/parser/xfa_script_hostpseudomodel.cpp", |
| 1500 | "xfa/src/fxfa/src/parser/xfa_script_hostpseudomodel.h", |
| 1501 | "xfa/src/fxfa/src/parser/xfa_script_imp.cpp", |
| 1502 | "xfa/src/fxfa/src/parser/xfa_script_imp.h", |
| 1503 | "xfa/src/fxfa/src/parser/xfa_script_layoutpseudomodel.cpp", |
| 1504 | "xfa/src/fxfa/src/parser/xfa_script_layoutpseudomodel.h", |
| 1505 | "xfa/src/fxfa/src/parser/xfa_script_logpseudomodel.cpp", |
| 1506 | "xfa/src/fxfa/src/parser/xfa_script_logpseudomodel.h", |
| 1507 | "xfa/src/fxfa/src/parser/xfa_script_nodehelper.cpp", |
| 1508 | "xfa/src/fxfa/src/parser/xfa_script_nodehelper.h", |
| 1509 | "xfa/src/fxfa/src/parser/xfa_script_resolveprocessor.cpp", |
| 1510 | "xfa/src/fxfa/src/parser/xfa_script_resolveprocessor.h", |
| 1511 | "xfa/src/fxfa/src/parser/xfa_script_signaturepseudomodel.cpp", |
| 1512 | "xfa/src/fxfa/src/parser/xfa_script_signaturepseudomodel.h", |
| 1513 | "xfa/src/fxfa/src/parser/xfa_utils_imp.cpp", |
| 1514 | "xfa/src/fxgraphics/src/fx_graphics.cpp", |
| 1515 | "xfa/src/fxgraphics/src/fx_path_generator.cpp", |
| 1516 | "xfa/src/fxgraphics/src/fx_path_generator.h", |
| 1517 | "xfa/src/fxgraphics/src/pre.h", |
| 1518 | "xfa/src/fxjse/src/class.cpp", |
| 1519 | "xfa/src/fxjse/src/class.h", |
| 1520 | "xfa/src/fxjse/src/context.cpp", |
| 1521 | "xfa/src/fxjse/src/context.h", |
| 1522 | "xfa/src/fxjse/src/dynprop.cpp", |
| 1523 | "xfa/src/fxjse/src/runtime.cpp", |
| 1524 | "xfa/src/fxjse/src/runtime.h", |
| 1525 | "xfa/src/fxjse/src/scope_inline.h", |
| 1526 | "xfa/src/fxjse/src/util_inline.h", |
| 1527 | "xfa/src/fxjse/src/value.cpp", |
| 1528 | "xfa/src/fxjse/src/value.h" |
| 1529 | ] |
| 1530 | configs -= [ "//build/config/compiler:chromium_code" ] |
| 1531 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 1532 | include_dirs = [ |
| 1533 | "//v8", |
| 1534 | "//v8/include", |
| 1535 | ] |
| 1536 | public_deps = [ |
| 1537 | "//v8", |
| 1538 | ] |
| 1539 | deps = [ |
| 1540 | "//v8:v8_libplatform", |
| 1541 | ] |
| 1542 | } |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1543 | |
| 1544 | test("pdfium_unittests") { |
| 1545 | sources = [ |
| 1546 | "core/src/fxcrt/fx_basic_bstring_unittest.cpp", |
| 1547 | "testing/fx_string_testhelpers.cpp", |
| 1548 | "testing/fx_string_testhelpers.h", |
| 1549 | ] |
| 1550 | deps = [ |
| 1551 | "//testing/gtest", |
| 1552 | "//testing/gtest:gtest_main", |
| 1553 | ":pdfium" |
| 1554 | ] |
| 1555 | include_dirs = [ "." ] |
| 1556 | configs -= [ "//build/config/compiler:chromium_code" ] |
| 1557 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 1558 | } |