Tom Sepez | b545159 | 2016-02-22 16:48:02 -0800 | [diff] [blame] | 1 | # Copyright 2016 The Chromium Authors. All rights reserved. |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 5 | import("//build_overrides/v8.gni") |
Tom Sepez | a32f760 | 2015-01-15 09:34:34 -0800 | [diff] [blame] | 6 | import("//testing/test.gni") |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 7 | import("pdfium.gni") |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 8 | |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 9 | config("pdfium_config") { |
| 10 | cflags = [] |
Oliver Chang | cec3f68 | 2015-11-05 16:00:40 -0800 | [diff] [blame] | 11 | include_dirs = [ |
Lei Zhang | 8241df7 | 2015-11-06 14:38:48 -0800 | [diff] [blame] | 12 | ".", |
Oliver Chang | cec3f68 | 2015-11-05 16:00:40 -0800 | [diff] [blame] | 13 | "third_party/freetype/include", |
| 14 | "third_party/freetype/include/freetype", |
| 15 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 16 | defines = [ |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 17 | "OPJ_STATIC", |
John Abd-El-Malek | 385729b | 2015-02-06 15:51:11 -0800 | [diff] [blame] | 18 | "PNG_PREFIX", |
John Abd-El-Malek | 385729b | 2015-02-06 15:51:11 -0800 | [diff] [blame] | 19 | "PNG_USE_READ_MACROS", |
Jochen Eisinger | 90a4181 | 2015-05-20 10:49:45 +0200 | [diff] [blame] | 20 | "V8_DEPRECATION_WARNINGS", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 21 | ] |
| 22 | |
| 23 | if (pdf_use_skia) { |
| 24 | defines += [ "_SKIA_SUPPORT_" ] |
| 25 | } |
| 26 | |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 27 | if (pdf_enable_v8) { |
| 28 | defines += [ "PDF_ENABLE_V8" ] |
| 29 | } |
| 30 | |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 31 | if (pdf_enable_xfa) { |
| 32 | defines += [ "PDF_ENABLE_XFA" ] |
| 33 | } |
| 34 | |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 35 | if (is_linux) { |
Tom Sepez | 25d5be6 | 2015-06-18 17:44:29 -0700 | [diff] [blame] | 36 | if (current_cpu == "x64") { |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 37 | defines += [ "_FX_CPU_=_FX_X64_" ] |
| 38 | cflags += [ "-fPIC" ] |
Tom Sepez | 25d5be6 | 2015-06-18 17:44:29 -0700 | [diff] [blame] | 39 | } else if (current_cpu == "x86") { |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 40 | defines += [ "_FX_CPU_=_FX_X86_" ] |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | if (is_win) { |
dsinclair | 5d9da0c | 2016-04-21 13:12:06 -0700 | [diff] [blame] | 45 | cflags += [ "/wd4267" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 46 | } |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 47 | |
Tom Sepez | 3420909 | 2016-03-18 09:00:33 -0700 | [diff] [blame] | 48 | if (is_clang || is_posix) { |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 49 | # TODO(thestig): Fix all instances, remove this, pdfium:29 |
| 50 | cflags += [ "-Wno-sign-compare" ] |
| 51 | } |
Tom Sepez | 3420909 | 2016-03-18 09:00:33 -0700 | [diff] [blame] | 52 | |
| 53 | if (is_posix && !is_clang) { # When GCC. |
| 54 | cflags += [ "-Wno-error=strict-overflow" ] |
| 55 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | static_library("pdfium") { |
| 59 | sources = [ |
dsinclair | b959010 | 2016-04-27 06:38:59 -0700 | [diff] [blame^] | 60 | "fpdfsdk/cfx_systemhandler.cpp", |
| 61 | "fpdfsdk/cfx_systemhandler.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 62 | "fpdfsdk/fpdf_dataavail.cpp", |
| 63 | "fpdfsdk/fpdf_ext.cpp", |
| 64 | "fpdfsdk/fpdf_flatten.cpp", |
| 65 | "fpdfsdk/fpdf_progressive.cpp", |
| 66 | "fpdfsdk/fpdf_searchex.cpp", |
| 67 | "fpdfsdk/fpdf_sysfontinfo.cpp", |
| 68 | "fpdfsdk/fpdf_transformpage.cpp", |
| 69 | "fpdfsdk/fpdfdoc.cpp", |
| 70 | "fpdfsdk/fpdfeditimg.cpp", |
| 71 | "fpdfsdk/fpdfeditpage.cpp", |
| 72 | "fpdfsdk/fpdfformfill.cpp", |
| 73 | "fpdfsdk/fpdfppo.cpp", |
| 74 | "fpdfsdk/fpdfsave.cpp", |
| 75 | "fpdfsdk/fpdftext.cpp", |
| 76 | "fpdfsdk/fpdfview.cpp", |
| 77 | "fpdfsdk/fsdk_actionhandler.cpp", |
| 78 | "fpdfsdk/fsdk_annothandler.cpp", |
| 79 | "fpdfsdk/fsdk_baseannot.cpp", |
| 80 | "fpdfsdk/fsdk_baseform.cpp", |
| 81 | "fpdfsdk/fsdk_mgr.cpp", |
| 82 | "fpdfsdk/fsdk_rendercontext.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 83 | "fpdfsdk/include/fsdk_actionhandler.h", |
| 84 | "fpdfsdk/include/fsdk_annothandler.h", |
| 85 | "fpdfsdk/include/fsdk_baseannot.h", |
| 86 | "fpdfsdk/include/fsdk_baseform.h", |
Tom Sepez | 1ed8a21 | 2015-05-11 15:25:39 -0700 | [diff] [blame] | 87 | "public/fpdf_dataavail.h", |
| 88 | "public/fpdf_doc.h", |
| 89 | "public/fpdf_edit.h", |
| 90 | "public/fpdf_ext.h", |
| 91 | "public/fpdf_flatten.h", |
| 92 | "public/fpdf_formfill.h", |
| 93 | "public/fpdf_fwlevent.h", |
| 94 | "public/fpdf_ppo.h", |
| 95 | "public/fpdf_progressive.h", |
| 96 | "public/fpdf_save.h", |
| 97 | "public/fpdf_searchex.h", |
| 98 | "public/fpdf_sysfontinfo.h", |
| 99 | "public/fpdf_text.h", |
| 100 | "public/fpdf_transformpage.h", |
| 101 | "public/fpdfview.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 102 | ] |
| 103 | |
| 104 | libs = [] |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 105 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 106 | |
| 107 | deps = [ |
| 108 | ":fdrm", |
| 109 | ":formfiller", |
| 110 | ":fpdfapi", |
| 111 | ":fpdfdoc", |
| 112 | ":fpdftext", |
| 113 | ":fxcodec", |
| 114 | ":fxcrt", |
| 115 | ":fxedit", |
| 116 | ":fxge", |
| 117 | ":javascript", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 118 | ":pdfwindow", |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 119 | "third_party:bigint", |
| 120 | "third_party:pdfium_base", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 121 | ] |
| 122 | |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 123 | if (pdf_enable_xfa) { |
Tom Sepez | b545159 | 2016-02-22 16:48:02 -0800 | [diff] [blame] | 124 | deps += [ ":fpdfxfa" ] |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 125 | } |
| 126 | |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 127 | if (is_win) { |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 128 | libs += [ |
| 129 | "advapi32.lib", |
| 130 | "gdi32.lib", |
| 131 | "user32.lib", |
| 132 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | if (is_mac) { |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 136 | libs += [ |
| 137 | "AppKit.framework", |
| 138 | "CoreFoundation.framework", |
| 139 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 140 | } |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 141 | |
Tom Sepez | 0dfd030 | 2015-10-12 15:38:22 -0700 | [diff] [blame] | 142 | if (pdfium_bundle_freetype) { |
| 143 | deps += [ "third_party:fx_freetype" ] |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 144 | } else { |
| 145 | libs += [ "freetype" ] |
| 146 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 147 | } |
| 148 | |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 149 | source_set("test_support") { |
| 150 | testonly = true |
| 151 | sources = [ |
| 152 | "testing/fx_string_testhelpers.cpp", |
| 153 | "testing/fx_string_testhelpers.h", |
| 154 | "testing/test_support.cpp", |
| 155 | "testing/test_support.h", |
Oliver Chang | d46f1c8 | 2015-11-12 22:03:10 -0800 | [diff] [blame] | 156 | "testing/utils/path_service.cpp", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 157 | ] |
| 158 | deps = [ |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 159 | ":pdfium", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 160 | "//testing/gmock", |
| 161 | "//testing/gtest", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 162 | ] |
Lei Zhang | 8241df7 | 2015-11-06 14:38:48 -0800 | [diff] [blame] | 163 | include_dirs = [] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 164 | if (pdf_enable_v8) { |
| 165 | deps += [ |
| 166 | "//v8", |
| 167 | "//v8:v8_libplatform", |
| 168 | ] |
| 169 | include_dirs += [ |
| 170 | "//v8", |
| 171 | "//v8/include", |
| 172 | ] |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 173 | configs += [ "//v8:external_startup_data" ] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 174 | } |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 175 | configs += [ ":pdfium_config" ] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | # Targets below this are only visible within this file (and to the |
| 179 | # top-level gn_visibility target used to help gn_all build everything). |
| 180 | visibility = [ |
| 181 | ":*", |
| 182 | "//:gn_visibility", |
| 183 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 184 | |
| 185 | static_library("fdrm") { |
| 186 | sources = [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 187 | "core/fdrm/crypto/fx_crypt.cpp", |
| 188 | "core/fdrm/crypto/fx_crypt_aes.cpp", |
| 189 | "core/fdrm/crypto/fx_crypt_sha.cpp", |
Dan Sinclair | 13ee55a | 2016-03-14 15:56:00 -0400 | [diff] [blame] | 190 | "core/fdrm/crypto/include/fx_crypt.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 191 | ] |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 192 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | static_library("fpdfdoc") { |
| 196 | sources = [ |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 197 | "core/fpdfdoc/cpdf_variabletext.cpp", |
dsinclair | 777b333 | 2016-03-31 20:03:08 -0700 | [diff] [blame] | 198 | "core/fpdfdoc/cpvt_color.cpp", |
| 199 | "core/fpdfdoc/cpvt_color.h", |
| 200 | "core/fpdfdoc/cpvt_dash.h", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 201 | "core/fpdfdoc/cpvt_floatrect.h", |
dsinclair | 777b333 | 2016-03-31 20:03:08 -0700 | [diff] [blame] | 202 | "core/fpdfdoc/cpvt_fontmap.cpp", |
| 203 | "core/fpdfdoc/cpvt_fontmap.h", |
| 204 | "core/fpdfdoc/cpvt_generateap.cpp", |
| 205 | "core/fpdfdoc/cpvt_generateap.h", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 206 | "core/fpdfdoc/cpvt_lineinfo.h", |
| 207 | "core/fpdfdoc/cpvt_sectioninfo.h", |
| 208 | "core/fpdfdoc/cpvt_wordinfo.h", |
| 209 | "core/fpdfdoc/csection.h", |
| 210 | "core/fpdfdoc/ctypeset.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 211 | "core/fpdfdoc/doc_action.cpp", |
| 212 | "core/fpdfdoc/doc_annot.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 213 | "core/fpdfdoc/doc_basic.cpp", |
| 214 | "core/fpdfdoc/doc_bookmark.cpp", |
| 215 | "core/fpdfdoc/doc_form.cpp", |
| 216 | "core/fpdfdoc/doc_formcontrol.cpp", |
| 217 | "core/fpdfdoc/doc_formfield.cpp", |
| 218 | "core/fpdfdoc/doc_link.cpp", |
| 219 | "core/fpdfdoc/doc_metadata.cpp", |
| 220 | "core/fpdfdoc/doc_ocg.cpp", |
| 221 | "core/fpdfdoc/doc_tagged.cpp", |
| 222 | "core/fpdfdoc/doc_utils.cpp", |
| 223 | "core/fpdfdoc/doc_utils.h", |
| 224 | "core/fpdfdoc/doc_viewerPreferences.cpp", |
| 225 | "core/fpdfdoc/doc_vt.cpp", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 226 | "core/fpdfdoc/include/cpdf_variabletext.h", |
| 227 | "core/fpdfdoc/include/cpvt_line.h", |
| 228 | "core/fpdfdoc/include/cpvt_secprops.h", |
| 229 | "core/fpdfdoc/include/cpvt_section.h", |
| 230 | "core/fpdfdoc/include/cpvt_word.h", |
| 231 | "core/fpdfdoc/include/cpvt_wordplace.h", |
| 232 | "core/fpdfdoc/include/cpvt_wordprops.h", |
| 233 | "core/fpdfdoc/include/cpvt_wordrange.h", |
dsinclair | e530fb7 | 2016-04-06 12:09:37 -0700 | [diff] [blame] | 234 | "core/fpdfdoc/include/fpdf_doc.h", |
| 235 | "core/fpdfdoc/include/fpdf_tagged.h", |
dsinclair | 777b333 | 2016-03-31 20:03:08 -0700 | [diff] [blame] | 236 | "core/fpdfdoc/ipvt_fontmap.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 237 | "core/fpdfdoc/pdf_vt.h", |
| 238 | "core/fpdfdoc/tagged_int.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 239 | ] |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 240 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 241 | } |
| 242 | |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 243 | static_library("fpdfapi") { |
| 244 | sources = [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 245 | "core/fpdfapi/fpdf_basic_module.cpp", |
| 246 | "core/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp", |
| 247 | "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp", |
| 248 | "core/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp", |
| 249 | "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp", |
| 250 | "core/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp", |
| 251 | "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp", |
| 252 | "core/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-V_0.cpp", |
| 253 | "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-H_0.cpp", |
| 254 | "core/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-V_0.cpp", |
| 255 | "core/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-H_5.cpp", |
| 256 | "core/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-V_5.cpp", |
| 257 | "core/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-H_3.cpp", |
| 258 | "core/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-V_3.cpp", |
| 259 | "core/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UTF16-H_0.cpp", |
| 260 | "core/fpdfapi/fpdf_cmaps/CNS1/cmaps_cns1.cpp", |
| 261 | "core/fpdfapi/fpdf_cmaps/GB1/Adobe-GB1-UCS2_5.cpp", |
| 262 | "core/fpdfapi/fpdf_cmaps/GB1/GB-EUC-H_0.cpp", |
| 263 | "core/fpdfapi/fpdf_cmaps/GB1/GB-EUC-V_0.cpp", |
| 264 | "core/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-H_2.cpp", |
| 265 | "core/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-V_2.cpp", |
| 266 | "core/fpdfapi/fpdf_cmaps/GB1/GBK2K-H_5.cpp", |
| 267 | "core/fpdfapi/fpdf_cmaps/GB1/GBK2K-V_5.cpp", |
| 268 | "core/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-H_2.cpp", |
| 269 | "core/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-V_2.cpp", |
| 270 | "core/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-H_0.cpp", |
| 271 | "core/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-V_0.cpp", |
| 272 | "core/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-H_4.cpp", |
| 273 | "core/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-V_4.cpp", |
| 274 | "core/fpdfapi/fpdf_cmaps/GB1/cmaps_gb1.cpp", |
| 275 | "core/fpdfapi/fpdf_cmaps/Japan1/83pv-RKSJ-H_1.cpp", |
| 276 | "core/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-H_2.cpp", |
| 277 | "core/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-V_2.cpp", |
| 278 | "core/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-H_2.cpp", |
| 279 | "core/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-V_2.cpp", |
| 280 | "core/fpdfapi/fpdf_cmaps/Japan1/90pv-RKSJ-H_1.cpp", |
| 281 | "core/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-H_1.cpp", |
| 282 | "core/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-V_1.cpp", |
| 283 | "core/fpdfapi/fpdf_cmaps/Japan1/Adobe-Japan1-UCS2_4.cpp", |
| 284 | "core/fpdfapi/fpdf_cmaps/Japan1/EUC-H_1.cpp", |
| 285 | "core/fpdfapi/fpdf_cmaps/Japan1/EUC-V_1.cpp", |
| 286 | "core/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-H_2.cpp", |
| 287 | "core/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-V_2.cpp", |
| 288 | "core/fpdfapi/fpdf_cmaps/Japan1/H_1.cpp", |
| 289 | "core/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-H_4.cpp", |
| 290 | "core/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-V_4.cpp", |
| 291 | "core/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-H_4.cpp", |
| 292 | "core/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-V_4.cpp", |
| 293 | "core/fpdfapi/fpdf_cmaps/Japan1/V_1.cpp", |
| 294 | "core/fpdfapi/fpdf_cmaps/Japan1/cmaps_japan1.cpp", |
| 295 | "core/fpdfapi/fpdf_cmaps/Korea1/Adobe-Korea1-UCS2_2.cpp", |
| 296 | "core/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-H_0.cpp", |
| 297 | "core/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-V_0.cpp", |
| 298 | "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-H_1.cpp", |
| 299 | "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-V_1.cpp", |
| 300 | "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-H_1.cpp", |
| 301 | "core/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-V_1.cpp", |
| 302 | "core/fpdfapi/fpdf_cmaps/Korea1/KSCpc-EUC-H_0.cpp", |
| 303 | "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-H_1.cpp", |
| 304 | "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-V_1.cpp", |
| 305 | "core/fpdfapi/fpdf_cmaps/Korea1/UniKS-UTF16-H_0.cpp", |
| 306 | "core/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp", |
| 307 | "core/fpdfapi/fpdf_cmaps/cmap_int.h", |
| 308 | "core/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp", |
Dan Sinclair | 455a419 | 2016-03-16 09:48:56 -0400 | [diff] [blame] | 309 | "core/fpdfapi/fpdf_edit/cpdf_pagecontentgenerator.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 310 | "core/fpdfapi/fpdf_edit/editint.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 311 | "core/fpdfapi/fpdf_edit/fpdf_edit_create.cpp", |
Dan Sinclair | aa403d3 | 2016-03-15 14:57:22 -0400 | [diff] [blame] | 312 | "core/fpdfapi/fpdf_edit/include/cpdf_creator.h", |
Dan Sinclair | 455a419 | 2016-03-16 09:48:56 -0400 | [diff] [blame] | 313 | "core/fpdfapi/fpdf_edit/include/cpdf_pagecontentgenerator.h", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 314 | "core/fpdfapi/fpdf_font/cpdf_cidfont.cpp", |
| 315 | "core/fpdfapi/fpdf_font/cpdf_cidfont.h", |
| 316 | "core/fpdfapi/fpdf_font/cpdf_font.cpp", |
| 317 | "core/fpdfapi/fpdf_font/cpdf_fontencoding.cpp", |
| 318 | "core/fpdfapi/fpdf_font/cpdf_simplefont.cpp", |
| 319 | "core/fpdfapi/fpdf_font/cpdf_simplefont.h", |
| 320 | "core/fpdfapi/fpdf_font/cpdf_truetypefont.cpp", |
| 321 | "core/fpdfapi/fpdf_font/cpdf_truetypefont.h", |
| 322 | "core/fpdfapi/fpdf_font/cpdf_type1font.cpp", |
| 323 | "core/fpdfapi/fpdf_font/cpdf_type1font.h", |
| 324 | "core/fpdfapi/fpdf_font/cpdf_type3char.cpp", |
| 325 | "core/fpdfapi/fpdf_font/cpdf_type3char.h", |
| 326 | "core/fpdfapi/fpdf_font/cpdf_type3font.cpp", |
| 327 | "core/fpdfapi/fpdf_font/cpdf_type3font.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 328 | "core/fpdfapi/fpdf_font/font_int.h", |
| 329 | "core/fpdfapi/fpdf_font/fpdf_font.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 330 | "core/fpdfapi/fpdf_font/fpdf_font_cid.cpp", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 331 | "core/fpdfapi/fpdf_font/include/cpdf_font.h", |
| 332 | "core/fpdfapi/fpdf_font/include/cpdf_fontencoding.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 333 | "core/fpdfapi/fpdf_font/ttgsubtable.cpp", |
| 334 | "core/fpdfapi/fpdf_font/ttgsubtable.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 335 | "core/fpdfapi/fpdf_page/cpdf_allstates.cpp", |
| 336 | "core/fpdfapi/fpdf_page/cpdf_allstates.h", |
| 337 | "core/fpdfapi/fpdf_page/cpdf_clippath.cpp", |
| 338 | "core/fpdfapi/fpdf_page/cpdf_clippathdata.cpp", |
| 339 | "core/fpdfapi/fpdf_page/cpdf_clippathdata.h", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 340 | "core/fpdfapi/fpdf_page/cpdf_color.cpp", |
| 341 | "core/fpdfapi/fpdf_page/cpdf_colorspace.cpp", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 342 | "core/fpdfapi/fpdf_page/cpdf_colorstate.cpp", |
| 343 | "core/fpdfapi/fpdf_page/cpdf_colorstate.h", |
| 344 | "core/fpdfapi/fpdf_page/cpdf_colorstatedata.cpp", |
| 345 | "core/fpdfapi/fpdf_page/cpdf_colorstatedata.h", |
| 346 | "core/fpdfapi/fpdf_page/cpdf_contentmark.cpp", |
| 347 | "core/fpdfapi/fpdf_page/cpdf_contentmark.h", |
| 348 | "core/fpdfapi/fpdf_page/cpdf_contentmarkdata.cpp", |
| 349 | "core/fpdfapi/fpdf_page/cpdf_contentmarkdata.h", |
| 350 | "core/fpdfapi/fpdf_page/cpdf_contentmarkitem.cpp", |
| 351 | "core/fpdfapi/fpdf_page/cpdf_contentmarkitem.h", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 352 | "core/fpdfapi/fpdf_page/cpdf_countedobject.h", |
Dan Sinclair | 455a419 | 2016-03-16 09:48:56 -0400 | [diff] [blame] | 353 | "core/fpdfapi/fpdf_page/cpdf_form.cpp", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 354 | "core/fpdfapi/fpdf_page/cpdf_formobject.cpp", |
| 355 | "core/fpdfapi/fpdf_page/cpdf_generalstate.cpp", |
| 356 | "core/fpdfapi/fpdf_page/cpdf_generalstatedata.cpp", |
| 357 | "core/fpdfapi/fpdf_page/cpdf_graphicstates.cpp", |
| 358 | "core/fpdfapi/fpdf_page/cpdf_graphicstates.h", |
| 359 | "core/fpdfapi/fpdf_page/cpdf_graphstate.h", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 360 | "core/fpdfapi/fpdf_page/cpdf_image.cpp", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 361 | "core/fpdfapi/fpdf_page/cpdf_imageobject.cpp", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 362 | "core/fpdfapi/fpdf_page/cpdf_meshstream.cpp", |
| 363 | "core/fpdfapi/fpdf_page/cpdf_meshstream.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 364 | "core/fpdfapi/fpdf_page/cpdf_page.cpp", |
dsinclair | d647a6b | 2016-04-26 13:13:20 -0700 | [diff] [blame] | 365 | "core/fpdfapi/fpdf_page/cpdf_pagemodule.cpp", |
| 366 | "core/fpdfapi/fpdf_page/cpdf_pagemodule.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 367 | "core/fpdfapi/fpdf_page/cpdf_pageobject.cpp", |
Dan Sinclair | 455a419 | 2016-03-16 09:48:56 -0400 | [diff] [blame] | 368 | "core/fpdfapi/fpdf_page/cpdf_pageobjectholder.cpp", |
| 369 | "core/fpdfapi/fpdf_page/cpdf_pageobjectlist.cpp", |
| 370 | "core/fpdfapi/fpdf_page/cpdf_pageobjectlist.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 371 | "core/fpdfapi/fpdf_page/cpdf_pathobject.cpp", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 372 | "core/fpdfapi/fpdf_page/cpdf_pattern.cpp", |
| 373 | "core/fpdfapi/fpdf_page/cpdf_pattern.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 374 | "core/fpdfapi/fpdf_page/cpdf_shadingobject.cpp", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 375 | "core/fpdfapi/fpdf_page/cpdf_shadingpattern.cpp", |
| 376 | "core/fpdfapi/fpdf_page/cpdf_shadingpattern.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 377 | "core/fpdfapi/fpdf_page/cpdf_textobject.cpp", |
| 378 | "core/fpdfapi/fpdf_page/cpdf_textstate.cpp", |
| 379 | "core/fpdfapi/fpdf_page/cpdf_textstate.h", |
| 380 | "core/fpdfapi/fpdf_page/cpdf_textstatedata.cpp", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 381 | "core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp", |
| 382 | "core/fpdfapi/fpdf_page/cpdf_tilingpattern.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 383 | "core/fpdfapi/fpdf_page/fpdf_page_colors.cpp", |
| 384 | "core/fpdfapi/fpdf_page/fpdf_page_doc.cpp", |
| 385 | "core/fpdfapi/fpdf_page/fpdf_page_func.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 386 | "core/fpdfapi/fpdf_page/fpdf_page_parser.cpp", |
| 387 | "core/fpdfapi/fpdf_page/fpdf_page_parser_old.cpp", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 388 | "core/fpdfapi/fpdf_page/include/cpdf_clippath.h", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 389 | "core/fpdfapi/fpdf_page/include/cpdf_color.h", |
| 390 | "core/fpdfapi/fpdf_page/include/cpdf_colorspace.h", |
Dan Sinclair | 455a419 | 2016-03-16 09:48:56 -0400 | [diff] [blame] | 391 | "core/fpdfapi/fpdf_page/include/cpdf_form.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 392 | "core/fpdfapi/fpdf_page/include/cpdf_formobject.h", |
| 393 | "core/fpdfapi/fpdf_page/include/cpdf_generalstate.h", |
| 394 | "core/fpdfapi/fpdf_page/include/cpdf_generalstatedata.h", |
dan sinclair | 61b2fc7 | 2016-03-23 19:21:44 -0400 | [diff] [blame] | 395 | "core/fpdfapi/fpdf_page/include/cpdf_image.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 396 | "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h", |
Dan Sinclair | 455a419 | 2016-03-16 09:48:56 -0400 | [diff] [blame] | 397 | "core/fpdfapi/fpdf_page/include/cpdf_page.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 398 | "core/fpdfapi/fpdf_page/include/cpdf_pageobject.h", |
Dan Sinclair | 455a419 | 2016-03-16 09:48:56 -0400 | [diff] [blame] | 399 | "core/fpdfapi/fpdf_page/include/cpdf_pageobjectholder.h", |
Dan Sinclair | 584b1e6 | 2016-03-21 09:15:45 -0400 | [diff] [blame] | 400 | "core/fpdfapi/fpdf_page/include/cpdf_path.h", |
| 401 | "core/fpdfapi/fpdf_page/include/cpdf_pathobject.h", |
| 402 | "core/fpdfapi/fpdf_page/include/cpdf_shadingobject.h", |
| 403 | "core/fpdfapi/fpdf_page/include/cpdf_textobject.h", |
| 404 | "core/fpdfapi/fpdf_page/include/cpdf_textstatedata.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 405 | "core/fpdfapi/fpdf_page/pageint.h", |
| 406 | "core/fpdfapi/fpdf_parser/cfdf_document.cpp", |
| 407 | "core/fpdfapi/fpdf_parser/cpdf_array.cpp", |
| 408 | "core/fpdfapi/fpdf_parser/cpdf_boolean.cpp", |
Dan Sinclair | aa403d3 | 2016-03-15 14:57:22 -0400 | [diff] [blame] | 409 | "core/fpdfapi/fpdf_parser/cpdf_boolean.h", |
dsinclair | 2fa0e13 | 2016-04-19 10:32:45 -0700 | [diff] [blame] | 410 | "core/fpdfapi/fpdf_parser/cpdf_crypto_handler.cpp", |
| 411 | "core/fpdfapi/fpdf_parser/cpdf_crypto_handler.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 412 | "core/fpdfapi/fpdf_parser/cpdf_data_avail.cpp", |
| 413 | "core/fpdfapi/fpdf_parser/cpdf_data_avail.h", |
| 414 | "core/fpdfapi/fpdf_parser/cpdf_dictionary.cpp", |
| 415 | "core/fpdfapi/fpdf_parser/cpdf_document.cpp", |
| 416 | "core/fpdfapi/fpdf_parser/cpdf_hint_tables.cpp", |
| 417 | "core/fpdfapi/fpdf_parser/cpdf_hint_tables.h", |
| 418 | "core/fpdfapi/fpdf_parser/cpdf_indirect_object_holder.cpp", |
| 419 | "core/fpdfapi/fpdf_parser/cpdf_name.cpp", |
| 420 | "core/fpdfapi/fpdf_parser/cpdf_null.cpp", |
Dan Sinclair | aa403d3 | 2016-03-15 14:57:22 -0400 | [diff] [blame] | 421 | "core/fpdfapi/fpdf_parser/cpdf_null.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 422 | "core/fpdfapi/fpdf_parser/cpdf_number.cpp", |
| 423 | "core/fpdfapi/fpdf_parser/cpdf_object.cpp", |
| 424 | "core/fpdfapi/fpdf_parser/cpdf_parser.cpp", |
| 425 | "core/fpdfapi/fpdf_parser/cpdf_reference.cpp", |
dsinclair | 2fa0e13 | 2016-04-19 10:32:45 -0700 | [diff] [blame] | 426 | "core/fpdfapi/fpdf_parser/cpdf_security_handler.cpp", |
| 427 | "core/fpdfapi/fpdf_parser/cpdf_security_handler.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 428 | "core/fpdfapi/fpdf_parser/cpdf_simple_parser.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 429 | "core/fpdfapi/fpdf_parser/cpdf_stream.cpp", |
Tom Sepez | 92bbb6f | 2016-03-15 09:33:58 -0700 | [diff] [blame] | 430 | "core/fpdfapi/fpdf_parser/cpdf_stream_acc.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 431 | "core/fpdfapi/fpdf_parser/cpdf_string.cpp", |
| 432 | "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.cpp", |
| 433 | "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h", |
| 434 | "core/fpdfapi/fpdf_parser/fpdf_parser_decode.cpp", |
| 435 | "core/fpdfapi/fpdf_parser/fpdf_parser_utility.cpp", |
| 436 | "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h", |
Dan Sinclair | aa403d3 | 2016-03-15 14:57:22 -0400 | [diff] [blame] | 437 | "core/fpdfapi/fpdf_parser/include/cfdf_document.h", |
| 438 | "core/fpdfapi/fpdf_parser/include/cpdf_array.h", |
| 439 | "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h", |
| 440 | "core/fpdfapi/fpdf_parser/include/cpdf_document.h", |
| 441 | "core/fpdfapi/fpdf_parser/include/cpdf_indirect_object_holder.h", |
| 442 | "core/fpdfapi/fpdf_parser/include/cpdf_name.h", |
| 443 | "core/fpdfapi/fpdf_parser/include/cpdf_number.h", |
| 444 | "core/fpdfapi/fpdf_parser/include/cpdf_object.h", |
| 445 | "core/fpdfapi/fpdf_parser/include/cpdf_parser.h", |
| 446 | "core/fpdfapi/fpdf_parser/include/cpdf_reference.h", |
| 447 | "core/fpdfapi/fpdf_parser/include/cpdf_simple_parser.h", |
| 448 | "core/fpdfapi/fpdf_parser/include/cpdf_stream.h", |
| 449 | "core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h", |
| 450 | "core/fpdfapi/fpdf_parser/include/cpdf_string.h", |
| 451 | "core/fpdfapi/fpdf_parser/include/fpdf_parser_decode.h", |
| 452 | "core/fpdfapi/fpdf_parser/include/ipdf_data_avail.h", |
Dan Sinclair | aa403d3 | 2016-03-15 14:57:22 -0400 | [diff] [blame] | 453 | "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 454 | "core/fpdfapi/fpdf_render/fpdf_render.cpp", |
| 455 | "core/fpdfapi/fpdf_render/fpdf_render_cache.cpp", |
| 456 | "core/fpdfapi/fpdf_render/fpdf_render_image.cpp", |
| 457 | "core/fpdfapi/fpdf_render/fpdf_render_loadimage.cpp", |
| 458 | "core/fpdfapi/fpdf_render/fpdf_render_pattern.cpp", |
| 459 | "core/fpdfapi/fpdf_render/fpdf_render_text.cpp", |
Dan Sinclair | aa403d3 | 2016-03-15 14:57:22 -0400 | [diff] [blame] | 460 | "core/fpdfapi/fpdf_render/include/cpdf_progressiverenderer.h", |
| 461 | "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h", |
| 462 | "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h", |
| 463 | "core/fpdfapi/fpdf_render/include/cpdf_textrenderer.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 464 | "core/fpdfapi/fpdf_render/render_int.h", |
Dan Sinclair | aa403d3 | 2016-03-15 14:57:22 -0400 | [diff] [blame] | 465 | "core/fpdfapi/include/cpdf_modulemgr.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 466 | ] |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 467 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | static_library("fpdftext") { |
| 471 | sources = [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 472 | "core/fpdftext/fpdf_text_int.cpp", |
dsinclair | a28ae38 | 2016-04-19 10:39:24 -0700 | [diff] [blame] | 473 | "core/fpdftext/include/cpdf_linkextract.h", |
| 474 | "core/fpdftext/include/cpdf_textpage.h", |
| 475 | "core/fpdftext/include/cpdf_textpagefind.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 476 | "core/fpdftext/text_int.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 477 | "core/fpdftext/unicodenormalizationdata.cpp", |
| 478 | "core/fpdftext/unicodenormalizationdata.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 479 | ] |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 480 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | static_library("fxcodec") { |
Tom Sepez | 8be5575 | 2015-06-17 11:05:02 -0700 | [diff] [blame] | 484 | deps = [ |
| 485 | "third_party:fx_lcms2", |
Tom Sepez | 6fd997b | 2015-06-18 17:51:37 -0700 | [diff] [blame] | 486 | "third_party:fx_libopenjpeg", |
Tom Sepez | 6f93de5 | 2015-06-19 12:57:10 -0700 | [diff] [blame] | 487 | "third_party:fx_zlib", |
Lei Zhang | 8241df7 | 2015-11-06 14:38:48 -0800 | [diff] [blame] | 488 | |
| 489 | # This is a generic JPEG library dependency. |
| 490 | "//third_party:jpeg", |
Tom Sepez | 8be5575 | 2015-06-17 11:05:02 -0700 | [diff] [blame] | 491 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 492 | sources = [ |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 493 | "core/fxcodec/codec/ccodec_basicmodule.h", |
| 494 | "core/fxcodec/codec/ccodec_faxmodule.h", |
| 495 | "core/fxcodec/codec/ccodec_flatemodule.h", |
| 496 | "core/fxcodec/codec/ccodec_iccmodule.h", |
| 497 | "core/fxcodec/codec/ccodec_jbig2module.h", |
| 498 | "core/fxcodec/codec/ccodec_jpegmodule.h", |
| 499 | "core/fxcodec/codec/ccodec_jpxmodule.h", |
| 500 | "core/fxcodec/codec/ccodec_scanlinedecoder.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 501 | "core/fxcodec/codec/codec_int.h", |
| 502 | "core/fxcodec/codec/fx_codec.cpp", |
| 503 | "core/fxcodec/codec/fx_codec_fax.cpp", |
| 504 | "core/fxcodec/codec/fx_codec_flate.cpp", |
| 505 | "core/fxcodec/codec/fx_codec_icc.cpp", |
| 506 | "core/fxcodec/codec/fx_codec_jbig.cpp", |
| 507 | "core/fxcodec/codec/fx_codec_jpeg.cpp", |
| 508 | "core/fxcodec/codec/fx_codec_jpx_opj.cpp", |
dsinclair | 86e5474 | 2016-04-06 12:30:31 -0700 | [diff] [blame] | 509 | "core/fxcodec/include/fx_codec.h", |
| 510 | "core/fxcodec/include/fx_codec_def.h", |
| 511 | "core/fxcodec/include/fx_codec_flate.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 512 | "core/fxcodec/jbig2/JBig2_ArithDecoder.cpp", |
| 513 | "core/fxcodec/jbig2/JBig2_ArithDecoder.h", |
| 514 | "core/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
| 515 | "core/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| 516 | "core/fxcodec/jbig2/JBig2_BitStream.cpp", |
| 517 | "core/fxcodec/jbig2/JBig2_BitStream.h", |
| 518 | "core/fxcodec/jbig2/JBig2_Context.cpp", |
| 519 | "core/fxcodec/jbig2/JBig2_Context.h", |
| 520 | "core/fxcodec/jbig2/JBig2_Define.h", |
| 521 | "core/fxcodec/jbig2/JBig2_GrdProc.cpp", |
| 522 | "core/fxcodec/jbig2/JBig2_GrdProc.h", |
| 523 | "core/fxcodec/jbig2/JBig2_GrrdProc.cpp", |
| 524 | "core/fxcodec/jbig2/JBig2_GrrdProc.h", |
| 525 | "core/fxcodec/jbig2/JBig2_GsidProc.cpp", |
| 526 | "core/fxcodec/jbig2/JBig2_GsidProc.h", |
| 527 | "core/fxcodec/jbig2/JBig2_HtrdProc.cpp", |
| 528 | "core/fxcodec/jbig2/JBig2_HtrdProc.h", |
| 529 | "core/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp", |
| 530 | "core/fxcodec/jbig2/JBig2_HuffmanDecoder.h", |
| 531 | "core/fxcodec/jbig2/JBig2_HuffmanTable.cpp", |
| 532 | "core/fxcodec/jbig2/JBig2_HuffmanTable.h", |
Tom Sepez | 4161c5c | 2016-03-21 12:26:54 -0700 | [diff] [blame] | 533 | "core/fxcodec/jbig2/JBig2_HuffmanTable_Standard.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 534 | "core/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h", |
| 535 | "core/fxcodec/jbig2/JBig2_Image.cpp", |
| 536 | "core/fxcodec/jbig2/JBig2_Image.h", |
| 537 | "core/fxcodec/jbig2/JBig2_List.h", |
| 538 | "core/fxcodec/jbig2/JBig2_Page.h", |
| 539 | "core/fxcodec/jbig2/JBig2_PatternDict.cpp", |
| 540 | "core/fxcodec/jbig2/JBig2_PatternDict.h", |
| 541 | "core/fxcodec/jbig2/JBig2_PddProc.cpp", |
| 542 | "core/fxcodec/jbig2/JBig2_PddProc.h", |
| 543 | "core/fxcodec/jbig2/JBig2_SddProc.cpp", |
| 544 | "core/fxcodec/jbig2/JBig2_SddProc.h", |
| 545 | "core/fxcodec/jbig2/JBig2_Segment.cpp", |
| 546 | "core/fxcodec/jbig2/JBig2_Segment.h", |
| 547 | "core/fxcodec/jbig2/JBig2_SymbolDict.cpp", |
| 548 | "core/fxcodec/jbig2/JBig2_SymbolDict.h", |
| 549 | "core/fxcodec/jbig2/JBig2_TrdProc.cpp", |
| 550 | "core/fxcodec/jbig2/JBig2_TrdProc.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 551 | ] |
Lei Zhang | 8241df7 | 2015-11-06 14:38:48 -0800 | [diff] [blame] | 552 | include_dirs = [] |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 553 | if (pdf_enable_xfa) { |
| 554 | sources += [ |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 555 | "core/fxcodec/codec/ccodec_bmpmodule.h", |
| 556 | "core/fxcodec/codec/ccodec_gifmodule.h", |
| 557 | "core/fxcodec/codec/ccodec_pngmodule.h", |
| 558 | "core/fxcodec/codec/ccodec_tiffmodule.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 559 | "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", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 563 | "core/fxcodec/codec/fx_codec_tiff.cpp", |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 564 | "core/fxcodec/codec/include/ccodec_progressivedecoder.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 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 Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 569 | ] |
| 570 | deps += [ |
| 571 | "third_party:fx_lpng", |
| 572 | "third_party:fx_tiff", |
| 573 | ] |
| 574 | } |
John Abd-El-Malek | def5c7d | 2014-06-09 16:07:18 -0700 | [diff] [blame] | 575 | if (is_posix) { |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 576 | # core/fxcodec/fx_libopenjpeg/src/fx_mct.c does an pointer-to-int |
John Abd-El-Malek | def5c7d | 2014-06-09 16:07:18 -0700 | [diff] [blame] | 577 | # conversion to check that an address is 16-bit aligned (benign). |
| 578 | cflags_c = [ "-Wno-pointer-to-int-cast" ] |
| 579 | } |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 580 | configs += [ ":pdfium_config" ] |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | config("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-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | static_library("fxcrt") { |
| 593 | sources = [ |
tsepez | 6fb598b | 2016-04-05 12:40:47 -0700 | [diff] [blame] | 594 | "core/fxcrt/cfx_string_data_template.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 595 | "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 Sinclair | a8a28e0 | 2016-03-23 15:41:39 -0400 | [diff] [blame] | 608 | "core/fxcrt/fx_bidi.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 609 | "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", |
tsepez | 602aebc | 2016-03-29 15:04:21 -0700 | [diff] [blame] | 621 | "core/fxcrt/include/cfx_retain_ptr.h", |
Dan Sinclair | a8a28e0 | 2016-03-23 15:41:39 -0400 | [diff] [blame] | 622 | "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 Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 632 | "core/fxcrt/plex.h", |
| 633 | "core/fxcrt/xml_int.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 634 | ] |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 635 | if (pdf_enable_xfa) { |
| 636 | sources += [ |
pcc | e3bbfa2 | 2016-04-19 12:40:07 -0700 | [diff] [blame] | 637 | "core/fxcrt/fx_arabic.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 638 | "core/fxcrt/fx_arabic.h", |
| 639 | "core/fxcrt/fx_basic_maps.cpp", |
Dan Sinclair | a8a28e0 | 2016-03-23 15:41:39 -0400 | [diff] [blame] | 640 | "core/fxcrt/include/fx_arb.h", |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 641 | ] |
| 642 | } |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 643 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | static_library("fxge") { |
Tom Sepez | b7d358b | 2015-06-17 10:01:00 -0700 | [diff] [blame] | 647 | deps = [ |
| 648 | "third_party:fx_agg", |
| 649 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 650 | sources = [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 651 | "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", |
dsinclair | 48baa5f | 2016-04-06 10:00:40 -0700 | [diff] [blame] | 699 | "core/fxge/include/fx_dib.h", |
| 700 | "core/fxge/include/fx_font.h", |
| 701 | "core/fxge/include/fx_freetype.h", |
| 702 | "core/fxge/include/fx_ge.h", |
| 703 | "core/fxge/include/fx_ge_apple.h", |
| 704 | "core/fxge/include/fx_ge_win32.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 705 | ] |
| 706 | |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 707 | configs += [ |
Lei Zhang | 7b16ba5 | 2015-10-26 17:06:53 -0700 | [diff] [blame] | 708 | ":fxge_warnings", |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 709 | ":pdfium_config", |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 710 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 711 | |
| 712 | if (pdf_use_skia) { |
Cary Clark | 59b3a48 | 2016-03-17 12:00:39 -0400 | [diff] [blame] | 713 | sources += [ "core/fxge/skia/fx_skia_device.cpp" ] |
Cary Clark | 399be5b | 2016-03-14 16:51:29 -0400 | [diff] [blame] | 714 | deps += [ "//skia" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 715 | } |
| 716 | |
| 717 | if (is_win) { |
| 718 | sources += [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 719 | "core/fxge/win32/dwrite_int.h", |
| 720 | "core/fxge/win32/fx_win32_device.cpp", |
| 721 | "core/fxge/win32/fx_win32_dib.cpp", |
| 722 | "core/fxge/win32/fx_win32_dwrite.cpp", |
| 723 | "core/fxge/win32/fx_win32_gdipext.cpp", |
| 724 | "core/fxge/win32/fx_win32_print.cpp", |
| 725 | "core/fxge/win32/win32_int.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 726 | ] |
Tom Sepez | 465ed87 | 2015-12-09 14:55:41 -0800 | [diff] [blame] | 727 | configs -= [ "//build/config/win:lean_and_mean" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 728 | } |
| 729 | } |
| 730 | |
| 731 | static_library("fxedit") { |
| 732 | sources = [ |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 733 | "fpdfsdk/fxedit/fxet_ap.cpp", |
| 734 | "fpdfsdk/fxedit/fxet_edit.cpp", |
| 735 | "fpdfsdk/fxedit/fxet_list.cpp", |
| 736 | "fpdfsdk/fxedit/fxet_module.cpp", |
| 737 | "fpdfsdk/fxedit/fxet_pageobjs.cpp", |
dsinclair | 89bdd08 | 2016-04-06 10:47:54 -0700 | [diff] [blame] | 738 | "fpdfsdk/fxedit/include/fx_edit.h", |
| 739 | "fpdfsdk/fxedit/include/fxet_edit.h", |
| 740 | "fpdfsdk/fxedit/include/fxet_list.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 741 | ] |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 742 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | static_library("pdfwindow") { |
| 746 | sources = [ |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 747 | "fpdfsdk/pdfwindow/PWL_Button.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 748 | "fpdfsdk/pdfwindow/PWL_Button.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 749 | "fpdfsdk/pdfwindow/PWL_Caret.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 750 | "fpdfsdk/pdfwindow/PWL_Caret.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 751 | "fpdfsdk/pdfwindow/PWL_ComboBox.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 752 | "fpdfsdk/pdfwindow/PWL_ComboBox.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 753 | "fpdfsdk/pdfwindow/PWL_Edit.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 754 | "fpdfsdk/pdfwindow/PWL_Edit.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 755 | "fpdfsdk/pdfwindow/PWL_EditCtrl.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 756 | "fpdfsdk/pdfwindow/PWL_EditCtrl.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 757 | "fpdfsdk/pdfwindow/PWL_FontMap.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 758 | "fpdfsdk/pdfwindow/PWL_FontMap.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 759 | "fpdfsdk/pdfwindow/PWL_Icon.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 760 | "fpdfsdk/pdfwindow/PWL_Icon.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 761 | "fpdfsdk/pdfwindow/PWL_IconList.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 762 | "fpdfsdk/pdfwindow/PWL_IconList.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 763 | "fpdfsdk/pdfwindow/PWL_Label.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 764 | "fpdfsdk/pdfwindow/PWL_Label.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 765 | "fpdfsdk/pdfwindow/PWL_ListBox.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 766 | "fpdfsdk/pdfwindow/PWL_ListBox.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 767 | "fpdfsdk/pdfwindow/PWL_ListCtrl.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 768 | "fpdfsdk/pdfwindow/PWL_ListCtrl.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 769 | "fpdfsdk/pdfwindow/PWL_ScrollBar.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 770 | "fpdfsdk/pdfwindow/PWL_ScrollBar.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 771 | "fpdfsdk/pdfwindow/PWL_Signature.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 772 | "fpdfsdk/pdfwindow/PWL_Signature.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 773 | "fpdfsdk/pdfwindow/PWL_SpecialButton.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 774 | "fpdfsdk/pdfwindow/PWL_SpecialButton.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 775 | "fpdfsdk/pdfwindow/PWL_Utils.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 776 | "fpdfsdk/pdfwindow/PWL_Utils.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 777 | "fpdfsdk/pdfwindow/PWL_Wnd.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 778 | "fpdfsdk/pdfwindow/PWL_Wnd.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 779 | ] |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 780 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | static_library("javascript") { |
| 784 | sources = [ |
dsinclair | 64376be | 2016-03-31 20:03:24 -0700 | [diff] [blame] | 785 | "fpdfsdk/javascript/ijs_context.h", |
| 786 | "fpdfsdk/javascript/ijs_runtime.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 787 | ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 788 | if (pdf_enable_v8) { |
| 789 | sources += [ |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 790 | "fpdfsdk/javascript/Consts.cpp", |
| 791 | "fpdfsdk/javascript/Consts.h", |
| 792 | "fpdfsdk/javascript/Document.cpp", |
| 793 | "fpdfsdk/javascript/Document.h", |
| 794 | "fpdfsdk/javascript/Field.cpp", |
| 795 | "fpdfsdk/javascript/Field.h", |
| 796 | "fpdfsdk/javascript/Icon.cpp", |
| 797 | "fpdfsdk/javascript/Icon.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 798 | "fpdfsdk/javascript/JS_Define.h", |
| 799 | "fpdfsdk/javascript/JS_EventHandler.cpp", |
| 800 | "fpdfsdk/javascript/JS_EventHandler.h", |
| 801 | "fpdfsdk/javascript/JS_GlobalData.cpp", |
| 802 | "fpdfsdk/javascript/JS_GlobalData.h", |
| 803 | "fpdfsdk/javascript/JS_Object.cpp", |
| 804 | "fpdfsdk/javascript/JS_Object.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 805 | "fpdfsdk/javascript/JS_Value.cpp", |
| 806 | "fpdfsdk/javascript/JS_Value.h", |
| 807 | "fpdfsdk/javascript/PublicMethods.cpp", |
| 808 | "fpdfsdk/javascript/PublicMethods.h", |
| 809 | "fpdfsdk/javascript/app.cpp", |
| 810 | "fpdfsdk/javascript/app.h", |
dsinclair | 64376be | 2016-03-31 20:03:24 -0700 | [diff] [blame] | 811 | "fpdfsdk/javascript/cjs_context.cpp", |
| 812 | "fpdfsdk/javascript/cjs_context.h", |
| 813 | "fpdfsdk/javascript/cjs_runtime.cpp", |
| 814 | "fpdfsdk/javascript/cjs_runtime.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 815 | "fpdfsdk/javascript/color.cpp", |
| 816 | "fpdfsdk/javascript/color.h", |
| 817 | "fpdfsdk/javascript/console.cpp", |
| 818 | "fpdfsdk/javascript/console.h", |
| 819 | "fpdfsdk/javascript/event.cpp", |
| 820 | "fpdfsdk/javascript/event.h", |
| 821 | "fpdfsdk/javascript/global.cpp", |
| 822 | "fpdfsdk/javascript/global.h", |
| 823 | "fpdfsdk/javascript/report.cpp", |
| 824 | "fpdfsdk/javascript/report.h", |
| 825 | "fpdfsdk/javascript/resource.cpp", |
| 826 | "fpdfsdk/javascript/resource.h", |
| 827 | "fpdfsdk/javascript/util.cpp", |
| 828 | "fpdfsdk/javascript/util.h", |
| 829 | "fpdfsdk/jsapi/fxjs_v8.cpp", |
dsinclair | 89bdd08 | 2016-04-06 10:47:54 -0700 | [diff] [blame] | 830 | "fpdfsdk/jsapi/include/fxjs_v8.h", |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 831 | ] |
| 832 | include_dirs = [ |
| 833 | "//v8", |
| 834 | "//v8/include", |
| 835 | ] |
| 836 | public_deps = [ |
| 837 | "//v8", |
| 838 | ] |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 839 | configs += [ "//v8:external_startup_data" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 840 | } else { |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 841 | sources += [ "fpdfsdk/javascript/JS_Runtime_Stub.cpp" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 842 | } |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 843 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 844 | } |
| 845 | |
| 846 | static_library("formfiller") { |
| 847 | sources = [ |
Dan Sinclair | edbb319 | 2016-03-21 09:08:24 -0400 | [diff] [blame] | 848 | "fpdfsdk/formfiller/cba_fontmap.cpp", |
| 849 | "fpdfsdk/formfiller/cba_fontmap.h", |
| 850 | "fpdfsdk/formfiller/cffl_checkbox.cpp", |
| 851 | "fpdfsdk/formfiller/cffl_checkbox.h", |
| 852 | "fpdfsdk/formfiller/cffl_combobox.cpp", |
| 853 | "fpdfsdk/formfiller/cffl_combobox.h", |
| 854 | "fpdfsdk/formfiller/cffl_formfiller.cpp", |
| 855 | "fpdfsdk/formfiller/cffl_formfiller.h", |
| 856 | "fpdfsdk/formfiller/cffl_iformfiller.cpp", |
| 857 | "fpdfsdk/formfiller/cffl_iformfiller.h", |
| 858 | "fpdfsdk/formfiller/cffl_listbox.cpp", |
| 859 | "fpdfsdk/formfiller/cffl_listbox.h", |
| 860 | "fpdfsdk/formfiller/cffl_pushbutton.cpp", |
| 861 | "fpdfsdk/formfiller/cffl_pushbutton.h", |
| 862 | "fpdfsdk/formfiller/cffl_radiobutton.cpp", |
| 863 | "fpdfsdk/formfiller/cffl_radiobutton.h", |
| 864 | "fpdfsdk/formfiller/cffl_textfield.cpp", |
| 865 | "fpdfsdk/formfiller/cffl_textfield.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 866 | ] |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 867 | configs += [ ":pdfium_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 868 | } |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 869 | |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 870 | if (pdf_enable_xfa) { |
| 871 | static_library("fpdfxfa") { |
| 872 | sources = [ |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 873 | "fpdfsdk/fpdfxfa/fpdfxfa_app.cpp", |
| 874 | "fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp", |
| 875 | "fpdfsdk/fpdfxfa/fpdfxfa_page.cpp", |
| 876 | "fpdfsdk/fpdfxfa/fpdfxfa_util.cpp", |
dsinclair | 89bdd08 | 2016-04-06 10:47:54 -0700 | [diff] [blame] | 877 | "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h", |
| 878 | "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h", |
| 879 | "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h", |
| 880 | "fpdfsdk/fpdfxfa/include/fpdfxfa_util.h", |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 881 | ] |
| 882 | deps = [ |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 883 | ":xfa", |
| 884 | ] |
| 885 | configs -= [ "//build/config/compiler:chromium_code" ] |
Tom Sepez | b545159 | 2016-02-22 16:48:02 -0800 | [diff] [blame] | 886 | configs += [ |
| 887 | ":pdfium_config", |
| 888 | "//build/config/compiler:no_chromium_code", |
| 889 | ] |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | static_library("xfa") { |
| 893 | sources = [ |
dsinclair | acd0d59 | 2016-04-21 11:06:27 -0700 | [diff] [blame] | 894 | "xfa/fde/cfde_path.cpp", |
| 895 | "xfa/fde/cfde_path.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 896 | "xfa/fde/css/fde_css.h", |
| 897 | "xfa/fde/css/fde_csscache.cpp", |
| 898 | "xfa/fde/css/fde_csscache.h", |
| 899 | "xfa/fde/css/fde_cssdatatable.cpp", |
| 900 | "xfa/fde/css/fde_cssdatatable.h", |
| 901 | "xfa/fde/css/fde_cssdeclaration.cpp", |
| 902 | "xfa/fde/css/fde_cssdeclaration.h", |
| 903 | "xfa/fde/css/fde_cssstyleselector.cpp", |
| 904 | "xfa/fde/css/fde_cssstyleselector.h", |
| 905 | "xfa/fde/css/fde_cssstylesheet.cpp", |
| 906 | "xfa/fde/css/fde_cssstylesheet.h", |
| 907 | "xfa/fde/css/fde_csssyntax.cpp", |
| 908 | "xfa/fde/css/fde_csssyntax.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 909 | "xfa/fde/fde_gedevice.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 910 | "xfa/fde/fde_geobject.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 911 | "xfa/fde/fde_iterator.cpp", |
| 912 | "xfa/fde/fde_iterator.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 913 | "xfa/fde/fde_object.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 914 | "xfa/fde/fde_render.cpp", |
| 915 | "xfa/fde/fde_render.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 916 | "xfa/fde/tto/fde_textout.cpp", |
| 917 | "xfa/fde/tto/fde_textout.h", |
| 918 | "xfa/fde/xml/fde_xml.h", |
| 919 | "xfa/fde/xml/fde_xml_imp.cpp", |
| 920 | "xfa/fde/xml/fde_xml_imp.h", |
| 921 | "xfa/fee/fde_txtedtbuf.cpp", |
| 922 | "xfa/fee/fde_txtedtbuf.h", |
| 923 | "xfa/fee/fde_txtedtengine.cpp", |
| 924 | "xfa/fee/fde_txtedtengine.h", |
| 925 | "xfa/fee/fde_txtedtpage.cpp", |
| 926 | "xfa/fee/fde_txtedtpage.h", |
| 927 | "xfa/fee/fde_txtedtparag.cpp", |
| 928 | "xfa/fee/fde_txtedtparag.h", |
| 929 | "xfa/fee/fx_wordbreak/fx_wordbreak.h", |
| 930 | "xfa/fee/fx_wordbreak/fx_wordbreak_impl.cpp", |
| 931 | "xfa/fee/fx_wordbreak/fx_wordbreak_impl.h", |
| 932 | "xfa/fee/fx_wordbreak/fx_wordbreakdata.cpp", |
| 933 | "xfa/fee/ifde_txtedtbuf.h", |
| 934 | "xfa/fee/ifde_txtedtengine.h", |
| 935 | "xfa/fee/ifde_txtedtpage.h", |
| 936 | "xfa/fgas/crt/fgas_algorithm.cpp", |
| 937 | "xfa/fgas/crt/fgas_algorithm.h", |
| 938 | "xfa/fgas/crt/fgas_codepage.cpp", |
| 939 | "xfa/fgas/crt/fgas_codepage.h", |
| 940 | "xfa/fgas/crt/fgas_encode.cpp", |
| 941 | "xfa/fgas/crt/fgas_language.h", |
| 942 | "xfa/fgas/crt/fgas_memory.cpp", |
| 943 | "xfa/fgas/crt/fgas_memory.h", |
| 944 | "xfa/fgas/crt/fgas_stream.cpp", |
| 945 | "xfa/fgas/crt/fgas_stream.h", |
| 946 | "xfa/fgas/crt/fgas_system.cpp", |
| 947 | "xfa/fgas/crt/fgas_system.h", |
| 948 | "xfa/fgas/crt/fgas_utils.cpp", |
| 949 | "xfa/fgas/crt/fgas_utils.h", |
| 950 | "xfa/fgas/font/fgas_font.h", |
| 951 | "xfa/fgas/font/fgas_fontutils.cpp", |
| 952 | "xfa/fgas/font/fgas_fontutils.h", |
| 953 | "xfa/fgas/font/fgas_gefont.cpp", |
| 954 | "xfa/fgas/font/fgas_gefont.h", |
| 955 | "xfa/fgas/font/fgas_stdfontmgr.cpp", |
| 956 | "xfa/fgas/font/fgas_stdfontmgr.h", |
| 957 | "xfa/fgas/layout/fgas_linebreak.cpp", |
| 958 | "xfa/fgas/layout/fgas_linebreak.h", |
| 959 | "xfa/fgas/layout/fgas_rtfbreak.cpp", |
| 960 | "xfa/fgas/layout/fgas_rtfbreak.h", |
| 961 | "xfa/fgas/layout/fgas_textbreak.cpp", |
| 962 | "xfa/fgas/layout/fgas_textbreak.h", |
| 963 | "xfa/fgas/layout/fgas_unicode.cpp", |
| 964 | "xfa/fgas/layout/fgas_unicode.h", |
| 965 | "xfa/fgas/localization/fgas_datetime.cpp", |
| 966 | "xfa/fgas/localization/fgas_datetime.h", |
| 967 | "xfa/fgas/localization/fgas_locale.cpp", |
| 968 | "xfa/fgas/localization/fgas_locale.h", |
| 969 | "xfa/fgas/localization/fgas_localeimp.h", |
| 970 | "xfa/fgas/localization/fgas_localemgr.cpp", |
| 971 | "xfa/fgas/localization/fgas_localemgr.h", |
| 972 | "xfa/fgas/xml/fgas_sax.h", |
| 973 | "xfa/fgas/xml/fgas_sax_imp.cpp", |
| 974 | "xfa/fgas/xml/fgas_sax_imp.h", |
| 975 | "xfa/fwl/basewidget/fwl_barcodeimp.cpp", |
| 976 | "xfa/fwl/basewidget/fwl_barcodeimp.h", |
| 977 | "xfa/fwl/basewidget/fwl_caretimp.cpp", |
| 978 | "xfa/fwl/basewidget/fwl_caretimp.h", |
| 979 | "xfa/fwl/basewidget/fwl_checkboximp.cpp", |
| 980 | "xfa/fwl/basewidget/fwl_checkboximp.h", |
| 981 | "xfa/fwl/basewidget/fwl_comboboximp.cpp", |
| 982 | "xfa/fwl/basewidget/fwl_comboboximp.h", |
| 983 | "xfa/fwl/basewidget/fwl_datetimepickerimp.cpp", |
| 984 | "xfa/fwl/basewidget/fwl_datetimepickerimp.h", |
| 985 | "xfa/fwl/basewidget/fwl_editimp.cpp", |
| 986 | "xfa/fwl/basewidget/fwl_editimp.h", |
| 987 | "xfa/fwl/basewidget/fwl_formproxyimp.cpp", |
| 988 | "xfa/fwl/basewidget/fwl_formproxyimp.h", |
| 989 | "xfa/fwl/basewidget/fwl_listboximp.cpp", |
| 990 | "xfa/fwl/basewidget/fwl_listboximp.h", |
| 991 | "xfa/fwl/basewidget/fwl_monthcalendarimp.cpp", |
| 992 | "xfa/fwl/basewidget/fwl_monthcalendarimp.h", |
| 993 | "xfa/fwl/basewidget/fwl_pictureboximp.cpp", |
| 994 | "xfa/fwl/basewidget/fwl_pictureboximp.h", |
| 995 | "xfa/fwl/basewidget/fwl_pushbuttonimp.cpp", |
| 996 | "xfa/fwl/basewidget/fwl_pushbuttonimp.h", |
| 997 | "xfa/fwl/basewidget/fwl_scrollbarimp.cpp", |
| 998 | "xfa/fwl/basewidget/fwl_scrollbarimp.h", |
| 999 | "xfa/fwl/basewidget/fwl_spinbuttonimp.cpp", |
| 1000 | "xfa/fwl/basewidget/fwl_spinbuttonimp.h", |
| 1001 | "xfa/fwl/basewidget/fwl_tooltipctrlimp.cpp", |
| 1002 | "xfa/fwl/basewidget/fwl_tooltipctrlimp.h", |
| 1003 | "xfa/fwl/basewidget/fxmath_barcodeimp.cpp", |
| 1004 | "xfa/fwl/basewidget/fxmath_barcodeimp.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1005 | "xfa/fwl/basewidget/ifwl_barcode.h", |
| 1006 | "xfa/fwl/basewidget/ifwl_caret.h", |
| 1007 | "xfa/fwl/basewidget/ifwl_checkbox.h", |
| 1008 | "xfa/fwl/basewidget/ifwl_combobox.h", |
| 1009 | "xfa/fwl/basewidget/ifwl_datetimepicker.h", |
| 1010 | "xfa/fwl/basewidget/ifwl_edit.h", |
| 1011 | "xfa/fwl/basewidget/ifwl_listbox.h", |
| 1012 | "xfa/fwl/basewidget/ifwl_monthcalendar.h", |
| 1013 | "xfa/fwl/basewidget/ifwl_picturebox.h", |
| 1014 | "xfa/fwl/basewidget/ifwl_pushbutton.h", |
| 1015 | "xfa/fwl/basewidget/ifwl_scrollbar.h", |
| 1016 | "xfa/fwl/basewidget/ifwl_spinbutton.h", |
| 1017 | "xfa/fwl/basewidget/ifwl_tooltip.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1018 | "xfa/fwl/core/cfwl_event.h", |
| 1019 | "xfa/fwl/core/cfwl_message.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1020 | "xfa/fwl/core/cfwl_themebackground.h", |
| 1021 | "xfa/fwl/core/cfwl_themepart.h", |
| 1022 | "xfa/fwl/core/cfwl_themetext.h", |
| 1023 | "xfa/fwl/core/cfwl_widgetimpproperties.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1024 | "xfa/fwl/core/fwl_appimp.cpp", |
| 1025 | "xfa/fwl/core/fwl_appimp.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1026 | "xfa/fwl/core/fwl_error.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1027 | "xfa/fwl/core/fwl_formimp.cpp", |
| 1028 | "xfa/fwl/core/fwl_formimp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1029 | "xfa/fwl/core/fwl_noteimp.cpp", |
| 1030 | "xfa/fwl/core/fwl_noteimp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1031 | "xfa/fwl/core/fwl_sdadapterimp.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1032 | "xfa/fwl/core/fwl_sdadapterimp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1033 | "xfa/fwl/core/fwl_targetimp.cpp", |
| 1034 | "xfa/fwl/core/fwl_targetimp.h", |
| 1035 | "xfa/fwl/core/fwl_threadimp.cpp", |
| 1036 | "xfa/fwl/core/fwl_threadimp.h", |
| 1037 | "xfa/fwl/core/fwl_timerimp.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1038 | "xfa/fwl/core/fwl_widgetdef.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1039 | "xfa/fwl/core/fwl_widgetimp.cpp", |
| 1040 | "xfa/fwl/core/fwl_widgetimp.h", |
| 1041 | "xfa/fwl/core/fwl_widgetmgrimp.cpp", |
| 1042 | "xfa/fwl/core/fwl_widgetmgrimp.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1043 | "xfa/fwl/core/ifwl_adapternative.h", |
| 1044 | "xfa/fwl/core/ifwl_adapterthreadmgr.h", |
| 1045 | "xfa/fwl/core/ifwl_adapterwidgetmgr.h", |
| 1046 | "xfa/fwl/core/ifwl_app.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1047 | "xfa/fwl/core/ifwl_dataprovider.h", |
| 1048 | "xfa/fwl/core/ifwl_form.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1049 | "xfa/fwl/core/ifwl_notedriver.h", |
| 1050 | "xfa/fwl/core/ifwl_noteloop.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1051 | "xfa/fwl/core/ifwl_target.h", |
| 1052 | "xfa/fwl/core/ifwl_themeprovider.h", |
| 1053 | "xfa/fwl/core/ifwl_thread.h", |
| 1054 | "xfa/fwl/core/ifwl_timer.h", |
| 1055 | "xfa/fwl/core/ifwl_tooltiptarget.h", |
| 1056 | "xfa/fwl/core/ifwl_widget.h", |
| 1057 | "xfa/fwl/core/ifwl_widgetdelegate.h", |
| 1058 | "xfa/fwl/core/ifwl_widgetmgr.h", |
| 1059 | "xfa/fwl/core/ifwl_widgetmgrdelegate.h", |
| 1060 | "xfa/fwl/core/include/ifwl_adaptertimermgr.h", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 1061 | "xfa/fwl/lightwidget/cfwl_barcode.cpp", |
| 1062 | "xfa/fwl/lightwidget/cfwl_barcode.h", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 1063 | "xfa/fwl/lightwidget/cfwl_checkbox.cpp", |
| 1064 | "xfa/fwl/lightwidget/cfwl_checkbox.h", |
| 1065 | "xfa/fwl/lightwidget/cfwl_combobox.cpp", |
| 1066 | "xfa/fwl/lightwidget/cfwl_combobox.h", |
| 1067 | "xfa/fwl/lightwidget/cfwl_datetimepicker.cpp", |
| 1068 | "xfa/fwl/lightwidget/cfwl_datetimepicker.h", |
| 1069 | "xfa/fwl/lightwidget/cfwl_edit.cpp", |
| 1070 | "xfa/fwl/lightwidget/cfwl_edit.h", |
| 1071 | "xfa/fwl/lightwidget/cfwl_listbox.cpp", |
| 1072 | "xfa/fwl/lightwidget/cfwl_listbox.h", |
| 1073 | "xfa/fwl/lightwidget/cfwl_picturebox.cpp", |
| 1074 | "xfa/fwl/lightwidget/cfwl_picturebox.h", |
| 1075 | "xfa/fwl/lightwidget/cfwl_pushbutton.cpp", |
| 1076 | "xfa/fwl/lightwidget/cfwl_pushbutton.h", |
| 1077 | "xfa/fwl/lightwidget/cfwl_scrollbar.cpp", |
| 1078 | "xfa/fwl/lightwidget/cfwl_scrollbar.h", |
| 1079 | "xfa/fwl/lightwidget/cfwl_theme.cpp", |
| 1080 | "xfa/fwl/lightwidget/cfwl_theme.h", |
| 1081 | "xfa/fwl/lightwidget/cfwl_tooltip.cpp", |
| 1082 | "xfa/fwl/lightwidget/cfwl_tooltip.h", |
| 1083 | "xfa/fwl/lightwidget/cfwl_widget.cpp", |
| 1084 | "xfa/fwl/lightwidget/cfwl_widget.h", |
| 1085 | "xfa/fwl/lightwidget/cfwl_widgetdelegate.cpp", |
| 1086 | "xfa/fwl/lightwidget/cfwl_widgetdelegate.h", |
avallee | 62514d9 | 2016-03-31 10:23:19 -0700 | [diff] [blame] | 1087 | "xfa/fwl/lightwidget/cfwl_widgetproperties.cpp", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 1088 | "xfa/fwl/lightwidget/cfwl_widgetproperties.h", |
| 1089 | "xfa/fwl/theme/cfwl_barcodetp.cpp", |
| 1090 | "xfa/fwl/theme/cfwl_barcodetp.h", |
| 1091 | "xfa/fwl/theme/cfwl_carettp.cpp", |
| 1092 | "xfa/fwl/theme/cfwl_carettp.h", |
| 1093 | "xfa/fwl/theme/cfwl_checkboxtp.cpp", |
| 1094 | "xfa/fwl/theme/cfwl_checkboxtp.h", |
| 1095 | "xfa/fwl/theme/cfwl_comboboxtp.cpp", |
| 1096 | "xfa/fwl/theme/cfwl_comboboxtp.h", |
| 1097 | "xfa/fwl/theme/cfwl_datetimepickedtp.cpp", |
| 1098 | "xfa/fwl/theme/cfwl_datetimepickertp.h", |
| 1099 | "xfa/fwl/theme/cfwl_edittp.cpp", |
| 1100 | "xfa/fwl/theme/cfwl_edittp.h", |
| 1101 | "xfa/fwl/theme/cfwl_formtp.cpp", |
| 1102 | "xfa/fwl/theme/cfwl_formtp.h", |
| 1103 | "xfa/fwl/theme/cfwl_listboxtp.cpp", |
| 1104 | "xfa/fwl/theme/cfwl_listboxtp.h", |
| 1105 | "xfa/fwl/theme/cfwl_monthcalendartp.cpp", |
| 1106 | "xfa/fwl/theme/cfwl_monthcalendartp.h", |
| 1107 | "xfa/fwl/theme/cfwl_pictureboxtp.cpp", |
| 1108 | "xfa/fwl/theme/cfwl_pictureboxtp.h", |
| 1109 | "xfa/fwl/theme/cfwl_pushbuttontp.cpp", |
| 1110 | "xfa/fwl/theme/cfwl_pushbuttontp.h", |
| 1111 | "xfa/fwl/theme/cfwl_scrollbartp.cpp", |
| 1112 | "xfa/fwl/theme/cfwl_scrollbartp.h", |
| 1113 | "xfa/fwl/theme/cfwl_utils.h", |
| 1114 | "xfa/fwl/theme/cfwl_widgettp.cpp", |
| 1115 | "xfa/fwl/theme/cfwl_widgettp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1116 | "xfa/fxbarcode/BC_Binarizer.cpp", |
| 1117 | "xfa/fxbarcode/BC_Binarizer.h", |
| 1118 | "xfa/fxbarcode/BC_BinaryBitmap.cpp", |
| 1119 | "xfa/fxbarcode/BC_BinaryBitmap.h", |
| 1120 | "xfa/fxbarcode/BC_BufferedImageLuminanceSource.cpp", |
| 1121 | "xfa/fxbarcode/BC_BufferedImageLuminanceSource.h", |
| 1122 | "xfa/fxbarcode/BC_DecoderResult.h", |
| 1123 | "xfa/fxbarcode/BC_Dimension.cpp", |
| 1124 | "xfa/fxbarcode/BC_Dimension.h", |
| 1125 | "xfa/fxbarcode/BC_Library.cpp", |
| 1126 | "xfa/fxbarcode/BC_LuminanceSource.cpp", |
| 1127 | "xfa/fxbarcode/BC_LuminanceSource.h", |
| 1128 | "xfa/fxbarcode/BC_Reader.cpp", |
| 1129 | "xfa/fxbarcode/BC_Reader.h", |
| 1130 | "xfa/fxbarcode/BC_ResultPoint.cpp", |
| 1131 | "xfa/fxbarcode/BC_ResultPoint.h", |
| 1132 | "xfa/fxbarcode/BC_TwoDimWriter.cpp", |
| 1133 | "xfa/fxbarcode/BC_TwoDimWriter.h", |
| 1134 | "xfa/fxbarcode/BC_UtilCodingConvert.cpp", |
| 1135 | "xfa/fxbarcode/BC_UtilCodingConvert.h", |
| 1136 | "xfa/fxbarcode/BC_UtilRSS.cpp", |
| 1137 | "xfa/fxbarcode/BC_UtilRSS.h", |
| 1138 | "xfa/fxbarcode/BC_Utils.cpp", |
| 1139 | "xfa/fxbarcode/BC_Writer.cpp", |
| 1140 | "xfa/fxbarcode/BC_Writer.h", |
Dan Sinclair | a8a28e0 | 2016-03-23 15:41:39 -0400 | [diff] [blame] | 1141 | "xfa/fxbarcode/cbc_codabar.cpp", |
| 1142 | "xfa/fxbarcode/cbc_codabar.h", |
| 1143 | "xfa/fxbarcode/cbc_code128.cpp", |
| 1144 | "xfa/fxbarcode/cbc_code128.h", |
| 1145 | "xfa/fxbarcode/cbc_code39.cpp", |
| 1146 | "xfa/fxbarcode/cbc_code39.h", |
| 1147 | "xfa/fxbarcode/cbc_codebase.cpp", |
| 1148 | "xfa/fxbarcode/cbc_codebase.h", |
| 1149 | "xfa/fxbarcode/cbc_datamatrix.cpp", |
| 1150 | "xfa/fxbarcode/cbc_datamatrix.h", |
| 1151 | "xfa/fxbarcode/cbc_ean13.cpp", |
| 1152 | "xfa/fxbarcode/cbc_ean13.h", |
| 1153 | "xfa/fxbarcode/cbc_ean8.cpp", |
| 1154 | "xfa/fxbarcode/cbc_ean8.h", |
| 1155 | "xfa/fxbarcode/cbc_onecode.cpp", |
| 1156 | "xfa/fxbarcode/cbc_onecode.h", |
| 1157 | "xfa/fxbarcode/cbc_pdf417i.cpp", |
| 1158 | "xfa/fxbarcode/cbc_pdf417i.h", |
| 1159 | "xfa/fxbarcode/cbc_qrcode.cpp", |
| 1160 | "xfa/fxbarcode/cbc_qrcode.h", |
| 1161 | "xfa/fxbarcode/cbc_upca.cpp", |
| 1162 | "xfa/fxbarcode/cbc_upca.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1163 | "xfa/fxbarcode/common/BC_CommonBitArray.cpp", |
| 1164 | "xfa/fxbarcode/common/BC_CommonBitArray.h", |
| 1165 | "xfa/fxbarcode/common/BC_CommonBitMatrix.cpp", |
| 1166 | "xfa/fxbarcode/common/BC_CommonBitMatrix.h", |
| 1167 | "xfa/fxbarcode/common/BC_CommonBitSource.cpp", |
| 1168 | "xfa/fxbarcode/common/BC_CommonBitSource.h", |
| 1169 | "xfa/fxbarcode/common/BC_CommonByteArray.cpp", |
| 1170 | "xfa/fxbarcode/common/BC_CommonByteArray.h", |
| 1171 | "xfa/fxbarcode/common/BC_CommonByteMatrix.cpp", |
| 1172 | "xfa/fxbarcode/common/BC_CommonByteMatrix.h", |
| 1173 | "xfa/fxbarcode/common/BC_CommonCharacterSetECI.cpp", |
| 1174 | "xfa/fxbarcode/common/BC_CommonCharacterSetECI.h", |
| 1175 | "xfa/fxbarcode/common/BC_CommonDecoderResult.cpp", |
| 1176 | "xfa/fxbarcode/common/BC_CommonDecoderResult.h", |
| 1177 | "xfa/fxbarcode/common/BC_CommonECI.cpp", |
| 1178 | "xfa/fxbarcode/common/BC_CommonECI.h", |
| 1179 | "xfa/fxbarcode/common/BC_CommonPerspectiveTransform.cpp", |
| 1180 | "xfa/fxbarcode/common/BC_CommonPerspectiveTransform.h", |
| 1181 | "xfa/fxbarcode/common/BC_GlobalHistogramBinarizer.cpp", |
| 1182 | "xfa/fxbarcode/common/BC_GlobalHistogramBinarizer.h", |
| 1183 | "xfa/fxbarcode/common/BC_WhiteRectangleDetector.cpp", |
| 1184 | "xfa/fxbarcode/common/BC_WhiteRectangleDetector.h", |
| 1185 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.cpp", |
| 1186 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h", |
| 1187 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonDecoder.cpp", |
| 1188 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonDecoder.h", |
| 1189 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.cpp", |
| 1190 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.h", |
| 1191 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp", |
| 1192 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.h", |
| 1193 | "xfa/fxbarcode/datamatrix/BC_ASCIIEncoder.cpp", |
| 1194 | "xfa/fxbarcode/datamatrix/BC_ASCIIEncoder.h", |
| 1195 | "xfa/fxbarcode/datamatrix/BC_Base256Encoder.cpp", |
| 1196 | "xfa/fxbarcode/datamatrix/BC_Base256Encoder.h", |
| 1197 | "xfa/fxbarcode/datamatrix/BC_C40Encoder.cpp", |
| 1198 | "xfa/fxbarcode/datamatrix/BC_C40Encoder.h", |
| 1199 | "xfa/fxbarcode/datamatrix/BC_DataMatrixBitMatrixParser.cpp", |
| 1200 | "xfa/fxbarcode/datamatrix/BC_DataMatrixBitMatrixParser.h", |
| 1201 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDataBlock.cpp", |
| 1202 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDataBlock.h", |
| 1203 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDecodedBitStreamParser.cpp", |
| 1204 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDecodedBitStreamParser.h", |
| 1205 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDecoder.cpp", |
| 1206 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDecoder.h", |
| 1207 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp", |
| 1208 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.h", |
| 1209 | "xfa/fxbarcode/datamatrix/BC_DataMatrixReader.cpp", |
| 1210 | "xfa/fxbarcode/datamatrix/BC_DataMatrixReader.h", |
| 1211 | "xfa/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.cpp", |
| 1212 | "xfa/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.h", |
| 1213 | "xfa/fxbarcode/datamatrix/BC_DataMatrixVersion.cpp", |
| 1214 | "xfa/fxbarcode/datamatrix/BC_DataMatrixVersion.h", |
| 1215 | "xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.cpp", |
| 1216 | "xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h", |
| 1217 | "xfa/fxbarcode/datamatrix/BC_DefaultPlacement.cpp", |
| 1218 | "xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h", |
| 1219 | "xfa/fxbarcode/datamatrix/BC_EdifactEncoder.cpp", |
| 1220 | "xfa/fxbarcode/datamatrix/BC_EdifactEncoder.h", |
| 1221 | "xfa/fxbarcode/datamatrix/BC_Encoder.cpp", |
| 1222 | "xfa/fxbarcode/datamatrix/BC_Encoder.h", |
| 1223 | "xfa/fxbarcode/datamatrix/BC_EncoderContext.cpp", |
| 1224 | "xfa/fxbarcode/datamatrix/BC_EncoderContext.h", |
| 1225 | "xfa/fxbarcode/datamatrix/BC_ErrorCorrection.cpp", |
| 1226 | "xfa/fxbarcode/datamatrix/BC_ErrorCorrection.h", |
| 1227 | "xfa/fxbarcode/datamatrix/BC_HighLevelEncoder.cpp", |
| 1228 | "xfa/fxbarcode/datamatrix/BC_HighLevelEncoder.h", |
| 1229 | "xfa/fxbarcode/datamatrix/BC_SymbolInfo.cpp", |
| 1230 | "xfa/fxbarcode/datamatrix/BC_SymbolInfo.h", |
| 1231 | "xfa/fxbarcode/datamatrix/BC_SymbolShapeHint.cpp", |
| 1232 | "xfa/fxbarcode/datamatrix/BC_SymbolShapeHint.h", |
| 1233 | "xfa/fxbarcode/datamatrix/BC_TextEncoder.cpp", |
| 1234 | "xfa/fxbarcode/datamatrix/BC_TextEncoder.h", |
| 1235 | "xfa/fxbarcode/datamatrix/BC_X12Encoder.cpp", |
| 1236 | "xfa/fxbarcode/datamatrix/BC_X12Encoder.h", |
Dan Sinclair | a8a28e0 | 2016-03-23 15:41:39 -0400 | [diff] [blame] | 1237 | "xfa/fxbarcode/include/BC_Library.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1238 | "xfa/fxbarcode/oned/BC_OneDReader.cpp", |
| 1239 | "xfa/fxbarcode/oned/BC_OneDReader.h", |
| 1240 | "xfa/fxbarcode/oned/BC_OneDimReader.cpp", |
| 1241 | "xfa/fxbarcode/oned/BC_OneDimReader.h", |
| 1242 | "xfa/fxbarcode/oned/BC_OneDimWriter.cpp", |
| 1243 | "xfa/fxbarcode/oned/BC_OneDimWriter.h", |
| 1244 | "xfa/fxbarcode/oned/BC_OnedCodaBarReader.cpp", |
| 1245 | "xfa/fxbarcode/oned/BC_OnedCodaBarReader.h", |
| 1246 | "xfa/fxbarcode/oned/BC_OnedCodaBarWriter.cpp", |
| 1247 | "xfa/fxbarcode/oned/BC_OnedCodaBarWriter.h", |
| 1248 | "xfa/fxbarcode/oned/BC_OnedCode128Reader.cpp", |
| 1249 | "xfa/fxbarcode/oned/BC_OnedCode128Reader.h", |
| 1250 | "xfa/fxbarcode/oned/BC_OnedCode128Writer.cpp", |
| 1251 | "xfa/fxbarcode/oned/BC_OnedCode128Writer.h", |
| 1252 | "xfa/fxbarcode/oned/BC_OnedCode39Reader.cpp", |
| 1253 | "xfa/fxbarcode/oned/BC_OnedCode39Reader.h", |
| 1254 | "xfa/fxbarcode/oned/BC_OnedCode39Writer.cpp", |
| 1255 | "xfa/fxbarcode/oned/BC_OnedCode39Writer.h", |
| 1256 | "xfa/fxbarcode/oned/BC_OnedEAN13Reader.cpp", |
| 1257 | "xfa/fxbarcode/oned/BC_OnedEAN13Reader.h", |
| 1258 | "xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp", |
| 1259 | "xfa/fxbarcode/oned/BC_OnedEAN13Writer.h", |
| 1260 | "xfa/fxbarcode/oned/BC_OnedEAN8Reader.cpp", |
| 1261 | "xfa/fxbarcode/oned/BC_OnedEAN8Reader.h", |
| 1262 | "xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp", |
| 1263 | "xfa/fxbarcode/oned/BC_OnedEAN8Writer.h", |
| 1264 | "xfa/fxbarcode/oned/BC_OnedUPCAReader.cpp", |
| 1265 | "xfa/fxbarcode/oned/BC_OnedUPCAReader.h", |
| 1266 | "xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp", |
| 1267 | "xfa/fxbarcode/oned/BC_OnedUPCAWriter.h", |
| 1268 | "xfa/fxbarcode/pdf417/BC_PDF417.cpp", |
| 1269 | "xfa/fxbarcode/pdf417/BC_PDF417.h", |
| 1270 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp", |
| 1271 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h", |
| 1272 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp", |
| 1273 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.h", |
| 1274 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.cpp", |
| 1275 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h", |
| 1276 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.cpp", |
| 1277 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.h", |
| 1278 | "xfa/fxbarcode/pdf417/BC_PDF417BoundingBox.cpp", |
| 1279 | "xfa/fxbarcode/pdf417/BC_PDF417BoundingBox.h", |
| 1280 | "xfa/fxbarcode/pdf417/BC_PDF417Codeword.cpp", |
| 1281 | "xfa/fxbarcode/pdf417/BC_PDF417Codeword.h", |
| 1282 | "xfa/fxbarcode/pdf417/BC_PDF417CodewordDecoder.cpp", |
| 1283 | "xfa/fxbarcode/pdf417/BC_PDF417CodewordDecoder.h", |
| 1284 | "xfa/fxbarcode/pdf417/BC_PDF417Common.cpp", |
| 1285 | "xfa/fxbarcode/pdf417/BC_PDF417Common.h", |
| 1286 | "xfa/fxbarcode/pdf417/BC_PDF417Compaction.cpp", |
| 1287 | "xfa/fxbarcode/pdf417/BC_PDF417Compaction.h", |
| 1288 | "xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp", |
| 1289 | "xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h", |
| 1290 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResult.cpp", |
| 1291 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResult.h", |
| 1292 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp", |
| 1293 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.h", |
| 1294 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.cpp", |
| 1295 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.h", |
| 1296 | "xfa/fxbarcode/pdf417/BC_PDF417Detector.cpp", |
| 1297 | "xfa/fxbarcode/pdf417/BC_PDF417Detector.h", |
| 1298 | "xfa/fxbarcode/pdf417/BC_PDF417DetectorResult.cpp", |
| 1299 | "xfa/fxbarcode/pdf417/BC_PDF417DetectorResult.h", |
| 1300 | "xfa/fxbarcode/pdf417/BC_PDF417Dimensions.cpp", |
| 1301 | "xfa/fxbarcode/pdf417/BC_PDF417Dimensions.h", |
| 1302 | "xfa/fxbarcode/pdf417/BC_PDF417ECErrorCorrection.cpp", |
| 1303 | "xfa/fxbarcode/pdf417/BC_PDF417ECErrorCorrection.h", |
| 1304 | "xfa/fxbarcode/pdf417/BC_PDF417ECModulusGF.cpp", |
| 1305 | "xfa/fxbarcode/pdf417/BC_PDF417ECModulusGF.h", |
| 1306 | "xfa/fxbarcode/pdf417/BC_PDF417ECModulusPoly.cpp", |
| 1307 | "xfa/fxbarcode/pdf417/BC_PDF417ECModulusPoly.h", |
| 1308 | "xfa/fxbarcode/pdf417/BC_PDF417ErrorCorrection.cpp", |
| 1309 | "xfa/fxbarcode/pdf417/BC_PDF417ErrorCorrection.h", |
| 1310 | "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.cpp", |
| 1311 | "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.h", |
| 1312 | "xfa/fxbarcode/pdf417/BC_PDF417Reader.cpp", |
| 1313 | "xfa/fxbarcode/pdf417/BC_PDF417Reader.h", |
| 1314 | "xfa/fxbarcode/pdf417/BC_PDF417ResultMetadata.cpp", |
| 1315 | "xfa/fxbarcode/pdf417/BC_PDF417ResultMetadata.h", |
| 1316 | "xfa/fxbarcode/pdf417/BC_PDF417ScanningDecoder.cpp", |
| 1317 | "xfa/fxbarcode/pdf417/BC_PDF417ScanningDecoder.h", |
| 1318 | "xfa/fxbarcode/pdf417/BC_PDF417Writer.cpp", |
| 1319 | "xfa/fxbarcode/pdf417/BC_PDF417Writer.h", |
| 1320 | "xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp", |
| 1321 | "xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h", |
| 1322 | "xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.cpp", |
| 1323 | "xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h", |
| 1324 | "xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.cpp", |
| 1325 | "xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.h", |
| 1326 | "xfa/fxbarcode/qrcode/BC_QRBitMatrixParser.cpp", |
| 1327 | "xfa/fxbarcode/qrcode/BC_QRBitMatrixParser.h", |
| 1328 | "xfa/fxbarcode/qrcode/BC_QRCodeReader.cpp", |
| 1329 | "xfa/fxbarcode/qrcode/BC_QRCodeReader.h", |
| 1330 | "xfa/fxbarcode/qrcode/BC_QRCodeWriter.cpp", |
| 1331 | "xfa/fxbarcode/qrcode/BC_QRCodeWriter.h", |
| 1332 | "xfa/fxbarcode/qrcode/BC_QRCoder.cpp", |
| 1333 | "xfa/fxbarcode/qrcode/BC_QRCoder.h", |
| 1334 | "xfa/fxbarcode/qrcode/BC_QRCoderBitVector.cpp", |
| 1335 | "xfa/fxbarcode/qrcode/BC_QRCoderBitVector.h", |
| 1336 | "xfa/fxbarcode/qrcode/BC_QRCoderBlockPair.cpp", |
| 1337 | "xfa/fxbarcode/qrcode/BC_QRCoderBlockPair.h", |
| 1338 | "xfa/fxbarcode/qrcode/BC_QRCoderDecoder.cpp", |
| 1339 | "xfa/fxbarcode/qrcode/BC_QRCoderDecoder.h", |
| 1340 | "xfa/fxbarcode/qrcode/BC_QRCoderECB.cpp", |
| 1341 | "xfa/fxbarcode/qrcode/BC_QRCoderECB.h", |
| 1342 | "xfa/fxbarcode/qrcode/BC_QRCoderECBlocks.cpp", |
| 1343 | "xfa/fxbarcode/qrcode/BC_QRCoderECBlocks.h", |
| 1344 | "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.cpp", |
| 1345 | "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.h", |
| 1346 | "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.cpp", |
| 1347 | "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.h", |
| 1348 | "xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.cpp", |
| 1349 | "xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h", |
| 1350 | "xfa/fxbarcode/qrcode/BC_QRCoderMaskUtil.cpp", |
| 1351 | "xfa/fxbarcode/qrcode/BC_QRCoderMaskUtil.h", |
| 1352 | "xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp", |
| 1353 | "xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.h", |
| 1354 | "xfa/fxbarcode/qrcode/BC_QRCoderMode.cpp", |
| 1355 | "xfa/fxbarcode/qrcode/BC_QRCoderMode.h", |
| 1356 | "xfa/fxbarcode/qrcode/BC_QRCoderVersion.cpp", |
| 1357 | "xfa/fxbarcode/qrcode/BC_QRCoderVersion.h", |
| 1358 | "xfa/fxbarcode/qrcode/BC_QRDataBlock.cpp", |
| 1359 | "xfa/fxbarcode/qrcode/BC_QRDataBlock.h", |
| 1360 | "xfa/fxbarcode/qrcode/BC_QRDataMask.cpp", |
| 1361 | "xfa/fxbarcode/qrcode/BC_QRDataMask.h", |
| 1362 | "xfa/fxbarcode/qrcode/BC_QRDecodedBitStreamParser.cpp", |
| 1363 | "xfa/fxbarcode/qrcode/BC_QRDecodedBitStreamParser.h", |
| 1364 | "xfa/fxbarcode/qrcode/BC_QRDetector.cpp", |
| 1365 | "xfa/fxbarcode/qrcode/BC_QRDetector.h", |
| 1366 | "xfa/fxbarcode/qrcode/BC_QRDetectorResult.cpp", |
| 1367 | "xfa/fxbarcode/qrcode/BC_QRDetectorResult.h", |
| 1368 | "xfa/fxbarcode/qrcode/BC_QRFinderPattern.cpp", |
| 1369 | "xfa/fxbarcode/qrcode/BC_QRFinderPattern.h", |
| 1370 | "xfa/fxbarcode/qrcode/BC_QRFinderPatternFinder.cpp", |
| 1371 | "xfa/fxbarcode/qrcode/BC_QRFinderPatternFinder.h", |
| 1372 | "xfa/fxbarcode/qrcode/BC_QRGridSampler.cpp", |
| 1373 | "xfa/fxbarcode/qrcode/BC_QRGridSampler.h", |
| 1374 | "xfa/fxbarcode/utils.h", |
| 1375 | "xfa/fxfa/app/xfa_checksum.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1376 | "xfa/fxfa/app/xfa_ffapp.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1377 | "xfa/fxfa/app/xfa_ffbarcode.cpp", |
| 1378 | "xfa/fxfa/app/xfa_ffbarcode.h", |
| 1379 | "xfa/fxfa/app/xfa_ffcheckbutton.cpp", |
| 1380 | "xfa/fxfa/app/xfa_ffcheckbutton.h", |
| 1381 | "xfa/fxfa/app/xfa_ffchoicelist.cpp", |
| 1382 | "xfa/fxfa/app/xfa_ffchoicelist.h", |
| 1383 | "xfa/fxfa/app/xfa_ffdoc.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1384 | "xfa/fxfa/app/xfa_ffdochandler.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1385 | "xfa/fxfa/app/xfa_ffdocview.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1386 | "xfa/fxfa/app/xfa_ffdraw.cpp", |
| 1387 | "xfa/fxfa/app/xfa_ffdraw.h", |
| 1388 | "xfa/fxfa/app/xfa_ffexclgroup.cpp", |
| 1389 | "xfa/fxfa/app/xfa_ffexclgroup.h", |
| 1390 | "xfa/fxfa/app/xfa_fffield.cpp", |
| 1391 | "xfa/fxfa/app/xfa_fffield.h", |
| 1392 | "xfa/fxfa/app/xfa_ffimage.cpp", |
| 1393 | "xfa/fxfa/app/xfa_ffimage.h", |
| 1394 | "xfa/fxfa/app/xfa_ffimageedit.cpp", |
| 1395 | "xfa/fxfa/app/xfa_ffimageedit.h", |
| 1396 | "xfa/fxfa/app/xfa_ffnotify.cpp", |
| 1397 | "xfa/fxfa/app/xfa_ffnotify.h", |
| 1398 | "xfa/fxfa/app/xfa_ffpageview.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1399 | "xfa/fxfa/app/xfa_ffpath.cpp", |
| 1400 | "xfa/fxfa/app/xfa_ffpath.h", |
| 1401 | "xfa/fxfa/app/xfa_ffpushbutton.cpp", |
| 1402 | "xfa/fxfa/app/xfa_ffpushbutton.h", |
| 1403 | "xfa/fxfa/app/xfa_ffsignature.cpp", |
| 1404 | "xfa/fxfa/app/xfa_ffsignature.h", |
| 1405 | "xfa/fxfa/app/xfa_ffsubform.cpp", |
| 1406 | "xfa/fxfa/app/xfa_ffsubform.h", |
| 1407 | "xfa/fxfa/app/xfa_fftext.cpp", |
| 1408 | "xfa/fxfa/app/xfa_fftext.h", |
| 1409 | "xfa/fxfa/app/xfa_fftextedit.cpp", |
| 1410 | "xfa/fxfa/app/xfa_fftextedit.h", |
| 1411 | "xfa/fxfa/app/xfa_ffwidget.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1412 | "xfa/fxfa/app/xfa_ffwidgetacc.cpp", |
| 1413 | "xfa/fxfa/app/xfa_ffwidgetacc.h", |
| 1414 | "xfa/fxfa/app/xfa_ffwidgethandler.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1415 | "xfa/fxfa/app/xfa_fontmgr.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1416 | "xfa/fxfa/app/xfa_fwladapter.cpp", |
| 1417 | "xfa/fxfa/app/xfa_fwladapter.h", |
| 1418 | "xfa/fxfa/app/xfa_fwltheme.cpp", |
| 1419 | "xfa/fxfa/app/xfa_fwltheme.h", |
| 1420 | "xfa/fxfa/app/xfa_rendercontext.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1421 | "xfa/fxfa/app/xfa_textlayout.cpp", |
| 1422 | "xfa/fxfa/app/xfa_textlayout.h", |
| 1423 | "xfa/fxfa/fm2js/xfa_error.cpp", |
| 1424 | "xfa/fxfa/fm2js/xfa_error.h", |
| 1425 | "xfa/fxfa/fm2js/xfa_expression.cpp", |
| 1426 | "xfa/fxfa/fm2js/xfa_expression.h", |
| 1427 | "xfa/fxfa/fm2js/xfa_fm2jsapi.cpp", |
| 1428 | "xfa/fxfa/fm2js/xfa_fm2jsapi.h", |
| 1429 | "xfa/fxfa/fm2js/xfa_fm2jscontext.cpp", |
| 1430 | "xfa/fxfa/fm2js/xfa_fm2jscontext.h", |
| 1431 | "xfa/fxfa/fm2js/xfa_fmparse.cpp", |
| 1432 | "xfa/fxfa/fm2js/xfa_fmparse.h", |
| 1433 | "xfa/fxfa/fm2js/xfa_lexer.cpp", |
| 1434 | "xfa/fxfa/fm2js/xfa_lexer.h", |
| 1435 | "xfa/fxfa/fm2js/xfa_program.cpp", |
| 1436 | "xfa/fxfa/fm2js/xfa_program.h", |
| 1437 | "xfa/fxfa/fm2js/xfa_simpleexpression.cpp", |
| 1438 | "xfa/fxfa/fm2js/xfa_simpleexpression.h", |
dsinclair | 7222ea6 | 2016-04-06 14:33:07 -0700 | [diff] [blame] | 1439 | "xfa/fxfa/include/fxfa.h", |
| 1440 | "xfa/fxfa/include/fxfa_basic.h", |
| 1441 | "xfa/fxfa/include/fxfa_widget.h", |
| 1442 | "xfa/fxfa/include/xfa_checksum.h", |
| 1443 | "xfa/fxfa/include/xfa_ffapp.h", |
| 1444 | "xfa/fxfa/include/xfa_ffdoc.h", |
| 1445 | "xfa/fxfa/include/xfa_ffdochandler.h", |
| 1446 | "xfa/fxfa/include/xfa_ffdocview.h", |
| 1447 | "xfa/fxfa/include/xfa_ffpageview.h", |
| 1448 | "xfa/fxfa/include/xfa_ffwidget.h", |
| 1449 | "xfa/fxfa/include/xfa_ffwidgethandler.h", |
| 1450 | "xfa/fxfa/include/xfa_fontmgr.h", |
| 1451 | "xfa/fxfa/include/xfa_rendercontext.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1452 | "xfa/fxfa/parser/cxfa_arc.h", |
| 1453 | "xfa/fxfa/parser/cxfa_assist.cpp", |
| 1454 | "xfa/fxfa/parser/cxfa_assist.h", |
| 1455 | "xfa/fxfa/parser/cxfa_bind.cpp", |
| 1456 | "xfa/fxfa/parser/cxfa_bind.h", |
| 1457 | "xfa/fxfa/parser/cxfa_binditems.cpp", |
| 1458 | "xfa/fxfa/parser/cxfa_binditems.h", |
| 1459 | "xfa/fxfa/parser/cxfa_border.h", |
| 1460 | "xfa/fxfa/parser/cxfa_box.cpp", |
| 1461 | "xfa/fxfa/parser/cxfa_box.h", |
| 1462 | "xfa/fxfa/parser/cxfa_calculate.cpp", |
| 1463 | "xfa/fxfa/parser/cxfa_calculate.h", |
| 1464 | "xfa/fxfa/parser/cxfa_caption.cpp", |
| 1465 | "xfa/fxfa/parser/cxfa_caption.h", |
| 1466 | "xfa/fxfa/parser/cxfa_corner.h", |
| 1467 | "xfa/fxfa/parser/cxfa_data.cpp", |
| 1468 | "xfa/fxfa/parser/cxfa_data.h", |
| 1469 | "xfa/fxfa/parser/cxfa_edge.h", |
| 1470 | "xfa/fxfa/parser/cxfa_event.cpp", |
| 1471 | "xfa/fxfa/parser/cxfa_event.h", |
| 1472 | "xfa/fxfa/parser/cxfa_exdata.cpp", |
| 1473 | "xfa/fxfa/parser/cxfa_exdata.h", |
| 1474 | "xfa/fxfa/parser/cxfa_fill.cpp", |
| 1475 | "xfa/fxfa/parser/cxfa_fill.h", |
| 1476 | "xfa/fxfa/parser/cxfa_font.cpp", |
| 1477 | "xfa/fxfa/parser/cxfa_font.h", |
| 1478 | "xfa/fxfa/parser/cxfa_image.cpp", |
| 1479 | "xfa/fxfa/parser/cxfa_image.h", |
| 1480 | "xfa/fxfa/parser/cxfa_line.cpp", |
| 1481 | "xfa/fxfa/parser/cxfa_line.h", |
| 1482 | "xfa/fxfa/parser/cxfa_margin.cpp", |
| 1483 | "xfa/fxfa/parser/cxfa_margin.h", |
| 1484 | "xfa/fxfa/parser/cxfa_occur.cpp", |
| 1485 | "xfa/fxfa/parser/cxfa_occur.h", |
| 1486 | "xfa/fxfa/parser/cxfa_para.cpp", |
| 1487 | "xfa/fxfa/parser/cxfa_para.h", |
| 1488 | "xfa/fxfa/parser/cxfa_rectangle.h", |
| 1489 | "xfa/fxfa/parser/cxfa_script.cpp", |
| 1490 | "xfa/fxfa/parser/cxfa_script.h", |
| 1491 | "xfa/fxfa/parser/cxfa_stroke.cpp", |
| 1492 | "xfa/fxfa/parser/cxfa_stroke.h", |
| 1493 | "xfa/fxfa/parser/cxfa_submit.cpp", |
| 1494 | "xfa/fxfa/parser/cxfa_submit.h", |
| 1495 | "xfa/fxfa/parser/cxfa_text.cpp", |
| 1496 | "xfa/fxfa/parser/cxfa_text.h", |
| 1497 | "xfa/fxfa/parser/cxfa_tooltip.cpp", |
| 1498 | "xfa/fxfa/parser/cxfa_tooltip.h", |
| 1499 | "xfa/fxfa/parser/cxfa_validate.cpp", |
| 1500 | "xfa/fxfa/parser/cxfa_validate.h", |
| 1501 | "xfa/fxfa/parser/cxfa_value.cpp", |
| 1502 | "xfa/fxfa/parser/cxfa_value.h", |
| 1503 | "xfa/fxfa/parser/cxfa_widgetdata.cpp", |
| 1504 | "xfa/fxfa/parser/cxfa_widgetdata.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1505 | "xfa/fxfa/parser/xfa_basic_data.cpp", |
| 1506 | "xfa/fxfa/parser/xfa_basic_data.h", |
| 1507 | "xfa/fxfa/parser/xfa_basic_imp.cpp", |
| 1508 | "xfa/fxfa/parser/xfa_basic_imp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1509 | "xfa/fxfa/parser/xfa_doclayout.h", |
| 1510 | "xfa/fxfa/parser/xfa_document.h", |
| 1511 | "xfa/fxfa/parser/xfa_document_datadescription_imp.cpp", |
| 1512 | "xfa/fxfa/parser/xfa_document_datadescription_imp.h", |
| 1513 | "xfa/fxfa/parser/xfa_document_datamerger_imp.cpp", |
| 1514 | "xfa/fxfa/parser/xfa_document_datamerger_imp.h", |
| 1515 | "xfa/fxfa/parser/xfa_document_imp.cpp", |
| 1516 | "xfa/fxfa/parser/xfa_document_layout_imp.cpp", |
| 1517 | "xfa/fxfa/parser/xfa_document_layout_imp.h", |
| 1518 | "xfa/fxfa/parser/xfa_document_serialize.cpp", |
| 1519 | "xfa/fxfa/parser/xfa_document_serialize.h", |
| 1520 | "xfa/fxfa/parser/xfa_layout_appadapter.cpp", |
| 1521 | "xfa/fxfa/parser/xfa_layout_appadapter.h", |
| 1522 | "xfa/fxfa/parser/xfa_layout_itemlayout.cpp", |
| 1523 | "xfa/fxfa/parser/xfa_layout_itemlayout.h", |
| 1524 | "xfa/fxfa/parser/xfa_layout_pagemgr_new.cpp", |
| 1525 | "xfa/fxfa/parser/xfa_layout_pagemgr_new.h", |
| 1526 | "xfa/fxfa/parser/xfa_locale.cpp", |
| 1527 | "xfa/fxfa/parser/xfa_locale.h", |
| 1528 | "xfa/fxfa/parser/xfa_localemgr.cpp", |
| 1529 | "xfa/fxfa/parser/xfa_localemgr.h", |
| 1530 | "xfa/fxfa/parser/xfa_localevalue.cpp", |
| 1531 | "xfa/fxfa/parser/xfa_localevalue.h", |
| 1532 | "xfa/fxfa/parser/xfa_object.h", |
| 1533 | "xfa/fxfa/parser/xfa_object_imp.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1534 | "xfa/fxfa/parser/xfa_parser.h", |
| 1535 | "xfa/fxfa/parser/xfa_parser_imp.cpp", |
| 1536 | "xfa/fxfa/parser/xfa_parser_imp.h", |
| 1537 | "xfa/fxfa/parser/xfa_script.h", |
| 1538 | "xfa/fxfa/parser/xfa_script_datawindow.cpp", |
| 1539 | "xfa/fxfa/parser/xfa_script_datawindow.h", |
| 1540 | "xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp", |
| 1541 | "xfa/fxfa/parser/xfa_script_eventpseudomodel.h", |
| 1542 | "xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp", |
| 1543 | "xfa/fxfa/parser/xfa_script_hostpseudomodel.h", |
| 1544 | "xfa/fxfa/parser/xfa_script_imp.cpp", |
| 1545 | "xfa/fxfa/parser/xfa_script_imp.h", |
| 1546 | "xfa/fxfa/parser/xfa_script_layoutpseudomodel.cpp", |
| 1547 | "xfa/fxfa/parser/xfa_script_layoutpseudomodel.h", |
| 1548 | "xfa/fxfa/parser/xfa_script_logpseudomodel.cpp", |
| 1549 | "xfa/fxfa/parser/xfa_script_logpseudomodel.h", |
| 1550 | "xfa/fxfa/parser/xfa_script_nodehelper.cpp", |
| 1551 | "xfa/fxfa/parser/xfa_script_nodehelper.h", |
| 1552 | "xfa/fxfa/parser/xfa_script_resolveprocessor.cpp", |
| 1553 | "xfa/fxfa/parser/xfa_script_resolveprocessor.h", |
| 1554 | "xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp", |
| 1555 | "xfa/fxfa/parser/xfa_script_signaturepseudomodel.h", |
| 1556 | "xfa/fxfa/parser/xfa_utils.h", |
| 1557 | "xfa/fxfa/parser/xfa_utils_imp.cpp", |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 1558 | "xfa/fxgraphics/cagg_graphics.cpp", |
| 1559 | "xfa/fxgraphics/cagg_graphics.h", |
| 1560 | "xfa/fxgraphics/cfx_color.cpp", |
| 1561 | "xfa/fxgraphics/cfx_color.h", |
| 1562 | "xfa/fxgraphics/cfx_graphics.cpp", |
| 1563 | "xfa/fxgraphics/cfx_path.cpp", |
| 1564 | "xfa/fxgraphics/cfx_path.h", |
| 1565 | "xfa/fxgraphics/cfx_path_generator.cpp", |
| 1566 | "xfa/fxgraphics/cfx_path_generator.h", |
| 1567 | "xfa/fxgraphics/cfx_pattern.cpp", |
| 1568 | "xfa/fxgraphics/cfx_pattern.h", |
| 1569 | "xfa/fxgraphics/cfx_shading.cpp", |
| 1570 | "xfa/fxgraphics/cfx_shading.h", |
| 1571 | "xfa/fxgraphics/include/cfx_graphics.h", |
Dan Sinclair | 3a8051c | 2016-03-15 15:42:31 -0400 | [diff] [blame] | 1572 | "xfa/fxjse/include/fxjse.h", |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1573 | ] |
Tom Sepez | b545159 | 2016-02-22 16:48:02 -0800 | [diff] [blame] | 1574 | include_dirs = [ "." ] |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1575 | if (pdf_enable_v8) { |
| 1576 | sources += [ |
Dan Sinclair | 3a8051c | 2016-03-15 15:42:31 -0400 | [diff] [blame] | 1577 | "xfa/fxjse/cfxjse_arguments.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1578 | "xfa/fxjse/class.cpp", |
| 1579 | "xfa/fxjse/class.h", |
| 1580 | "xfa/fxjse/context.cpp", |
| 1581 | "xfa/fxjse/context.h", |
| 1582 | "xfa/fxjse/dynprop.cpp", |
| 1583 | "xfa/fxjse/runtime.cpp", |
| 1584 | "xfa/fxjse/runtime.h", |
| 1585 | "xfa/fxjse/scope_inline.h", |
| 1586 | "xfa/fxjse/util_inline.h", |
| 1587 | "xfa/fxjse/value.cpp", |
| 1588 | "xfa/fxjse/value.h", |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1589 | ] |
| 1590 | include_dirs += [ |
| 1591 | "//v8", |
| 1592 | "//v8/include", |
| 1593 | ] |
| 1594 | public_deps = [ |
| 1595 | "//v8", |
| 1596 | ] |
| 1597 | deps = [ |
| 1598 | "//v8:v8_libplatform", |
| 1599 | ] |
| 1600 | } |
| 1601 | configs -= [ "//build/config/compiler:chromium_code" ] |
| 1602 | configs += [ |
| 1603 | ":pdfium_config", |
| 1604 | "//build/config/compiler:no_chromium_code", |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1605 | ] |
| 1606 | } |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 1607 | } |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1608 | |
| 1609 | test("pdfium_unittests") { |
| 1610 | sources = [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1611 | "core/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp", |
| 1612 | "core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp", |
| 1613 | "core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp", |
dsinclair | d80e0a7 | 2016-04-04 09:38:55 -0700 | [diff] [blame] | 1614 | "core/fpdfapi/fpdf_page/fpdf_page_parser_unittest.cpp", |
weili | cdce757 | 2016-04-13 14:40:10 -0700 | [diff] [blame] | 1615 | "core/fpdfapi/fpdf_parser/cpdf_array_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1616 | "core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp", |
| 1617 | "core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp", |
| 1618 | "core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp", |
| 1619 | "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp", |
| 1620 | "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", |
| 1621 | "core/fpdfdoc/doc_basic_unittest.cpp", |
| 1622 | "core/fpdftext/fpdf_text_int_unittest.cpp", |
| 1623 | "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
tsepez | 602aebc | 2016-03-29 15:04:21 -0700 | [diff] [blame] | 1624 | "core/fxcrt/cfx_retain_ptr_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1625 | "core/fxcrt/fx_basic_bstring_unittest.cpp", |
| 1626 | "core/fxcrt/fx_basic_gcc_unittest.cpp", |
| 1627 | "core/fxcrt/fx_basic_memmgr_unittest.cpp", |
| 1628 | "core/fxcrt/fx_basic_wstring_unittest.cpp", |
| 1629 | "core/fxcrt/fx_bidi_unittest.cpp", |
| 1630 | "core/fxcrt/fx_extension_unittest.cpp", |
| 1631 | "core/fxcrt/fx_system_unittest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1632 | "fpdfsdk/fpdfdoc_unittest.cpp", |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1633 | ] |
| 1634 | deps = [ |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 1635 | ":pdfium", |
| 1636 | ":test_support", |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 1637 | "//testing/gtest", |
| 1638 | "//testing/gtest:gtest_main", |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1639 | ] |
Dan Sinclair | 30410ce | 2016-03-16 10:20:24 -0400 | [diff] [blame] | 1640 | include_dirs = [] |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 1641 | if (pdf_enable_xfa) { |
| 1642 | sources += [ |
dsinclair | 11ac93c | 2016-03-31 09:45:20 -0700 | [diff] [blame] | 1643 | "xfa/fde/xml/fde_xml_imp_unittest.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1644 | "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", |
| 1645 | "xfa/fxfa/parser/xfa_utils_imp_unittest.cpp", |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 1646 | ] |
| 1647 | } |
Wei Li | 614d20a | 2016-03-15 13:55:12 -0700 | [diff] [blame] | 1648 | if (pdf_enable_v8) { |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 1649 | sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] |
Wei Li | 614d20a | 2016-03-15 13:55:12 -0700 | [diff] [blame] | 1650 | include_dirs += [ |
| 1651 | "//v8", |
| 1652 | "//v8/include", |
| 1653 | ] |
| 1654 | } |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 1655 | configs += [ ":pdfium_config" ] |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1656 | } |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1657 | |
| 1658 | test("pdfium_embeddertests") { |
| 1659 | sources = [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1660 | "core/fpdfapi/fpdf_page/fpdf_page_func_embeddertest.cpp", |
| 1661 | "core/fpdfapi/fpdf_parser/cpdf_parser_embeddertest.cpp", |
| 1662 | "core/fpdfapi/fpdf_parser/fpdf_parser_decode_embeddertest.cpp", |
| 1663 | "core/fpdfapi/fpdf_render/fpdf_render_loadimage_embeddertest.cpp", |
| 1664 | "core/fpdfapi/fpdf_render/fpdf_render_pattern_embeddertest.cpp", |
ochang | b8627c9 | 2016-04-11 13:47:41 -0700 | [diff] [blame] | 1665 | "core/fxge/ge/fx_ge_text_embeddertest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1666 | "fpdfsdk/fpdf_dataavail_embeddertest.cpp", |
| 1667 | "fpdfsdk/fpdfdoc_embeddertest.cpp", |
| 1668 | "fpdfsdk/fpdfedit_embeddertest.cpp", |
| 1669 | "fpdfsdk/fpdfext_embeddertest.cpp", |
| 1670 | "fpdfsdk/fpdfformfill_embeddertest.cpp", |
| 1671 | "fpdfsdk/fpdfsave_embeddertest.cpp", |
| 1672 | "fpdfsdk/fpdftext_embeddertest.cpp", |
| 1673 | "fpdfsdk/fpdfview_c_api_test.c", |
| 1674 | "fpdfsdk/fpdfview_c_api_test.h", |
| 1675 | "fpdfsdk/fpdfview_embeddertest.cpp", |
| 1676 | "fpdfsdk/fsdk_baseform_embeddertest.cpp", |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1677 | "testing/embedder_test.cpp", |
| 1678 | "testing/embedder_test.h", |
Tom Sepez | a310e00 | 2015-02-27 13:03:07 -0800 | [diff] [blame] | 1679 | "testing/embedder_test_mock_delegate.h", |
Tom Sepez | 6efc0ad | 2015-06-02 17:11:18 -0700 | [diff] [blame] | 1680 | "testing/embedder_test_timer_handling_delegate.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1681 | "xfa/fxfa/parser/xfa_parser_imp_embeddertest.cpp", |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1682 | ] |
| 1683 | deps = [ |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1684 | ":pdfium", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 1685 | ":test_support", |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 1686 | "//testing/gmock", |
| 1687 | "//testing/gtest", |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1688 | ] |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 1689 | include_dirs = [ "testing/gmock/include" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1690 | if (pdf_enable_v8) { |
Lei Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 1691 | sources += [ |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1692 | "fpdfsdk/javascript/public_methods_embeddertest.cpp", |
| 1693 | "fpdfsdk/jsapi/fxjs_v8_embeddertest.cpp", |
Lei Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 1694 | "testing/js_embedder_test.cpp", |
| 1695 | "testing/js_embedder_test.h", |
| 1696 | ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1697 | deps += [ |
| 1698 | "//v8", |
| 1699 | "//v8:v8_libplatform", |
| 1700 | ] |
| 1701 | include_dirs += [ |
| 1702 | "//v8", |
| 1703 | "//v8/include", |
| 1704 | ] |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 1705 | configs += [ "//v8:external_startup_data" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1706 | } |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 1707 | configs += [ ":pdfium_config" ] |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1708 | } |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 1709 | |
| 1710 | if (pdf_is_standalone) { |
| 1711 | source_set("samples") { |
| 1712 | testonly = true |
| 1713 | deps = [ |
| 1714 | "//samples", |
| 1715 | ] |
| 1716 | } |
| 1717 | } |