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") |
dsinclair | 038bf0b | 2016-04-30 06:00:05 -0700 | [diff] [blame] | 7 | import("pdfium.gni") |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 8 | |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 9 | config("pdfium_common_config") { |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 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", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 20 | ] |
| 21 | |
| 22 | if (pdf_use_skia) { |
| 23 | defines += [ "_SKIA_SUPPORT_" ] |
| 24 | } |
| 25 | |
caryclark | af177fe | 2016-11-16 10:10:03 -0800 | [diff] [blame] | 26 | if (pdf_use_skia_paths) { |
| 27 | defines += [ "_SKIA_SUPPORT_PATHS_" ] |
| 28 | } |
| 29 | |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 30 | if (pdf_enable_v8) { |
| 31 | defines += [ "PDF_ENABLE_V8" ] |
| 32 | } |
| 33 | |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 34 | if (pdf_enable_xfa) { |
| 35 | defines += [ "PDF_ENABLE_XFA" ] |
| 36 | } |
thestig | 3e454bf | 2016-07-29 16:29:04 -0700 | [diff] [blame] | 37 | |
| 38 | if (pdf_use_win32_gdi) { |
| 39 | defines += [ "PDFIUM_PRINT_TEXT_WITH_GDI" ] |
| 40 | } |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 41 | } |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 42 | |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 43 | config("pdfium_core_config") { |
| 44 | cflags = [] |
dsinclair | 8bd9ce0 | 2016-06-09 13:24:34 -0700 | [diff] [blame] | 45 | configs = [ ":pdfium_common_config" ] |
| 46 | defines = [ "V8_DEPRECATION_WARNINGS" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 47 | if (is_linux) { |
Tom Sepez | 25d5be6 | 2015-06-18 17:44:29 -0700 | [diff] [blame] | 48 | if (current_cpu == "x64") { |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 49 | defines += [ "_FX_CPU_=_FX_X64_" ] |
| 50 | cflags += [ "-fPIC" ] |
Tom Sepez | 25d5be6 | 2015-06-18 17:44:29 -0700 | [diff] [blame] | 51 | } else if (current_cpu == "x86") { |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 52 | defines += [ "_FX_CPU_=_FX_X86_" ] |
| 53 | } |
| 54 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 55 | if (is_win) { |
dsinclair | 5d9da0c | 2016-04-21 13:12:06 -0700 | [diff] [blame] | 56 | cflags += [ "/wd4267" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 57 | } |
weili | dcc29b1 | 2016-05-27 17:58:23 -0700 | [diff] [blame] | 58 | } |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 59 | |
weili | dcc29b1 | 2016-05-27 17:58:23 -0700 | [diff] [blame] | 60 | config("xfa_warnings") { |
| 61 | visibility = [ ":*" ] |
Tom Sepez | 3420909 | 2016-03-18 09:00:33 -0700 | [diff] [blame] | 62 | if (is_posix && !is_clang) { # When GCC. |
weili | dcc29b1 | 2016-05-27 17:58:23 -0700 | [diff] [blame] | 63 | cflags = [ "-Wno-strict-overflow" ] |
Tom Sepez | 3420909 | 2016-03-18 09:00:33 -0700 | [diff] [blame] | 64 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static_library("pdfium") { |
| 68 | sources = [ |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 69 | "fpdfsdk/cba_annotiterator.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 70 | "fpdfsdk/cba_annotiterator.h", |
dsinclair | b959010 | 2016-04-27 06:38:59 -0700 | [diff] [blame] | 71 | "fpdfsdk/cfx_systemhandler.cpp", |
| 72 | "fpdfsdk/cfx_systemhandler.h", |
jaepark | 2736276 | 2016-08-11 13:10:39 -0700 | [diff] [blame] | 73 | "fpdfsdk/cpdfsdk_annot.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 74 | "fpdfsdk/cpdfsdk_annot.h", |
jaepark | 98e1019 | 2016-08-15 10:51:11 -0700 | [diff] [blame] | 75 | "fpdfsdk/cpdfsdk_annothandlermgr.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 76 | "fpdfsdk/cpdfsdk_annothandlermgr.h", |
jaepark | 98e1019 | 2016-08-15 10:51:11 -0700 | [diff] [blame] | 77 | "fpdfsdk/cpdfsdk_annotiterator.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 78 | "fpdfsdk/cpdfsdk_annotiterator.h", |
jaepark | 2736276 | 2016-08-11 13:10:39 -0700 | [diff] [blame] | 79 | "fpdfsdk/cpdfsdk_baannot.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 80 | "fpdfsdk/cpdfsdk_baannot.h", |
jaepark | 35512aa | 2016-08-29 17:15:08 -0700 | [diff] [blame] | 81 | "fpdfsdk/cpdfsdk_baannothandler.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 82 | "fpdfsdk/cpdfsdk_baannothandler.h", |
jaepark | 2736276 | 2016-08-11 13:10:39 -0700 | [diff] [blame] | 83 | "fpdfsdk/cpdfsdk_datetime.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 84 | "fpdfsdk/cpdfsdk_datetime.h", |
dsinclair | 735606d | 2016-10-05 15:47:02 -0700 | [diff] [blame] | 85 | "fpdfsdk/cpdfsdk_formfillenvironment.cpp", |
| 86 | "fpdfsdk/cpdfsdk_formfillenvironment.h", |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 87 | "fpdfsdk/cpdfsdk_interform.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 88 | "fpdfsdk/cpdfsdk_interform.h", |
dsinclair | f34518b | 2016-09-13 12:03:48 -0700 | [diff] [blame] | 89 | "fpdfsdk/cpdfsdk_pageview.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 90 | "fpdfsdk/cpdfsdk_pageview.h", |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 91 | "fpdfsdk/cpdfsdk_widget.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 92 | "fpdfsdk/cpdfsdk_widget.h", |
jaepark | 8c54182 | 2016-08-30 13:43:05 -0700 | [diff] [blame] | 93 | "fpdfsdk/cpdfsdk_widgethandler.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 94 | "fpdfsdk/cpdfsdk_widgethandler.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 95 | "fpdfsdk/fpdf_dataavail.cpp", |
| 96 | "fpdfsdk/fpdf_ext.cpp", |
| 97 | "fpdfsdk/fpdf_flatten.cpp", |
| 98 | "fpdfsdk/fpdf_progressive.cpp", |
| 99 | "fpdfsdk/fpdf_searchex.cpp", |
| 100 | "fpdfsdk/fpdf_sysfontinfo.cpp", |
| 101 | "fpdfsdk/fpdf_transformpage.cpp", |
| 102 | "fpdfsdk/fpdfdoc.cpp", |
| 103 | "fpdfsdk/fpdfeditimg.cpp", |
| 104 | "fpdfsdk/fpdfeditpage.cpp", |
| 105 | "fpdfsdk/fpdfformfill.cpp", |
| 106 | "fpdfsdk/fpdfppo.cpp", |
| 107 | "fpdfsdk/fpdfsave.cpp", |
| 108 | "fpdfsdk/fpdftext.cpp", |
| 109 | "fpdfsdk/fpdfview.cpp", |
| 110 | "fpdfsdk/fsdk_actionhandler.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 111 | "fpdfsdk/fsdk_actionhandler.h", |
weili | 9f515bc | 2016-07-24 08:08:24 -0700 | [diff] [blame] | 112 | "fpdfsdk/fsdk_pauseadapter.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 113 | "fpdfsdk/fsdk_pauseadapter.h", |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 114 | "fpdfsdk/pdfsdk_fieldaction.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 115 | "fpdfsdk/pdfsdk_fieldaction.h", |
Tom Sepez | 1ed8a21 | 2015-05-11 15:25:39 -0700 | [diff] [blame] | 116 | "public/fpdf_dataavail.h", |
| 117 | "public/fpdf_doc.h", |
| 118 | "public/fpdf_edit.h", |
| 119 | "public/fpdf_ext.h", |
| 120 | "public/fpdf_flatten.h", |
| 121 | "public/fpdf_formfill.h", |
| 122 | "public/fpdf_fwlevent.h", |
| 123 | "public/fpdf_ppo.h", |
| 124 | "public/fpdf_progressive.h", |
| 125 | "public/fpdf_save.h", |
| 126 | "public/fpdf_searchex.h", |
| 127 | "public/fpdf_sysfontinfo.h", |
| 128 | "public/fpdf_text.h", |
| 129 | "public/fpdf_transformpage.h", |
| 130 | "public/fpdfview.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 131 | ] |
| 132 | |
| 133 | libs = [] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 134 | configs += [ ":pdfium_core_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 135 | |
| 136 | deps = [ |
| 137 | ":fdrm", |
| 138 | ":formfiller", |
| 139 | ":fpdfapi", |
| 140 | ":fpdfdoc", |
| 141 | ":fpdftext", |
| 142 | ":fxcodec", |
| 143 | ":fxcrt", |
| 144 | ":fxedit", |
| 145 | ":fxge", |
| 146 | ":javascript", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 147 | ":pdfwindow", |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 148 | "third_party:bigint", |
| 149 | "third_party:pdfium_base", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 150 | ] |
| 151 | |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 152 | public_deps = [ |
| 153 | ":fxcrt", |
| 154 | ] |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 155 | if (pdf_enable_xfa) { |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 156 | sources += [ |
| 157 | "fpdfsdk/cpdfsdk_xfawidget.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 158 | "fpdfsdk/cpdfsdk_xfawidget.h", |
jaepark | 8c54182 | 2016-08-30 13:43:05 -0700 | [diff] [blame] | 159 | "fpdfsdk/cpdfsdk_xfawidgethandler.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 160 | "fpdfsdk/cpdfsdk_xfawidgethandler.h", |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 161 | ] |
| 162 | |
Tom Sepez | b545159 | 2016-02-22 16:48:02 -0800 | [diff] [blame] | 163 | deps += [ ":fpdfxfa" ] |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 164 | } |
| 165 | |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 166 | if (is_win) { |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 167 | libs += [ |
| 168 | "advapi32.lib", |
| 169 | "gdi32.lib", |
| 170 | "user32.lib", |
| 171 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | if (is_mac) { |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 175 | libs += [ |
| 176 | "AppKit.framework", |
| 177 | "CoreFoundation.framework", |
| 178 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 179 | } |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 180 | |
Tom Sepez | 0dfd030 | 2015-10-12 15:38:22 -0700 | [diff] [blame] | 181 | if (pdfium_bundle_freetype) { |
| 182 | deps += [ "third_party:fx_freetype" ] |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 183 | } else { |
| 184 | libs += [ "freetype" ] |
| 185 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 186 | } |
| 187 | |
brettw | e283e47 | 2016-07-21 09:38:22 -0700 | [diff] [blame] | 188 | static_library("test_support") { |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 189 | testonly = true |
| 190 | sources = [ |
| 191 | "testing/fx_string_testhelpers.cpp", |
| 192 | "testing/fx_string_testhelpers.h", |
| 193 | "testing/test_support.cpp", |
| 194 | "testing/test_support.h", |
Oliver Chang | d46f1c8 | 2015-11-12 22:03:10 -0800 | [diff] [blame] | 195 | "testing/utils/path_service.cpp", |
thestig | bcd3e53 | 2016-11-21 13:37:28 -0800 | [diff] [blame] | 196 | "testing/utils/path_service.h", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 197 | ] |
| 198 | deps = [ |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 199 | ":pdfium", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 200 | "//testing/gmock", |
| 201 | "//testing/gtest", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 202 | ] |
Lei Zhang | 8241df7 | 2015-11-06 14:38:48 -0800 | [diff] [blame] | 203 | include_dirs = [] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 204 | if (pdf_enable_v8) { |
| 205 | deps += [ |
| 206 | "//v8", |
| 207 | "//v8:v8_libplatform", |
| 208 | ] |
| 209 | include_dirs += [ |
| 210 | "//v8", |
| 211 | "//v8/include", |
| 212 | ] |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 213 | configs += [ "//v8:external_startup_data" ] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 214 | } |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 215 | configs += [ ":pdfium_core_config" ] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | # Targets below this are only visible within this file (and to the |
| 219 | # top-level gn_visibility target used to help gn_all build everything). |
| 220 | visibility = [ |
| 221 | ":*", |
| 222 | "//:gn_visibility", |
| 223 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 224 | |
| 225 | static_library("fdrm") { |
| 226 | sources = [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 227 | "core/fdrm/crypto/fx_crypt.cpp", |
dsinclair | b1469a2 | 2016-09-29 10:00:05 -0700 | [diff] [blame] | 228 | "core/fdrm/crypto/fx_crypt.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 229 | "core/fdrm/crypto/fx_crypt_aes.cpp", |
| 230 | "core/fdrm/crypto/fx_crypt_sha.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 231 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 232 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 233 | deps = [ |
| 234 | ":fxcrt", |
| 235 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | static_library("fpdfdoc") { |
| 239 | sources = [ |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 240 | "core/fpdfdoc/cline.cpp", |
| 241 | "core/fpdfdoc/cline.h", |
weili | f4bb580 | 2016-06-14 17:21:14 -0700 | [diff] [blame] | 242 | "core/fpdfdoc/clines.cpp", |
| 243 | "core/fpdfdoc/clines.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 244 | "core/fpdfdoc/cpdf_aaction.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 245 | "core/fpdfdoc/cpdf_aaction.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 246 | "core/fpdfdoc/cpdf_action.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 247 | "core/fpdfdoc/cpdf_action.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 248 | "core/fpdfdoc/cpdf_actionfields.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 249 | "core/fpdfdoc/cpdf_actionfields.h", |
jaepark | 3b6c7e9 | 2016-07-20 14:18:04 -0700 | [diff] [blame] | 250 | "core/fpdfdoc/cpdf_annot.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 251 | "core/fpdfdoc/cpdf_annot.h", |
jaepark | 3b6c7e9 | 2016-07-20 14:18:04 -0700 | [diff] [blame] | 252 | "core/fpdfdoc/cpdf_annotlist.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 253 | "core/fpdfdoc/cpdf_annotlist.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 254 | "core/fpdfdoc/cpdf_apsettings.cpp", |
dsinclair | cac704d | 2016-07-28 12:59:09 -0700 | [diff] [blame] | 255 | "core/fpdfdoc/cpdf_apsettings.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 256 | "core/fpdfdoc/cpdf_bookmark.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 257 | "core/fpdfdoc/cpdf_bookmark.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 258 | "core/fpdfdoc/cpdf_bookmarktree.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 259 | "core/fpdfdoc/cpdf_bookmarktree.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 260 | "core/fpdfdoc/cpdf_defaultappearance.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 261 | "core/fpdfdoc/cpdf_defaultappearance.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 262 | "core/fpdfdoc/cpdf_dest.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 263 | "core/fpdfdoc/cpdf_dest.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 264 | "core/fpdfdoc/cpdf_docjsactions.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 265 | "core/fpdfdoc/cpdf_docjsactions.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 266 | "core/fpdfdoc/cpdf_filespec.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 267 | "core/fpdfdoc/cpdf_filespec.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 268 | "core/fpdfdoc/cpdf_formcontrol.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 269 | "core/fpdfdoc/cpdf_formcontrol.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 270 | "core/fpdfdoc/cpdf_formfield.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 271 | "core/fpdfdoc/cpdf_formfield.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 272 | "core/fpdfdoc/cpdf_iconfit.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 273 | "core/fpdfdoc/cpdf_iconfit.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 274 | "core/fpdfdoc/cpdf_interform.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 275 | "core/fpdfdoc/cpdf_interform.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 276 | "core/fpdfdoc/cpdf_link.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 277 | "core/fpdfdoc/cpdf_link.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 278 | "core/fpdfdoc/cpdf_linklist.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 279 | "core/fpdfdoc/cpdf_linklist.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 280 | "core/fpdfdoc/cpdf_metadata.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 281 | "core/fpdfdoc/cpdf_metadata.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 282 | "core/fpdfdoc/cpdf_nametree.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 283 | "core/fpdfdoc/cpdf_nametree.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 284 | "core/fpdfdoc/cpdf_numbertree.cpp", |
| 285 | "core/fpdfdoc/cpdf_numbertree.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 286 | "core/fpdfdoc/cpdf_occontext.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 287 | "core/fpdfdoc/cpdf_occontext.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 288 | "core/fpdfdoc/cpdf_pagelabel.cpp", |
dsinclair | cac704d | 2016-07-28 12:59:09 -0700 | [diff] [blame] | 289 | "core/fpdfdoc/cpdf_pagelabel.h", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 290 | "core/fpdfdoc/cpdf_variabletext.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 291 | "core/fpdfdoc/cpdf_variabletext.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 292 | "core/fpdfdoc/cpdf_viewerpreferences.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 293 | "core/fpdfdoc/cpdf_viewerpreferences.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 294 | "core/fpdfdoc/cpvt_arraytemplate.h", |
dsinclair | 777b333 | 2016-03-31 20:03:08 -0700 | [diff] [blame] | 295 | "core/fpdfdoc/cpvt_color.cpp", |
| 296 | "core/fpdfdoc/cpvt_color.h", |
| 297 | "core/fpdfdoc/cpvt_dash.h", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 298 | "core/fpdfdoc/cpvt_floatrect.h", |
dsinclair | 777b333 | 2016-03-31 20:03:08 -0700 | [diff] [blame] | 299 | "core/fpdfdoc/cpvt_fontmap.cpp", |
| 300 | "core/fpdfdoc/cpvt_fontmap.h", |
| 301 | "core/fpdfdoc/cpvt_generateap.cpp", |
| 302 | "core/fpdfdoc/cpvt_generateap.h", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 303 | "core/fpdfdoc/cpvt_line.h", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 304 | "core/fpdfdoc/cpvt_lineinfo.h", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 305 | "core/fpdfdoc/cpvt_secprops.h", |
| 306 | "core/fpdfdoc/cpvt_section.h", |
weili | 5a6c139 | 2016-07-11 14:43:40 -0700 | [diff] [blame] | 307 | "core/fpdfdoc/cpvt_sectioninfo.cpp", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 308 | "core/fpdfdoc/cpvt_sectioninfo.h", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 309 | "core/fpdfdoc/cpvt_word.h", |
weili | 5a6c139 | 2016-07-11 14:43:40 -0700 | [diff] [blame] | 310 | "core/fpdfdoc/cpvt_wordinfo.cpp", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 311 | "core/fpdfdoc/cpvt_wordinfo.h", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 312 | "core/fpdfdoc/cpvt_wordplace.h", |
| 313 | "core/fpdfdoc/cpvt_wordprops.h", |
| 314 | "core/fpdfdoc/cpvt_wordrange.h", |
thestig | 9c845c3 | 2016-05-13 11:08:41 -0700 | [diff] [blame] | 315 | "core/fpdfdoc/csection.cpp", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 316 | "core/fpdfdoc/csection.h", |
thestig | 9c845c3 | 2016-05-13 11:08:41 -0700 | [diff] [blame] | 317 | "core/fpdfdoc/ctypeset.cpp", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 318 | "core/fpdfdoc/ctypeset.h", |
npm | 0c2d0a5 | 2016-08-26 11:32:09 -0700 | [diff] [blame] | 319 | "core/fpdfdoc/doc_tagged.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 320 | "core/fpdfdoc/fpdf_tagged.h", |
| 321 | "core/fpdfdoc/ipdf_formnotify.h", |
| 322 | "core/fpdfdoc/ipvt_fontmap.h", |
npm | 0c2d0a5 | 2016-08-26 11:32:09 -0700 | [diff] [blame] | 323 | "core/fpdfdoc/tagged_int.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 324 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 325 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 326 | deps = [ |
| 327 | ":fxcrt", |
| 328 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 329 | } |
| 330 | |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 331 | static_library("fpdfapi") { |
| 332 | sources = [ |
dsinclair | a6c9215 | 2016-10-04 10:58:54 -0700 | [diff] [blame] | 333 | "core/fpdfapi/cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp", |
| 334 | "core/fpdfapi/cmaps/CNS1/B5pc-H_0.cpp", |
| 335 | "core/fpdfapi/cmaps/CNS1/B5pc-V_0.cpp", |
| 336 | "core/fpdfapi/cmaps/CNS1/CNS-EUC-H_0.cpp", |
| 337 | "core/fpdfapi/cmaps/CNS1/CNS-EUC-V_0.cpp", |
| 338 | "core/fpdfapi/cmaps/CNS1/ETen-B5-H_0.cpp", |
| 339 | "core/fpdfapi/cmaps/CNS1/ETen-B5-V_0.cpp", |
| 340 | "core/fpdfapi/cmaps/CNS1/ETenms-B5-H_0.cpp", |
| 341 | "core/fpdfapi/cmaps/CNS1/ETenms-B5-V_0.cpp", |
| 342 | "core/fpdfapi/cmaps/CNS1/HKscs-B5-H_5.cpp", |
| 343 | "core/fpdfapi/cmaps/CNS1/HKscs-B5-V_5.cpp", |
| 344 | "core/fpdfapi/cmaps/CNS1/UniCNS-UCS2-H_3.cpp", |
| 345 | "core/fpdfapi/cmaps/CNS1/UniCNS-UCS2-V_3.cpp", |
| 346 | "core/fpdfapi/cmaps/CNS1/UniCNS-UTF16-H_0.cpp", |
| 347 | "core/fpdfapi/cmaps/CNS1/cmaps_cns1.cpp", |
| 348 | "core/fpdfapi/cmaps/GB1/Adobe-GB1-UCS2_5.cpp", |
| 349 | "core/fpdfapi/cmaps/GB1/GB-EUC-H_0.cpp", |
| 350 | "core/fpdfapi/cmaps/GB1/GB-EUC-V_0.cpp", |
| 351 | "core/fpdfapi/cmaps/GB1/GBK-EUC-H_2.cpp", |
| 352 | "core/fpdfapi/cmaps/GB1/GBK-EUC-V_2.cpp", |
| 353 | "core/fpdfapi/cmaps/GB1/GBK2K-H_5.cpp", |
| 354 | "core/fpdfapi/cmaps/GB1/GBK2K-V_5.cpp", |
| 355 | "core/fpdfapi/cmaps/GB1/GBKp-EUC-H_2.cpp", |
| 356 | "core/fpdfapi/cmaps/GB1/GBKp-EUC-V_2.cpp", |
| 357 | "core/fpdfapi/cmaps/GB1/GBpc-EUC-H_0.cpp", |
| 358 | "core/fpdfapi/cmaps/GB1/GBpc-EUC-V_0.cpp", |
| 359 | "core/fpdfapi/cmaps/GB1/UniGB-UCS2-H_4.cpp", |
| 360 | "core/fpdfapi/cmaps/GB1/UniGB-UCS2-V_4.cpp", |
| 361 | "core/fpdfapi/cmaps/GB1/cmaps_gb1.cpp", |
| 362 | "core/fpdfapi/cmaps/Japan1/83pv-RKSJ-H_1.cpp", |
| 363 | "core/fpdfapi/cmaps/Japan1/90ms-RKSJ-H_2.cpp", |
| 364 | "core/fpdfapi/cmaps/Japan1/90ms-RKSJ-V_2.cpp", |
| 365 | "core/fpdfapi/cmaps/Japan1/90msp-RKSJ-H_2.cpp", |
| 366 | "core/fpdfapi/cmaps/Japan1/90msp-RKSJ-V_2.cpp", |
| 367 | "core/fpdfapi/cmaps/Japan1/90pv-RKSJ-H_1.cpp", |
| 368 | "core/fpdfapi/cmaps/Japan1/Add-RKSJ-H_1.cpp", |
| 369 | "core/fpdfapi/cmaps/Japan1/Add-RKSJ-V_1.cpp", |
| 370 | "core/fpdfapi/cmaps/Japan1/Adobe-Japan1-UCS2_4.cpp", |
| 371 | "core/fpdfapi/cmaps/Japan1/EUC-H_1.cpp", |
| 372 | "core/fpdfapi/cmaps/Japan1/EUC-V_1.cpp", |
| 373 | "core/fpdfapi/cmaps/Japan1/Ext-RKSJ-H_2.cpp", |
| 374 | "core/fpdfapi/cmaps/Japan1/Ext-RKSJ-V_2.cpp", |
| 375 | "core/fpdfapi/cmaps/Japan1/H_1.cpp", |
| 376 | "core/fpdfapi/cmaps/Japan1/UniJIS-UCS2-HW-H_4.cpp", |
| 377 | "core/fpdfapi/cmaps/Japan1/UniJIS-UCS2-HW-V_4.cpp", |
| 378 | "core/fpdfapi/cmaps/Japan1/UniJIS-UCS2-H_4.cpp", |
| 379 | "core/fpdfapi/cmaps/Japan1/UniJIS-UCS2-V_4.cpp", |
| 380 | "core/fpdfapi/cmaps/Japan1/V_1.cpp", |
| 381 | "core/fpdfapi/cmaps/Japan1/cmaps_japan1.cpp", |
| 382 | "core/fpdfapi/cmaps/Korea1/Adobe-Korea1-UCS2_2.cpp", |
| 383 | "core/fpdfapi/cmaps/Korea1/KSC-EUC-H_0.cpp", |
| 384 | "core/fpdfapi/cmaps/Korea1/KSC-EUC-V_0.cpp", |
| 385 | "core/fpdfapi/cmaps/Korea1/KSCms-UHC-HW-H_1.cpp", |
| 386 | "core/fpdfapi/cmaps/Korea1/KSCms-UHC-HW-V_1.cpp", |
| 387 | "core/fpdfapi/cmaps/Korea1/KSCms-UHC-H_1.cpp", |
| 388 | "core/fpdfapi/cmaps/Korea1/KSCms-UHC-V_1.cpp", |
| 389 | "core/fpdfapi/cmaps/Korea1/KSCpc-EUC-H_0.cpp", |
| 390 | "core/fpdfapi/cmaps/Korea1/UniKS-UCS2-H_1.cpp", |
| 391 | "core/fpdfapi/cmaps/Korea1/UniKS-UCS2-V_1.cpp", |
| 392 | "core/fpdfapi/cmaps/Korea1/UniKS-UTF16-H_0.cpp", |
| 393 | "core/fpdfapi/cmaps/Korea1/cmaps_korea1.cpp", |
| 394 | "core/fpdfapi/cmaps/cmap_int.h", |
| 395 | "core/fpdfapi/cmaps/fpdf_cmaps.cpp", |
tsepez | ddffb57 | 2016-05-24 16:20:29 -0700 | [diff] [blame] | 396 | "core/fpdfapi/cpdf_modulemgr.cpp", |
dsinclair | 39c62fd | 2016-09-29 12:49:17 -0700 | [diff] [blame] | 397 | "core/fpdfapi/cpdf_modulemgr.h", |
weili | 9f515bc | 2016-07-24 08:08:24 -0700 | [diff] [blame] | 398 | "core/fpdfapi/cpdf_pagerendercontext.cpp", |
dsinclair | 39c62fd | 2016-09-29 12:49:17 -0700 | [diff] [blame] | 399 | "core/fpdfapi/cpdf_pagerendercontext.h", |
dsinclair | 2415435 | 2016-10-04 11:01:48 -0700 | [diff] [blame] | 400 | "core/fpdfapi/edit/cpdf_creator.h", |
| 401 | "core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp", |
| 402 | "core/fpdfapi/edit/cpdf_pagecontentgenerator.h", |
| 403 | "core/fpdfapi/edit/editint.h", |
| 404 | "core/fpdfapi/edit/fpdf_edit_create.cpp", |
dsinclair | bc5e6d2 | 2016-10-04 11:08:49 -0700 | [diff] [blame] | 405 | "core/fpdfapi/font/cpdf_cidfont.cpp", |
| 406 | "core/fpdfapi/font/cpdf_cidfont.h", |
| 407 | "core/fpdfapi/font/cpdf_font.cpp", |
| 408 | "core/fpdfapi/font/cpdf_font.h", |
| 409 | "core/fpdfapi/font/cpdf_fontencoding.cpp", |
| 410 | "core/fpdfapi/font/cpdf_fontencoding.h", |
| 411 | "core/fpdfapi/font/cpdf_simplefont.cpp", |
| 412 | "core/fpdfapi/font/cpdf_simplefont.h", |
| 413 | "core/fpdfapi/font/cpdf_truetypefont.cpp", |
| 414 | "core/fpdfapi/font/cpdf_truetypefont.h", |
| 415 | "core/fpdfapi/font/cpdf_type1font.cpp", |
| 416 | "core/fpdfapi/font/cpdf_type1font.h", |
| 417 | "core/fpdfapi/font/cpdf_type3char.cpp", |
| 418 | "core/fpdfapi/font/cpdf_type3char.h", |
| 419 | "core/fpdfapi/font/cpdf_type3font.cpp", |
| 420 | "core/fpdfapi/font/cpdf_type3font.h", |
| 421 | "core/fpdfapi/font/font_int.h", |
| 422 | "core/fpdfapi/font/fpdf_font.cpp", |
| 423 | "core/fpdfapi/font/fpdf_font_cid.cpp", |
| 424 | "core/fpdfapi/font/ttgsubtable.cpp", |
| 425 | "core/fpdfapi/font/ttgsubtable.h", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 426 | "core/fpdfapi/page/cpdf_allstates.cpp", |
| 427 | "core/fpdfapi/page/cpdf_allstates.h", |
| 428 | "core/fpdfapi/page/cpdf_clippath.cpp", |
| 429 | "core/fpdfapi/page/cpdf_clippath.h", |
| 430 | "core/fpdfapi/page/cpdf_color.cpp", |
| 431 | "core/fpdfapi/page/cpdf_color.h", |
| 432 | "core/fpdfapi/page/cpdf_colorspace.cpp", |
| 433 | "core/fpdfapi/page/cpdf_colorspace.h", |
| 434 | "core/fpdfapi/page/cpdf_colorstate.cpp", |
| 435 | "core/fpdfapi/page/cpdf_colorstate.h", |
| 436 | "core/fpdfapi/page/cpdf_contentmark.cpp", |
| 437 | "core/fpdfapi/page/cpdf_contentmark.h", |
| 438 | "core/fpdfapi/page/cpdf_contentmarkitem.cpp", |
| 439 | "core/fpdfapi/page/cpdf_contentmarkitem.h", |
npm | 014b012 | 2016-11-07 08:42:11 -0800 | [diff] [blame] | 440 | "core/fpdfapi/page/cpdf_contentparser.cpp", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 441 | "core/fpdfapi/page/cpdf_countedobject.h", |
tsepez | 9fa95ef | 2016-10-11 12:29:38 -0700 | [diff] [blame] | 442 | "core/fpdfapi/page/cpdf_docpagedata.cpp", |
| 443 | "core/fpdfapi/page/cpdf_docpagedata.h", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 444 | "core/fpdfapi/page/cpdf_form.cpp", |
| 445 | "core/fpdfapi/page/cpdf_form.h", |
| 446 | "core/fpdfapi/page/cpdf_formobject.cpp", |
| 447 | "core/fpdfapi/page/cpdf_formobject.h", |
| 448 | "core/fpdfapi/page/cpdf_generalstate.cpp", |
| 449 | "core/fpdfapi/page/cpdf_generalstate.h", |
| 450 | "core/fpdfapi/page/cpdf_graphicstates.cpp", |
| 451 | "core/fpdfapi/page/cpdf_graphicstates.h", |
| 452 | "core/fpdfapi/page/cpdf_image.cpp", |
| 453 | "core/fpdfapi/page/cpdf_image.h", |
| 454 | "core/fpdfapi/page/cpdf_imageobject.cpp", |
| 455 | "core/fpdfapi/page/cpdf_imageobject.h", |
| 456 | "core/fpdfapi/page/cpdf_meshstream.cpp", |
| 457 | "core/fpdfapi/page/cpdf_meshstream.h", |
| 458 | "core/fpdfapi/page/cpdf_page.cpp", |
| 459 | "core/fpdfapi/page/cpdf_page.h", |
| 460 | "core/fpdfapi/page/cpdf_pagemodule.cpp", |
| 461 | "core/fpdfapi/page/cpdf_pagemodule.h", |
| 462 | "core/fpdfapi/page/cpdf_pageobject.cpp", |
| 463 | "core/fpdfapi/page/cpdf_pageobject.h", |
| 464 | "core/fpdfapi/page/cpdf_pageobjectholder.cpp", |
| 465 | "core/fpdfapi/page/cpdf_pageobjectholder.h", |
| 466 | "core/fpdfapi/page/cpdf_pageobjectlist.cpp", |
| 467 | "core/fpdfapi/page/cpdf_pageobjectlist.h", |
| 468 | "core/fpdfapi/page/cpdf_path.cpp", |
| 469 | "core/fpdfapi/page/cpdf_path.h", |
| 470 | "core/fpdfapi/page/cpdf_pathobject.cpp", |
| 471 | "core/fpdfapi/page/cpdf_pathobject.h", |
| 472 | "core/fpdfapi/page/cpdf_pattern.cpp", |
| 473 | "core/fpdfapi/page/cpdf_pattern.h", |
| 474 | "core/fpdfapi/page/cpdf_shadingobject.cpp", |
| 475 | "core/fpdfapi/page/cpdf_shadingobject.h", |
| 476 | "core/fpdfapi/page/cpdf_shadingpattern.cpp", |
| 477 | "core/fpdfapi/page/cpdf_shadingpattern.h", |
tsepez | 271d9c0 | 2016-10-13 11:29:04 -0700 | [diff] [blame] | 478 | "core/fpdfapi/page/cpdf_streamcontentparser.cpp", |
| 479 | "core/fpdfapi/page/cpdf_streamcontentparser.h", |
npm | 014b012 | 2016-11-07 08:42:11 -0800 | [diff] [blame] | 480 | "core/fpdfapi/page/cpdf_streamparser.cpp", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 481 | "core/fpdfapi/page/cpdf_textobject.cpp", |
| 482 | "core/fpdfapi/page/cpdf_textobject.h", |
| 483 | "core/fpdfapi/page/cpdf_textstate.cpp", |
| 484 | "core/fpdfapi/page/cpdf_textstate.h", |
| 485 | "core/fpdfapi/page/cpdf_tilingpattern.cpp", |
| 486 | "core/fpdfapi/page/cpdf_tilingpattern.h", |
| 487 | "core/fpdfapi/page/fpdf_page_colors.cpp", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 488 | "core/fpdfapi/page/fpdf_page_func.cpp", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 489 | "core/fpdfapi/page/pageint.h", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 490 | "core/fpdfapi/parser/cfdf_document.cpp", |
| 491 | "core/fpdfapi/parser/cfdf_document.h", |
| 492 | "core/fpdfapi/parser/cpdf_array.cpp", |
| 493 | "core/fpdfapi/parser/cpdf_array.h", |
| 494 | "core/fpdfapi/parser/cpdf_boolean.cpp", |
| 495 | "core/fpdfapi/parser/cpdf_boolean.h", |
| 496 | "core/fpdfapi/parser/cpdf_crypto_handler.cpp", |
| 497 | "core/fpdfapi/parser/cpdf_crypto_handler.h", |
| 498 | "core/fpdfapi/parser/cpdf_data_avail.cpp", |
| 499 | "core/fpdfapi/parser/cpdf_data_avail.h", |
| 500 | "core/fpdfapi/parser/cpdf_dictionary.cpp", |
| 501 | "core/fpdfapi/parser/cpdf_dictionary.h", |
| 502 | "core/fpdfapi/parser/cpdf_document.cpp", |
| 503 | "core/fpdfapi/parser/cpdf_document.h", |
| 504 | "core/fpdfapi/parser/cpdf_hint_tables.cpp", |
| 505 | "core/fpdfapi/parser/cpdf_hint_tables.h", |
| 506 | "core/fpdfapi/parser/cpdf_indirect_object_holder.cpp", |
| 507 | "core/fpdfapi/parser/cpdf_indirect_object_holder.h", |
tsepez | c09625c | 2016-11-07 11:46:09 -0800 | [diff] [blame] | 508 | "core/fpdfapi/parser/cpdf_linearized_header.cpp", |
| 509 | "core/fpdfapi/parser/cpdf_linearized_header.h", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 510 | "core/fpdfapi/parser/cpdf_name.cpp", |
| 511 | "core/fpdfapi/parser/cpdf_name.h", |
| 512 | "core/fpdfapi/parser/cpdf_null.cpp", |
| 513 | "core/fpdfapi/parser/cpdf_null.h", |
| 514 | "core/fpdfapi/parser/cpdf_number.cpp", |
| 515 | "core/fpdfapi/parser/cpdf_number.h", |
| 516 | "core/fpdfapi/parser/cpdf_object.cpp", |
| 517 | "core/fpdfapi/parser/cpdf_object.h", |
| 518 | "core/fpdfapi/parser/cpdf_parser.cpp", |
| 519 | "core/fpdfapi/parser/cpdf_parser.h", |
| 520 | "core/fpdfapi/parser/cpdf_reference.cpp", |
| 521 | "core/fpdfapi/parser/cpdf_reference.h", |
| 522 | "core/fpdfapi/parser/cpdf_security_handler.cpp", |
| 523 | "core/fpdfapi/parser/cpdf_security_handler.h", |
| 524 | "core/fpdfapi/parser/cpdf_simple_parser.cpp", |
| 525 | "core/fpdfapi/parser/cpdf_simple_parser.h", |
| 526 | "core/fpdfapi/parser/cpdf_stream.cpp", |
| 527 | "core/fpdfapi/parser/cpdf_stream.h", |
| 528 | "core/fpdfapi/parser/cpdf_stream_acc.cpp", |
| 529 | "core/fpdfapi/parser/cpdf_stream_acc.h", |
| 530 | "core/fpdfapi/parser/cpdf_string.cpp", |
| 531 | "core/fpdfapi/parser/cpdf_string.h", |
| 532 | "core/fpdfapi/parser/cpdf_syntax_parser.cpp", |
| 533 | "core/fpdfapi/parser/cpdf_syntax_parser.h", |
| 534 | "core/fpdfapi/parser/fpdf_parser_decode.cpp", |
| 535 | "core/fpdfapi/parser/fpdf_parser_decode.h", |
| 536 | "core/fpdfapi/parser/fpdf_parser_utility.cpp", |
| 537 | "core/fpdfapi/parser/fpdf_parser_utility.h", |
npm | 483f3c4 | 2016-11-17 13:50:44 -0800 | [diff] [blame] | 538 | "core/fpdfapi/render/cpdf_charposlist.cpp", |
| 539 | "core/fpdfapi/render/cpdf_charposlist.h", |
npm | 935c631 | 2016-11-17 10:47:43 -0800 | [diff] [blame] | 540 | "core/fpdfapi/render/cpdf_docrenderdata.cpp", |
| 541 | "core/fpdfapi/render/cpdf_docrenderdata.h", |
npm | ca5300a | 2016-11-21 07:28:42 -0800 | [diff] [blame] | 542 | "core/fpdfapi/render/cpdf_imageloader.cpp", |
| 543 | "core/fpdfapi/render/cpdf_imageloader.h", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 544 | "core/fpdfapi/render/cpdf_pagerendercache.h", |
| 545 | "core/fpdfapi/render/cpdf_progressiverenderer.h", |
| 546 | "core/fpdfapi/render/cpdf_rendercontext.h", |
| 547 | "core/fpdfapi/render/cpdf_renderoptions.h", |
npm | 483f3c4 | 2016-11-17 13:50:44 -0800 | [diff] [blame] | 548 | "core/fpdfapi/render/cpdf_renderstatus.cpp", |
| 549 | "core/fpdfapi/render/cpdf_renderstatus.h", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 550 | "core/fpdfapi/render/cpdf_textrenderer.h", |
npm | ca5300a | 2016-11-21 07:28:42 -0800 | [diff] [blame] | 551 | "core/fpdfapi/render/cpdf_transferfunc.cpp", |
| 552 | "core/fpdfapi/render/cpdf_transferfunc.h", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 553 | "core/fpdfapi/render/cpdf_type3cache.cpp", |
| 554 | "core/fpdfapi/render/cpdf_type3cache.h", |
| 555 | "core/fpdfapi/render/cpdf_type3glyphs.cpp", |
| 556 | "core/fpdfapi/render/cpdf_type3glyphs.h", |
| 557 | "core/fpdfapi/render/fpdf_render.cpp", |
| 558 | "core/fpdfapi/render/fpdf_render_cache.cpp", |
| 559 | "core/fpdfapi/render/fpdf_render_image.cpp", |
| 560 | "core/fpdfapi/render/fpdf_render_loadimage.cpp", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 561 | "core/fpdfapi/render/fpdf_render_text.cpp", |
| 562 | "core/fpdfapi/render/render_int.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 563 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 564 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 565 | deps = [ |
| 566 | ":fxcrt", |
| 567 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | static_library("fpdftext") { |
| 571 | sources = [ |
npm | 2d396ac | 2016-08-26 10:00:25 -0700 | [diff] [blame] | 572 | "core/fpdftext/cpdf_linkextract.cpp", |
dsinclair | e030786 | 2016-09-29 13:25:38 -0700 | [diff] [blame] | 573 | "core/fpdftext/cpdf_linkextract.h", |
npm | 2d396ac | 2016-08-26 10:00:25 -0700 | [diff] [blame] | 574 | "core/fpdftext/cpdf_textpage.cpp", |
dsinclair | e030786 | 2016-09-29 13:25:38 -0700 | [diff] [blame] | 575 | "core/fpdftext/cpdf_textpage.h", |
npm | 2d396ac | 2016-08-26 10:00:25 -0700 | [diff] [blame] | 576 | "core/fpdftext/cpdf_textpagefind.cpp", |
dsinclair | e030786 | 2016-09-29 13:25:38 -0700 | [diff] [blame] | 577 | "core/fpdftext/cpdf_textpagefind.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 578 | "core/fpdftext/unicodenormalizationdata.cpp", |
| 579 | "core/fpdftext/unicodenormalizationdata.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 580 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 581 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 582 | deps = [ |
| 583 | ":fxcrt", |
| 584 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | static_library("fxcodec") { |
| 588 | sources = [ |
dsinclair | 8a4e286 | 2016-09-29 13:43:30 -0700 | [diff] [blame] | 589 | "core/fxcodec/JBig2_DocumentContext.h", |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 590 | "core/fxcodec/codec/ccodec_basicmodule.h", |
| 591 | "core/fxcodec/codec/ccodec_faxmodule.h", |
| 592 | "core/fxcodec/codec/ccodec_flatemodule.h", |
| 593 | "core/fxcodec/codec/ccodec_iccmodule.h", |
| 594 | "core/fxcodec/codec/ccodec_jbig2module.h", |
| 595 | "core/fxcodec/codec/ccodec_jpegmodule.h", |
| 596 | "core/fxcodec/codec/ccodec_jpxmodule.h", |
| 597 | "core/fxcodec/codec/ccodec_scanlinedecoder.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 598 | "core/fxcodec/codec/codec_int.h", |
| 599 | "core/fxcodec/codec/fx_codec.cpp", |
| 600 | "core/fxcodec/codec/fx_codec_fax.cpp", |
| 601 | "core/fxcodec/codec/fx_codec_flate.cpp", |
| 602 | "core/fxcodec/codec/fx_codec_icc.cpp", |
| 603 | "core/fxcodec/codec/fx_codec_jbig.cpp", |
| 604 | "core/fxcodec/codec/fx_codec_jpeg.cpp", |
| 605 | "core/fxcodec/codec/fx_codec_jpx_opj.cpp", |
dsinclair | 8a4e286 | 2016-09-29 13:43:30 -0700 | [diff] [blame] | 606 | "core/fxcodec/fx_codec.h", |
| 607 | "core/fxcodec/fx_codec_def.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 608 | "core/fxcodec/jbig2/JBig2_ArithDecoder.cpp", |
| 609 | "core/fxcodec/jbig2/JBig2_ArithDecoder.h", |
| 610 | "core/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
| 611 | "core/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| 612 | "core/fxcodec/jbig2/JBig2_BitStream.cpp", |
| 613 | "core/fxcodec/jbig2/JBig2_BitStream.h", |
| 614 | "core/fxcodec/jbig2/JBig2_Context.cpp", |
| 615 | "core/fxcodec/jbig2/JBig2_Context.h", |
| 616 | "core/fxcodec/jbig2/JBig2_Define.h", |
| 617 | "core/fxcodec/jbig2/JBig2_GrdProc.cpp", |
| 618 | "core/fxcodec/jbig2/JBig2_GrdProc.h", |
| 619 | "core/fxcodec/jbig2/JBig2_GrrdProc.cpp", |
| 620 | "core/fxcodec/jbig2/JBig2_GrrdProc.h", |
| 621 | "core/fxcodec/jbig2/JBig2_GsidProc.cpp", |
| 622 | "core/fxcodec/jbig2/JBig2_GsidProc.h", |
| 623 | "core/fxcodec/jbig2/JBig2_HtrdProc.cpp", |
| 624 | "core/fxcodec/jbig2/JBig2_HtrdProc.h", |
| 625 | "core/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp", |
| 626 | "core/fxcodec/jbig2/JBig2_HuffmanDecoder.h", |
| 627 | "core/fxcodec/jbig2/JBig2_HuffmanTable.cpp", |
| 628 | "core/fxcodec/jbig2/JBig2_HuffmanTable.h", |
Tom Sepez | 4161c5c | 2016-03-21 12:26:54 -0700 | [diff] [blame] | 629 | "core/fxcodec/jbig2/JBig2_HuffmanTable_Standard.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 630 | "core/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h", |
| 631 | "core/fxcodec/jbig2/JBig2_Image.cpp", |
| 632 | "core/fxcodec/jbig2/JBig2_Image.h", |
| 633 | "core/fxcodec/jbig2/JBig2_List.h", |
| 634 | "core/fxcodec/jbig2/JBig2_Page.h", |
| 635 | "core/fxcodec/jbig2/JBig2_PatternDict.cpp", |
| 636 | "core/fxcodec/jbig2/JBig2_PatternDict.h", |
| 637 | "core/fxcodec/jbig2/JBig2_PddProc.cpp", |
| 638 | "core/fxcodec/jbig2/JBig2_PddProc.h", |
| 639 | "core/fxcodec/jbig2/JBig2_SddProc.cpp", |
| 640 | "core/fxcodec/jbig2/JBig2_SddProc.h", |
| 641 | "core/fxcodec/jbig2/JBig2_Segment.cpp", |
| 642 | "core/fxcodec/jbig2/JBig2_Segment.h", |
| 643 | "core/fxcodec/jbig2/JBig2_SymbolDict.cpp", |
| 644 | "core/fxcodec/jbig2/JBig2_SymbolDict.h", |
| 645 | "core/fxcodec/jbig2/JBig2_TrdProc.cpp", |
| 646 | "core/fxcodec/jbig2/JBig2_TrdProc.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 647 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 648 | configs += [ ":pdfium_core_config" ] |
Lei Zhang | 8241df7 | 2015-11-06 14:38:48 -0800 | [diff] [blame] | 649 | include_dirs = [] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 650 | deps = [ |
| 651 | ":fxcrt", |
| 652 | "third_party:fx_lcms2", |
| 653 | "third_party:fx_libopenjpeg", |
| 654 | "third_party:fx_zlib", |
| 655 | |
| 656 | # This is a generic JPEG library dependency. |
| 657 | "//third_party:jpeg", |
| 658 | ] |
| 659 | |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 660 | if (pdf_enable_xfa) { |
| 661 | sources += [ |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 662 | "core/fxcodec/codec/ccodec_bmpmodule.h", |
| 663 | "core/fxcodec/codec/ccodec_gifmodule.h", |
| 664 | "core/fxcodec/codec/ccodec_pngmodule.h", |
dsinclair | 8a4e286 | 2016-09-29 13:43:30 -0700 | [diff] [blame] | 665 | "core/fxcodec/codec/ccodec_progressivedecoder.h", |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 666 | "core/fxcodec/codec/ccodec_tiffmodule.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 667 | "core/fxcodec/codec/fx_codec_bmp.cpp", |
| 668 | "core/fxcodec/codec/fx_codec_gif.cpp", |
| 669 | "core/fxcodec/codec/fx_codec_png.cpp", |
| 670 | "core/fxcodec/codec/fx_codec_progress.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 671 | "core/fxcodec/codec/fx_codec_tiff.cpp", |
| 672 | "core/fxcodec/lbmp/fx_bmp.cpp", |
| 673 | "core/fxcodec/lbmp/fx_bmp.h", |
| 674 | "core/fxcodec/lgif/fx_gif.cpp", |
| 675 | "core/fxcodec/lgif/fx_gif.h", |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 676 | ] |
| 677 | deps += [ |
| 678 | "third_party:fx_lpng", |
| 679 | "third_party:fx_tiff", |
| 680 | ] |
| 681 | } |
John Abd-El-Malek | def5c7d | 2014-06-09 16:07:18 -0700 | [diff] [blame] | 682 | if (is_posix) { |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 683 | # 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] | 684 | # conversion to check that an address is 16-bit aligned (benign). |
| 685 | cflags_c = [ "-Wno-pointer-to-int-cast" ] |
| 686 | } |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | config("fxge_warnings") { |
| 690 | if (is_clang) { |
| 691 | cflags = [ |
| 692 | # http://code.google.com/p/pdfium/issues/detail?id=188 |
| 693 | "-Wno-switch", |
| 694 | ] |
| 695 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | static_library("fxcrt") { |
| 699 | sources = [ |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 700 | "core/fxcrt/cfx_observable.h", |
| 701 | "core/fxcrt/cfx_retain_ptr.h", |
tsepez | 2239cee | 2016-10-17 11:20:01 -0700 | [diff] [blame] | 702 | "core/fxcrt/cfx_shared_copy_on_write.h", |
tsepez | f7036ba | 2016-05-13 15:02:43 -0700 | [diff] [blame] | 703 | "core/fxcrt/cfx_string_c_template.h", |
tsepez | 6fb598b | 2016-04-05 12:40:47 -0700 | [diff] [blame] | 704 | "core/fxcrt/cfx_string_data_template.h", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 705 | "core/fxcrt/cfx_string_pool_template.h", |
| 706 | "core/fxcrt/cfx_weak_ptr.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 707 | "core/fxcrt/extension.h", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 708 | "core/fxcrt/fx_basic.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 709 | "core/fxcrt/fx_basic_array.cpp", |
| 710 | "core/fxcrt/fx_basic_bstring.cpp", |
| 711 | "core/fxcrt/fx_basic_buffer.cpp", |
| 712 | "core/fxcrt/fx_basic_coords.cpp", |
| 713 | "core/fxcrt/fx_basic_gcc.cpp", |
| 714 | "core/fxcrt/fx_basic_list.cpp", |
| 715 | "core/fxcrt/fx_basic_memmgr.cpp", |
| 716 | "core/fxcrt/fx_basic_plex.cpp", |
| 717 | "core/fxcrt/fx_basic_utf.cpp", |
| 718 | "core/fxcrt/fx_basic_util.cpp", |
| 719 | "core/fxcrt/fx_basic_wstring.cpp", |
| 720 | "core/fxcrt/fx_bidi.cpp", |
Dan Sinclair | a8a28e0 | 2016-03-23 15:41:39 -0400 | [diff] [blame] | 721 | "core/fxcrt/fx_bidi.h", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 722 | "core/fxcrt/fx_coordinates.h", |
| 723 | "core/fxcrt/fx_ext.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 724 | "core/fxcrt/fx_extension.cpp", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 725 | "core/fxcrt/fx_memory.h", |
| 726 | "core/fxcrt/fx_safe_types.h", |
| 727 | "core/fxcrt/fx_stream.h", |
| 728 | "core/fxcrt/fx_string.h", |
| 729 | "core/fxcrt/fx_system.h", |
| 730 | "core/fxcrt/fx_ucd.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 731 | "core/fxcrt/fx_ucddata.cpp", |
| 732 | "core/fxcrt/fx_unicode.cpp", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 733 | "core/fxcrt/fx_xml.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 734 | "core/fxcrt/fx_xml_composer.cpp", |
| 735 | "core/fxcrt/fx_xml_parser.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 736 | "core/fxcrt/fxcrt_posix.cpp", |
| 737 | "core/fxcrt/fxcrt_posix.h", |
| 738 | "core/fxcrt/fxcrt_stream.cpp", |
| 739 | "core/fxcrt/fxcrt_windows.cpp", |
| 740 | "core/fxcrt/fxcrt_windows.h", |
| 741 | "core/fxcrt/plex.h", |
| 742 | "core/fxcrt/xml_int.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 743 | ] |
thestig | c65e11e | 2016-08-30 21:56:33 -0700 | [diff] [blame] | 744 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 745 | visibility += [ "third_party:*" ] |
| 746 | deps = [ |
| 747 | "third_party:pdfium_base", |
| 748 | ] |
| 749 | public_deps = [ |
| 750 | "third_party:pdfium_base", |
| 751 | ] |
thestig | c65e11e | 2016-08-30 21:56:33 -0700 | [diff] [blame] | 752 | |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 753 | if (pdf_enable_xfa) { |
| 754 | sources += [ |
pcc | e3bbfa2 | 2016-04-19 12:40:07 -0700 | [diff] [blame] | 755 | "core/fxcrt/fx_arabic.cpp", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 756 | "core/fxcrt/fx_arabic.h", |
| 757 | "core/fxcrt/fx_arb.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 758 | "core/fxcrt/fx_basic_maps.cpp", |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 759 | ] |
| 760 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | static_library("fxge") { |
| 764 | sources = [ |
npm | cfcc11e | 2016-10-25 14:26:39 -0700 | [diff] [blame] | 765 | "core/fxge/android/cfpf_skiabufferfont.h", |
| 766 | "core/fxge/android/cfpf_skiadevicemodule.cpp", |
| 767 | "core/fxge/android/cfpf_skiadevicemodule.h", |
| 768 | "core/fxge/android/cfpf_skiafilefont.h", |
| 769 | "core/fxge/android/cfpf_skiafont.cpp", |
| 770 | "core/fxge/android/cfpf_skiafont.h", |
| 771 | "core/fxge/android/cfpf_skiafontdescriptor.h", |
npm | 8382803 | 2016-10-21 11:56:53 -0700 | [diff] [blame] | 772 | "core/fxge/android/cfpf_skiafontmgr.cpp", |
npm | cfcc11e | 2016-10-25 14:26:39 -0700 | [diff] [blame] | 773 | "core/fxge/android/cfpf_skiafontmgr.h", |
| 774 | "core/fxge/android/cfpf_skiapathfont.h", |
| 775 | "core/fxge/android/cfx_androidfontinfo.cpp", |
| 776 | "core/fxge/android/cfx_androidfontinfo.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 777 | "core/fxge/android/fx_android_imp.cpp", |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 778 | "core/fxge/cfx_facecache.h", |
| 779 | "core/fxge/cfx_fontcache.h", |
| 780 | "core/fxge/cfx_fontmapper.h", |
| 781 | "core/fxge/cfx_fontmgr.h", |
| 782 | "core/fxge/cfx_fxgedevice.h", |
| 783 | "core/fxge/cfx_gemodule.h", |
| 784 | "core/fxge/cfx_graphstate.h", |
| 785 | "core/fxge/cfx_graphstatedata.h", |
| 786 | "core/fxge/cfx_pathdata.h", |
| 787 | "core/fxge/cfx_renderdevice.h", |
| 788 | "core/fxge/cfx_substfont.h", |
| 789 | "core/fxge/cfx_unicodeencoding.h", |
| 790 | "core/fxge/cfx_windowsdevice.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 791 | "core/fxge/dib/dib_int.h", |
| 792 | "core/fxge/dib/fx_dib_composite.cpp", |
| 793 | "core/fxge/dib/fx_dib_convert.cpp", |
| 794 | "core/fxge/dib/fx_dib_engine.cpp", |
| 795 | "core/fxge/dib/fx_dib_main.cpp", |
| 796 | "core/fxge/dib/fx_dib_transform.cpp", |
| 797 | "core/fxge/fontdata/chromefontdata/FoxitDingbats.cpp", |
| 798 | "core/fxge/fontdata/chromefontdata/FoxitFixed.cpp", |
| 799 | "core/fxge/fontdata/chromefontdata/FoxitFixedBold.cpp", |
| 800 | "core/fxge/fontdata/chromefontdata/FoxitFixedBoldItalic.cpp", |
| 801 | "core/fxge/fontdata/chromefontdata/FoxitFixedItalic.cpp", |
| 802 | "core/fxge/fontdata/chromefontdata/FoxitSans.cpp", |
| 803 | "core/fxge/fontdata/chromefontdata/FoxitSansBold.cpp", |
| 804 | "core/fxge/fontdata/chromefontdata/FoxitSansBoldItalic.cpp", |
| 805 | "core/fxge/fontdata/chromefontdata/FoxitSansItalic.cpp", |
| 806 | "core/fxge/fontdata/chromefontdata/FoxitSansMM.cpp", |
| 807 | "core/fxge/fontdata/chromefontdata/FoxitSerif.cpp", |
| 808 | "core/fxge/fontdata/chromefontdata/FoxitSerifBold.cpp", |
| 809 | "core/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.cpp", |
| 810 | "core/fxge/fontdata/chromefontdata/FoxitSerifItalic.cpp", |
| 811 | "core/fxge/fontdata/chromefontdata/FoxitSerifMM.cpp", |
| 812 | "core/fxge/fontdata/chromefontdata/FoxitSymbol.cpp", |
| 813 | "core/fxge/fontdata/chromefontdata/chromefontdata.h", |
| 814 | "core/fxge/freetype/fx_freetype.cpp", |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 815 | "core/fxge/fx_dib.h", |
| 816 | "core/fxge/fx_font.h", |
| 817 | "core/fxge/fx_freetype.h", |
npm | 660de3c | 2016-08-08 08:18:29 -0700 | [diff] [blame] | 818 | "core/fxge/ge/cfx_cliprgn.cpp", |
| 819 | "core/fxge/ge/cfx_cliprgn.h", |
npm | 19ecc23 | 2016-08-19 16:17:57 -0700 | [diff] [blame] | 820 | "core/fxge/ge/cfx_facecache.cpp", |
npm | f73893a | 2016-07-27 13:54:25 -0700 | [diff] [blame] | 821 | "core/fxge/ge/cfx_folderfontinfo.cpp", |
| 822 | "core/fxge/ge/cfx_folderfontinfo.h", |
npm | 155c880 | 2016-09-06 07:31:02 -0700 | [diff] [blame] | 823 | "core/fxge/ge/cfx_font.cpp", |
npm | d691899 | 2016-08-17 13:22:16 -0700 | [diff] [blame] | 824 | "core/fxge/ge/cfx_fontcache.cpp", |
npm | f73893a | 2016-07-27 13:54:25 -0700 | [diff] [blame] | 825 | "core/fxge/ge/cfx_fontmapper.cpp", |
| 826 | "core/fxge/ge/cfx_fontmgr.cpp", |
npm | 26b86e6 | 2016-08-04 17:22:14 -0700 | [diff] [blame] | 827 | "core/fxge/ge/cfx_gemodule.cpp", |
tsepez | 7c9f0a1 | 2016-09-06 13:02:55 -0700 | [diff] [blame] | 828 | "core/fxge/ge/cfx_graphstate.cpp", |
npm | 9ada2d8 | 2016-08-10 07:51:38 -0700 | [diff] [blame] | 829 | "core/fxge/ge/cfx_graphstatedata.cpp", |
npm | 660de3c | 2016-08-08 08:18:29 -0700 | [diff] [blame] | 830 | "core/fxge/ge/cfx_pathdata.cpp", |
npm | 9ada2d8 | 2016-08-10 07:51:38 -0700 | [diff] [blame] | 831 | "core/fxge/ge/cfx_renderdevice.cpp", |
npm | 81ee14d | 2016-08-29 09:35:12 -0700 | [diff] [blame] | 832 | "core/fxge/ge/cfx_substfont.cpp", |
npm | 1a8946b | 2016-08-18 10:55:29 -0700 | [diff] [blame] | 833 | "core/fxge/ge/cfx_unicodeencoding.cpp", |
npm | 81ee14d | 2016-08-29 09:35:12 -0700 | [diff] [blame] | 834 | "core/fxge/ge/cttfontdesc.cpp", |
| 835 | "core/fxge/ge/cttfontdesc.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 836 | "core/fxge/ge/fx_ge_fontmap.cpp", |
| 837 | "core/fxge/ge/fx_ge_linux.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 838 | "core/fxge/ge/fx_ge_text.cpp", |
| 839 | "core/fxge/ge/fx_text_int.h", |
weili | 095d346 | 2016-06-21 11:24:24 -0700 | [diff] [blame] | 840 | "core/fxge/ifx_renderdevicedriver.cpp", |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 841 | "core/fxge/ifx_renderdevicedriver.h", |
| 842 | "core/fxge/ifx_systemfontinfo.h", |
npm | 7484762 | 2016-07-29 15:20:25 -0700 | [diff] [blame] | 843 | "core/fxge/win32/cfx_windowsdib.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 844 | ] |
| 845 | |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 846 | configs += [ |
Lei Zhang | 7b16ba5 | 2015-10-26 17:06:53 -0700 | [diff] [blame] | 847 | ":fxge_warnings", |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 848 | ":pdfium_core_config", |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 849 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 850 | |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 851 | deps = [ |
| 852 | ":fxcrt", |
| 853 | ] |
| 854 | |
npm | 1a8946b | 2016-08-18 10:55:29 -0700 | [diff] [blame] | 855 | if (pdf_enable_xfa) { |
| 856 | sources += [ |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 857 | "core/fxge/cfx_unicodeencodingex.h", |
npm | 1a8946b | 2016-08-18 10:55:29 -0700 | [diff] [blame] | 858 | "core/fxge/ge/cfx_unicodeencodingex.cpp", |
npm | 1a8946b | 2016-08-18 10:55:29 -0700 | [diff] [blame] | 859 | ] |
| 860 | } |
| 861 | |
caryclark | af177fe | 2016-11-16 10:10:03 -0800 | [diff] [blame] | 862 | if (pdf_use_skia || pdf_use_skia_paths) { |
Cary Clark | 59b3a48 | 2016-03-17 12:00:39 -0400 | [diff] [blame] | 863 | sources += [ "core/fxge/skia/fx_skia_device.cpp" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 864 | deps += [ "//skia" ] |
caryclark | 749c14c | 2016-05-19 07:01:03 -0700 | [diff] [blame] | 865 | } else { |
| 866 | sources += [ |
| 867 | "core/fxge/agg/fx_agg_driver.cpp", |
| 868 | "core/fxge/agg/fx_agg_driver.h", |
| 869 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 870 | deps += [ "third_party:fx_agg" ] |
npm | a97fc7c | 2016-11-07 08:50:04 -0800 | [diff] [blame] | 871 | |
| 872 | if (is_mac) { |
| 873 | sources += [ "core/fxge/apple/fx_apple_platform.cpp" ] |
| 874 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 875 | } |
| 876 | |
| 877 | if (is_win) { |
| 878 | sources += [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 879 | "core/fxge/win32/dwrite_int.h", |
| 880 | "core/fxge/win32/fx_win32_device.cpp", |
| 881 | "core/fxge/win32/fx_win32_dib.cpp", |
| 882 | "core/fxge/win32/fx_win32_dwrite.cpp", |
| 883 | "core/fxge/win32/fx_win32_gdipext.cpp", |
| 884 | "core/fxge/win32/fx_win32_print.cpp", |
| 885 | "core/fxge/win32/win32_int.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 886 | ] |
Tom Sepez | 465ed87 | 2015-12-09 14:55:41 -0800 | [diff] [blame] | 887 | configs -= [ "//build/config/win:lean_and_mean" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 888 | } |
npm | a97fc7c | 2016-11-07 08:50:04 -0800 | [diff] [blame] | 889 | |
| 890 | if (is_mac) { |
| 891 | sources += [ |
| 892 | "core/fxge/apple/apple_int.h", |
| 893 | "core/fxge/apple/fx_mac_imp.cpp", |
| 894 | "core/fxge/apple/fx_quartz_device.cpp", |
| 895 | ] |
| 896 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 897 | } |
| 898 | |
| 899 | static_library("fxedit") { |
| 900 | sources = [ |
dsinclair | 0bb385b | 2016-09-29 17:03:59 -0700 | [diff] [blame] | 901 | "fpdfsdk/fxedit/fx_edit.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 902 | "fpdfsdk/fxedit/fxet_ap.cpp", |
| 903 | "fpdfsdk/fxedit/fxet_edit.cpp", |
dsinclair | 0bb385b | 2016-09-29 17:03:59 -0700 | [diff] [blame] | 904 | "fpdfsdk/fxedit/fxet_edit.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 905 | "fpdfsdk/fxedit/fxet_list.cpp", |
dsinclair | 0bb385b | 2016-09-29 17:03:59 -0700 | [diff] [blame] | 906 | "fpdfsdk/fxedit/fxet_list.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 907 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 908 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 909 | deps = [ |
| 910 | ":fxcrt", |
| 911 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | static_library("pdfwindow") { |
| 915 | sources = [ |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 916 | "fpdfsdk/pdfwindow/PWL_Button.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 917 | "fpdfsdk/pdfwindow/PWL_Button.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 918 | "fpdfsdk/pdfwindow/PWL_Caret.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 919 | "fpdfsdk/pdfwindow/PWL_Caret.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 920 | "fpdfsdk/pdfwindow/PWL_ComboBox.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 921 | "fpdfsdk/pdfwindow/PWL_ComboBox.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 922 | "fpdfsdk/pdfwindow/PWL_Edit.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 923 | "fpdfsdk/pdfwindow/PWL_Edit.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 924 | "fpdfsdk/pdfwindow/PWL_EditCtrl.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 925 | "fpdfsdk/pdfwindow/PWL_EditCtrl.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 926 | "fpdfsdk/pdfwindow/PWL_FontMap.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 927 | "fpdfsdk/pdfwindow/PWL_FontMap.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 928 | "fpdfsdk/pdfwindow/PWL_Icon.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 929 | "fpdfsdk/pdfwindow/PWL_Icon.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 930 | "fpdfsdk/pdfwindow/PWL_ListBox.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 931 | "fpdfsdk/pdfwindow/PWL_ListBox.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 932 | "fpdfsdk/pdfwindow/PWL_ScrollBar.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 933 | "fpdfsdk/pdfwindow/PWL_ScrollBar.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 934 | "fpdfsdk/pdfwindow/PWL_SpecialButton.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 935 | "fpdfsdk/pdfwindow/PWL_SpecialButton.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 936 | "fpdfsdk/pdfwindow/PWL_Utils.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 937 | "fpdfsdk/pdfwindow/PWL_Utils.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 938 | "fpdfsdk/pdfwindow/PWL_Wnd.cpp", |
dan sinclair | 89e904b | 2016-03-23 19:29:15 -0400 | [diff] [blame] | 939 | "fpdfsdk/pdfwindow/PWL_Wnd.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 940 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 941 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 942 | deps = [ |
| 943 | ":fxcrt", |
| 944 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 945 | } |
| 946 | |
| 947 | static_library("javascript") { |
| 948 | sources = [ |
dsinclair | 64376be | 2016-03-31 20:03:24 -0700 | [diff] [blame] | 949 | "fpdfsdk/javascript/ijs_context.h", |
| 950 | "fpdfsdk/javascript/ijs_runtime.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 951 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 952 | configs += [ ":pdfium_core_config" ] |
| 953 | deps = [ |
| 954 | ":fxcrt", |
| 955 | ] |
| 956 | |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 957 | if (pdf_enable_v8) { |
| 958 | sources += [ |
tonikitoo | 618cb1f | 2016-08-18 20:10:17 -0700 | [diff] [blame] | 959 | "fpdfsdk/javascript/Annot.cpp", |
| 960 | "fpdfsdk/javascript/Annot.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 961 | "fpdfsdk/javascript/Consts.cpp", |
| 962 | "fpdfsdk/javascript/Consts.h", |
| 963 | "fpdfsdk/javascript/Document.cpp", |
| 964 | "fpdfsdk/javascript/Document.h", |
| 965 | "fpdfsdk/javascript/Field.cpp", |
| 966 | "fpdfsdk/javascript/Field.h", |
| 967 | "fpdfsdk/javascript/Icon.cpp", |
| 968 | "fpdfsdk/javascript/Icon.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 969 | "fpdfsdk/javascript/JS_Define.h", |
| 970 | "fpdfsdk/javascript/JS_EventHandler.cpp", |
| 971 | "fpdfsdk/javascript/JS_EventHandler.h", |
| 972 | "fpdfsdk/javascript/JS_GlobalData.cpp", |
| 973 | "fpdfsdk/javascript/JS_GlobalData.h", |
weili | 47228ac | 2016-07-20 10:35:31 -0700 | [diff] [blame] | 974 | "fpdfsdk/javascript/JS_KeyValue.cpp", |
| 975 | "fpdfsdk/javascript/JS_KeyValue.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 976 | "fpdfsdk/javascript/JS_Object.cpp", |
| 977 | "fpdfsdk/javascript/JS_Object.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 978 | "fpdfsdk/javascript/JS_Value.cpp", |
| 979 | "fpdfsdk/javascript/JS_Value.h", |
| 980 | "fpdfsdk/javascript/PublicMethods.cpp", |
| 981 | "fpdfsdk/javascript/PublicMethods.h", |
| 982 | "fpdfsdk/javascript/app.cpp", |
| 983 | "fpdfsdk/javascript/app.h", |
dsinclair | 64376be | 2016-03-31 20:03:24 -0700 | [diff] [blame] | 984 | "fpdfsdk/javascript/cjs_context.cpp", |
| 985 | "fpdfsdk/javascript/cjs_context.h", |
| 986 | "fpdfsdk/javascript/cjs_runtime.cpp", |
| 987 | "fpdfsdk/javascript/cjs_runtime.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 988 | "fpdfsdk/javascript/color.cpp", |
| 989 | "fpdfsdk/javascript/color.h", |
| 990 | "fpdfsdk/javascript/console.cpp", |
| 991 | "fpdfsdk/javascript/console.h", |
| 992 | "fpdfsdk/javascript/event.cpp", |
| 993 | "fpdfsdk/javascript/event.h", |
| 994 | "fpdfsdk/javascript/global.cpp", |
| 995 | "fpdfsdk/javascript/global.h", |
| 996 | "fpdfsdk/javascript/report.cpp", |
| 997 | "fpdfsdk/javascript/report.h", |
| 998 | "fpdfsdk/javascript/resource.cpp", |
| 999 | "fpdfsdk/javascript/resource.h", |
| 1000 | "fpdfsdk/javascript/util.cpp", |
| 1001 | "fpdfsdk/javascript/util.h", |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1002 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1003 | deps += [ ":fxjs" ] |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 1004 | configs += [ "//v8:external_startup_data" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1005 | } else { |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1006 | sources += [ "fpdfsdk/javascript/JS_Runtime_Stub.cpp" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1007 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1008 | } |
| 1009 | |
| 1010 | static_library("formfiller") { |
| 1011 | sources = [ |
Dan Sinclair | edbb319 | 2016-03-21 09:08:24 -0400 | [diff] [blame] | 1012 | "fpdfsdk/formfiller/cba_fontmap.cpp", |
| 1013 | "fpdfsdk/formfiller/cba_fontmap.h", |
| 1014 | "fpdfsdk/formfiller/cffl_checkbox.cpp", |
| 1015 | "fpdfsdk/formfiller/cffl_checkbox.h", |
| 1016 | "fpdfsdk/formfiller/cffl_combobox.cpp", |
| 1017 | "fpdfsdk/formfiller/cffl_combobox.h", |
| 1018 | "fpdfsdk/formfiller/cffl_formfiller.cpp", |
| 1019 | "fpdfsdk/formfiller/cffl_formfiller.h", |
dsinclair | b94d7c9 | 2016-09-21 12:07:00 -0700 | [diff] [blame] | 1020 | "fpdfsdk/formfiller/cffl_interactiveformfiller.cpp", |
| 1021 | "fpdfsdk/formfiller/cffl_interactiveformfiller.h", |
Dan Sinclair | edbb319 | 2016-03-21 09:08:24 -0400 | [diff] [blame] | 1022 | "fpdfsdk/formfiller/cffl_listbox.cpp", |
| 1023 | "fpdfsdk/formfiller/cffl_listbox.h", |
| 1024 | "fpdfsdk/formfiller/cffl_pushbutton.cpp", |
| 1025 | "fpdfsdk/formfiller/cffl_pushbutton.h", |
| 1026 | "fpdfsdk/formfiller/cffl_radiobutton.cpp", |
| 1027 | "fpdfsdk/formfiller/cffl_radiobutton.h", |
| 1028 | "fpdfsdk/formfiller/cffl_textfield.cpp", |
| 1029 | "fpdfsdk/formfiller/cffl_textfield.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1030 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1031 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1032 | deps = [ |
| 1033 | ":fxcrt", |
| 1034 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1035 | } |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 1036 | |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1037 | if (pdf_enable_v8) { |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1038 | static_library("fxjs") { |
| 1039 | sources = [ |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1040 | "fxjs/fxjs_v8.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1041 | "fxjs/fxjs_v8.h", |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1042 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1043 | configs += [ ":pdfium_core_config" ] |
| 1044 | deps = [ |
| 1045 | ":fxcrt", |
| 1046 | "//v8", |
| 1047 | "//v8:v8_libplatform", |
| 1048 | ] |
| 1049 | include_dirs = [ |
| 1050 | "//v8", |
| 1051 | "//v8/include", |
| 1052 | ] |
| 1053 | public_deps = [ |
| 1054 | "//v8", |
| 1055 | ] |
| 1056 | |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1057 | if (pdf_enable_xfa) { |
| 1058 | sources += [ |
| 1059 | "fxjs/cfxjse_arguments.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1060 | "fxjs/cfxjse_arguments.h", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1061 | "fxjs/cfxjse_class.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1062 | "fxjs/cfxjse_class.h", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1063 | "fxjs/cfxjse_context.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1064 | "fxjs/cfxjse_context.h", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1065 | "fxjs/cfxjse_isolatetracker.cpp", |
| 1066 | "fxjs/cfxjse_isolatetracker.h", |
| 1067 | "fxjs/cfxjse_runtimedata.cpp", |
| 1068 | "fxjs/cfxjse_runtimedata.h", |
| 1069 | "fxjs/cfxjse_value.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1070 | "fxjs/cfxjse_value.h", |
| 1071 | "fxjs/fxjse.h", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1072 | ] |
| 1073 | } |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1074 | } |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1075 | } |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1076 | |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1077 | if (pdf_enable_xfa) { |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1078 | static_library("fpdfxfa") { |
| 1079 | sources = [ |
dsinclair | 521b750 | 2016-11-02 13:02:28 -0700 | [diff] [blame] | 1080 | "fpdfsdk/fpdfxfa/cpdfxfa_context.cpp", |
| 1081 | "fpdfsdk/fpdfxfa/cpdfxfa_context.h", |
dsinclair | a440bb3 | 2016-09-14 07:01:54 -0700 | [diff] [blame] | 1082 | "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp", |
dsinclair | bec7692 | 2016-09-29 16:52:30 -0700 | [diff] [blame] | 1083 | "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.h", |
dsinclair | 4d29e78 | 2016-10-04 14:02:47 -0700 | [diff] [blame] | 1084 | "fpdfsdk/fpdfxfa/cpdfxfa_page.cpp", |
| 1085 | "fpdfsdk/fpdfxfa/cpdfxfa_page.h", |
| 1086 | "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.cpp", |
| 1087 | "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h", |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1088 | ] |
| 1089 | deps = [ |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1090 | ":fxcrt", |
dsinclair | 8837c91 | 2016-11-01 11:22:37 -0700 | [diff] [blame] | 1091 | ":fxjs", |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1092 | ":xfa", |
| 1093 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1094 | configs += [ ":pdfium_core_config" ] |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1095 | } |
| 1096 | |
| 1097 | static_library("xfa") { |
| 1098 | sources = [ |
dsinclair | acd0d59 | 2016-04-21 11:06:27 -0700 | [diff] [blame] | 1099 | "xfa/fde/cfde_path.cpp", |
| 1100 | "xfa/fde/cfde_path.h", |
dsinclair | 6539518 | 2016-05-18 11:09:47 -0700 | [diff] [blame] | 1101 | "xfa/fde/cfde_txtedtbuf.cpp", |
| 1102 | "xfa/fde/cfde_txtedtbuf.h", |
| 1103 | "xfa/fde/cfde_txtedtbufiter.cpp", |
| 1104 | "xfa/fde/cfde_txtedtbufiter.h", |
| 1105 | "xfa/fde/cfde_txtedtdorecord_deleterange.cpp", |
| 1106 | "xfa/fde/cfde_txtedtdorecord_deleterange.h", |
| 1107 | "xfa/fde/cfde_txtedtdorecord_insert.cpp", |
| 1108 | "xfa/fde/cfde_txtedtdorecord_insert.h", |
| 1109 | "xfa/fde/cfde_txtedtengine.cpp", |
| 1110 | "xfa/fde/cfde_txtedtengine.h", |
| 1111 | "xfa/fde/cfde_txtedtpage.cpp", |
| 1112 | "xfa/fde/cfde_txtedtpage.h", |
| 1113 | "xfa/fde/cfde_txtedtparag.cpp", |
| 1114 | "xfa/fde/cfde_txtedtparag.h", |
| 1115 | "xfa/fde/cfde_txtedttextset.cpp", |
| 1116 | "xfa/fde/cfde_txtedttextset.h", |
| 1117 | "xfa/fde/cfx_chariter.cpp", |
| 1118 | "xfa/fde/cfx_chariter.h", |
| 1119 | "xfa/fde/cfx_wordbreak.cpp", |
| 1120 | "xfa/fde/cfx_wordbreak.h", |
npm | 69f160d | 2016-07-20 10:48:27 -0700 | [diff] [blame] | 1121 | "xfa/fde/css/cfde_cssrulecollection.cpp", |
weili | eec3a36 | 2016-06-18 06:25:37 -0700 | [diff] [blame] | 1122 | "xfa/fde/css/fde_css.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1123 | "xfa/fde/css/fde_css.h", |
| 1124 | "xfa/fde/css/fde_csscache.cpp", |
| 1125 | "xfa/fde/css/fde_csscache.h", |
| 1126 | "xfa/fde/css/fde_cssdatatable.cpp", |
| 1127 | "xfa/fde/css/fde_cssdatatable.h", |
| 1128 | "xfa/fde/css/fde_cssdeclaration.cpp", |
| 1129 | "xfa/fde/css/fde_cssdeclaration.h", |
| 1130 | "xfa/fde/css/fde_cssstyleselector.cpp", |
| 1131 | "xfa/fde/css/fde_cssstyleselector.h", |
| 1132 | "xfa/fde/css/fde_cssstylesheet.cpp", |
| 1133 | "xfa/fde/css/fde_cssstylesheet.h", |
| 1134 | "xfa/fde/css/fde_csssyntax.cpp", |
| 1135 | "xfa/fde/css/fde_csssyntax.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1136 | "xfa/fde/fde_gedevice.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1137 | "xfa/fde/fde_iterator.cpp", |
| 1138 | "xfa/fde/fde_iterator.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1139 | "xfa/fde/fde_object.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1140 | "xfa/fde/fde_render.cpp", |
| 1141 | "xfa/fde/fde_render.h", |
dsinclair | 6539518 | 2016-05-18 11:09:47 -0700 | [diff] [blame] | 1142 | "xfa/fde/ifde_txtedtdorecord.h", |
| 1143 | "xfa/fde/ifde_txtedtengine.h", |
| 1144 | "xfa/fde/ifde_txtedtpage.h", |
| 1145 | "xfa/fde/ifx_chariter.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1146 | "xfa/fde/tto/fde_textout.cpp", |
| 1147 | "xfa/fde/tto/fde_textout.h", |
dsinclair | 6c93df8 | 2016-05-19 18:13:53 -0700 | [diff] [blame] | 1148 | "xfa/fde/xml/cfx_saxreader.cpp", |
| 1149 | "xfa/fde/xml/cfx_saxreader.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1150 | "xfa/fde/xml/fde_xml.h", |
| 1151 | "xfa/fde/xml/fde_xml_imp.cpp", |
| 1152 | "xfa/fde/xml/fde_xml_imp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1153 | "xfa/fgas/crt/fgas_codepage.cpp", |
| 1154 | "xfa/fgas/crt/fgas_codepage.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1155 | "xfa/fgas/crt/fgas_language.h", |
| 1156 | "xfa/fgas/crt/fgas_memory.cpp", |
| 1157 | "xfa/fgas/crt/fgas_memory.h", |
| 1158 | "xfa/fgas/crt/fgas_stream.cpp", |
| 1159 | "xfa/fgas/crt/fgas_stream.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1160 | "xfa/fgas/crt/fgas_utils.cpp", |
| 1161 | "xfa/fgas/crt/fgas_utils.h", |
npm | 8f3eb60 | 2016-11-11 17:16:23 -0800 | [diff] [blame] | 1162 | "xfa/fgas/font/cfgas_fontmgr.cpp", |
| 1163 | "xfa/fgas/font/cfgas_fontmgr.h", |
npm | 4b91a2d | 2016-11-21 15:19:44 -0800 | [diff] [blame^] | 1164 | "xfa/fgas/font/cfgas_gefont.cpp", |
| 1165 | "xfa/fgas/font/cfgas_gefont.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1166 | "xfa/fgas/font/fgas_fontutils.cpp", |
| 1167 | "xfa/fgas/font/fgas_fontutils.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1168 | "xfa/fgas/layout/fgas_linebreak.cpp", |
| 1169 | "xfa/fgas/layout/fgas_linebreak.h", |
| 1170 | "xfa/fgas/layout/fgas_rtfbreak.cpp", |
| 1171 | "xfa/fgas/layout/fgas_rtfbreak.h", |
| 1172 | "xfa/fgas/layout/fgas_textbreak.cpp", |
| 1173 | "xfa/fgas/layout/fgas_textbreak.h", |
| 1174 | "xfa/fgas/layout/fgas_unicode.cpp", |
| 1175 | "xfa/fgas/layout/fgas_unicode.h", |
| 1176 | "xfa/fgas/localization/fgas_datetime.cpp", |
| 1177 | "xfa/fgas/localization/fgas_datetime.h", |
| 1178 | "xfa/fgas/localization/fgas_locale.cpp", |
| 1179 | "xfa/fgas/localization/fgas_locale.h", |
| 1180 | "xfa/fgas/localization/fgas_localeimp.h", |
dsinclair | 05259e9 | 2016-10-20 09:59:48 -0700 | [diff] [blame] | 1181 | "xfa/fwl/core/cfwl_barcode.cpp", |
| 1182 | "xfa/fwl/core/cfwl_barcode.h", |
| 1183 | "xfa/fwl/core/cfwl_checkbox.cpp", |
| 1184 | "xfa/fwl/core/cfwl_checkbox.h", |
| 1185 | "xfa/fwl/core/cfwl_combobox.cpp", |
| 1186 | "xfa/fwl/core/cfwl_combobox.h", |
| 1187 | "xfa/fwl/core/cfwl_datetimepicker.cpp", |
| 1188 | "xfa/fwl/core/cfwl_datetimepicker.h", |
| 1189 | "xfa/fwl/core/cfwl_edit.cpp", |
| 1190 | "xfa/fwl/core/cfwl_edit.h", |
dsinclair | 0baa5c7 | 2016-11-16 18:15:02 -0800 | [diff] [blame] | 1191 | "xfa/fwl/core/cfwl_event.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1192 | "xfa/fwl/core/cfwl_event.h", |
dsinclair | a43715b | 2016-11-17 09:26:13 -0800 | [diff] [blame] | 1193 | "xfa/fwl/core/cfwl_evtcheckstatechanged.cpp", |
| 1194 | "xfa/fwl/core/cfwl_evtcheckstatechanged.h", |
dsinclair | 098f454 | 2016-11-17 09:25:05 -0800 | [diff] [blame] | 1195 | "xfa/fwl/core/cfwl_evtcheckword.cpp", |
| 1196 | "xfa/fwl/core/cfwl_evtcheckword.h", |
dsinclair | 0baa5c7 | 2016-11-16 18:15:02 -0800 | [diff] [blame] | 1197 | "xfa/fwl/core/cfwl_evtclick.cpp", |
| 1198 | "xfa/fwl/core/cfwl_evtclick.h", |
| 1199 | "xfa/fwl/core/cfwl_evtclose.cpp", |
| 1200 | "xfa/fwl/core/cfwl_evtclose.h", |
dsinclair | b977720 | 2016-11-17 10:32:52 -0800 | [diff] [blame] | 1201 | "xfa/fwl/core/cfwl_evteditchanged.cpp", |
| 1202 | "xfa/fwl/core/cfwl_evteditchanged.h", |
dsinclair | 0baa5c7 | 2016-11-16 18:15:02 -0800 | [diff] [blame] | 1203 | "xfa/fwl/core/cfwl_evtkey.cpp", |
| 1204 | "xfa/fwl/core/cfwl_evtkey.h", |
| 1205 | "xfa/fwl/core/cfwl_evtkillfocus.cpp", |
| 1206 | "xfa/fwl/core/cfwl_evtkillfocus.h", |
| 1207 | "xfa/fwl/core/cfwl_evtmouse.cpp", |
| 1208 | "xfa/fwl/core/cfwl_evtmouse.h", |
| 1209 | "xfa/fwl/core/cfwl_evtmousewheel.cpp", |
| 1210 | "xfa/fwl/core/cfwl_evtmousewheel.h", |
dsinclair | a43715b | 2016-11-17 09:26:13 -0800 | [diff] [blame] | 1211 | "xfa/fwl/core/cfwl_evtpostdropdown.cpp", |
| 1212 | "xfa/fwl/core/cfwl_evtpostdropdown.h", |
| 1213 | "xfa/fwl/core/cfwl_evtpredropdown.cpp", |
| 1214 | "xfa/fwl/core/cfwl_evtpredropdown.h", |
dsinclair | 0baa5c7 | 2016-11-16 18:15:02 -0800 | [diff] [blame] | 1215 | "xfa/fwl/core/cfwl_evtscroll.cpp", |
| 1216 | "xfa/fwl/core/cfwl_evtscroll.h", |
dsinclair | 3855f7f | 2016-11-17 13:15:16 -0800 | [diff] [blame] | 1217 | "xfa/fwl/core/cfwl_evtselectchanged.cpp", |
| 1218 | "xfa/fwl/core/cfwl_evtselectchanged.h", |
dsinclair | 0baa5c7 | 2016-11-16 18:15:02 -0800 | [diff] [blame] | 1219 | "xfa/fwl/core/cfwl_evtsetfocus.cpp", |
| 1220 | "xfa/fwl/core/cfwl_evtsetfocus.h", |
| 1221 | "xfa/fwl/core/cfwl_evtsizechanged.cpp", |
| 1222 | "xfa/fwl/core/cfwl_evtsizechanged.h", |
dsinclair | 098f454 | 2016-11-17 09:25:05 -0800 | [diff] [blame] | 1223 | "xfa/fwl/core/cfwl_evttextchanged.cpp", |
| 1224 | "xfa/fwl/core/cfwl_evttextchanged.h", |
| 1225 | "xfa/fwl/core/cfwl_evttextfull.cpp", |
| 1226 | "xfa/fwl/core/cfwl_evttextfull.h", |
| 1227 | "xfa/fwl/core/cfwl_evtvalidate.cpp", |
| 1228 | "xfa/fwl/core/cfwl_evtvalidate.h", |
dsinclair | 05259e9 | 2016-10-20 09:59:48 -0700 | [diff] [blame] | 1229 | "xfa/fwl/core/cfwl_listbox.cpp", |
| 1230 | "xfa/fwl/core/cfwl_listbox.h", |
dsinclair | 3ff4dee | 2016-11-09 10:09:03 -0800 | [diff] [blame] | 1231 | "xfa/fwl/core/cfwl_listitem.cpp", |
| 1232 | "xfa/fwl/core/cfwl_listitem.h", |
dsinclair | 242b95e | 2016-11-16 14:25:01 -0800 | [diff] [blame] | 1233 | "xfa/fwl/core/cfwl_message.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1234 | "xfa/fwl/core/cfwl_message.h", |
dsinclair | 242b95e | 2016-11-16 14:25:01 -0800 | [diff] [blame] | 1235 | "xfa/fwl/core/cfwl_msgkey.cpp", |
| 1236 | "xfa/fwl/core/cfwl_msgkey.h", |
| 1237 | "xfa/fwl/core/cfwl_msgkillfocus.cpp", |
| 1238 | "xfa/fwl/core/cfwl_msgkillfocus.h", |
| 1239 | "xfa/fwl/core/cfwl_msgmouse.cpp", |
| 1240 | "xfa/fwl/core/cfwl_msgmouse.h", |
| 1241 | "xfa/fwl/core/cfwl_msgmousewheel.cpp", |
| 1242 | "xfa/fwl/core/cfwl_msgmousewheel.h", |
| 1243 | "xfa/fwl/core/cfwl_msgsetfocus.cpp", |
| 1244 | "xfa/fwl/core/cfwl_msgsetfocus.h", |
dsinclair | 05259e9 | 2016-10-20 09:59:48 -0700 | [diff] [blame] | 1245 | "xfa/fwl/core/cfwl_picturebox.cpp", |
| 1246 | "xfa/fwl/core/cfwl_picturebox.h", |
| 1247 | "xfa/fwl/core/cfwl_pushbutton.cpp", |
| 1248 | "xfa/fwl/core/cfwl_pushbutton.h", |
dsinclair | dd17234 | 2016-11-21 09:04:05 -0800 | [diff] [blame] | 1249 | "xfa/fwl/core/cfwl_sysbtn.cpp", |
| 1250 | "xfa/fwl/core/cfwl_sysbtn.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1251 | "xfa/fwl/core/cfwl_themebackground.h", |
| 1252 | "xfa/fwl/core/cfwl_themepart.h", |
| 1253 | "xfa/fwl/core/cfwl_themetext.h", |
dsinclair | 05259e9 | 2016-10-20 09:59:48 -0700 | [diff] [blame] | 1254 | "xfa/fwl/core/cfwl_widget.cpp", |
| 1255 | "xfa/fwl/core/cfwl_widget.h", |
tsepez | 648575a | 2016-05-25 15:24:31 -0700 | [diff] [blame] | 1256 | "xfa/fwl/core/cfwl_widgetmgr.cpp", |
| 1257 | "xfa/fwl/core/cfwl_widgetmgr.h", |
dsinclair | 05259e9 | 2016-10-20 09:59:48 -0700 | [diff] [blame] | 1258 | "xfa/fwl/core/cfwl_widgetproperties.h", |
dsinclair | fb50559 | 2016-10-20 06:44:03 -0700 | [diff] [blame] | 1259 | "xfa/fwl/core/cfx_barcode.cpp", |
| 1260 | "xfa/fwl/core/cfx_barcode.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1261 | "xfa/fwl/core/fwl_error.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1262 | "xfa/fwl/core/fwl_noteimp.cpp", |
| 1263 | "xfa/fwl/core/fwl_noteimp.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1264 | "xfa/fwl/core/fwl_widgetdef.h", |
dsinclair | 202ad72 | 2016-09-29 17:41:42 -0700 | [diff] [blame] | 1265 | "xfa/fwl/core/fwl_widgethit.h", |
dsinclair | 202ad72 | 2016-09-29 17:41:42 -0700 | [diff] [blame] | 1266 | "xfa/fwl/core/ifwl_adaptertimermgr.h", |
dsinclair | 4e90313 | 2016-10-18 16:48:16 -0700 | [diff] [blame] | 1267 | "xfa/fwl/core/ifwl_app.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1268 | "xfa/fwl/core/ifwl_app.h", |
dsinclair | fb50559 | 2016-10-20 06:44:03 -0700 | [diff] [blame] | 1269 | "xfa/fwl/core/ifwl_barcode.cpp", |
| 1270 | "xfa/fwl/core/ifwl_barcode.h", |
| 1271 | "xfa/fwl/core/ifwl_caret.cpp", |
| 1272 | "xfa/fwl/core/ifwl_caret.h", |
| 1273 | "xfa/fwl/core/ifwl_checkbox.cpp", |
| 1274 | "xfa/fwl/core/ifwl_checkbox.h", |
| 1275 | "xfa/fwl/core/ifwl_combobox.cpp", |
| 1276 | "xfa/fwl/core/ifwl_combobox.h", |
dsinclair | 3b3ce1a | 2016-11-02 14:51:25 -0700 | [diff] [blame] | 1277 | "xfa/fwl/core/ifwl_comboboxproxy.cpp", |
| 1278 | "xfa/fwl/core/ifwl_comboboxproxy.h", |
dsinclair | fb50559 | 2016-10-20 06:44:03 -0700 | [diff] [blame] | 1279 | "xfa/fwl/core/ifwl_comboedit.cpp", |
| 1280 | "xfa/fwl/core/ifwl_comboedit.h", |
| 1281 | "xfa/fwl/core/ifwl_combolist.cpp", |
| 1282 | "xfa/fwl/core/ifwl_combolist.h", |
dsinclair | fb50559 | 2016-10-20 06:44:03 -0700 | [diff] [blame] | 1283 | "xfa/fwl/core/ifwl_datetimeedit.cpp", |
| 1284 | "xfa/fwl/core/ifwl_datetimeedit.h", |
| 1285 | "xfa/fwl/core/ifwl_datetimepicker.cpp", |
| 1286 | "xfa/fwl/core/ifwl_datetimepicker.h", |
| 1287 | "xfa/fwl/core/ifwl_edit.cpp", |
| 1288 | "xfa/fwl/core/ifwl_edit.h", |
| 1289 | "xfa/fwl/core/ifwl_form.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1290 | "xfa/fwl/core/ifwl_form.h", |
dsinclair | fb50559 | 2016-10-20 06:44:03 -0700 | [diff] [blame] | 1291 | "xfa/fwl/core/ifwl_formproxy.cpp", |
| 1292 | "xfa/fwl/core/ifwl_formproxy.h", |
| 1293 | "xfa/fwl/core/ifwl_listbox.cpp", |
| 1294 | "xfa/fwl/core/ifwl_listbox.h", |
| 1295 | "xfa/fwl/core/ifwl_monthcalendar.cpp", |
| 1296 | "xfa/fwl/core/ifwl_monthcalendar.h", |
| 1297 | "xfa/fwl/core/ifwl_picturebox.cpp", |
| 1298 | "xfa/fwl/core/ifwl_picturebox.h", |
| 1299 | "xfa/fwl/core/ifwl_pushbutton.cpp", |
| 1300 | "xfa/fwl/core/ifwl_pushbutton.h", |
| 1301 | "xfa/fwl/core/ifwl_scrollbar.cpp", |
| 1302 | "xfa/fwl/core/ifwl_scrollbar.h", |
| 1303 | "xfa/fwl/core/ifwl_spinbutton.cpp", |
| 1304 | "xfa/fwl/core/ifwl_spinbutton.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1305 | "xfa/fwl/core/ifwl_themeprovider.h", |
dsinclair | fb50559 | 2016-10-20 06:44:03 -0700 | [diff] [blame] | 1306 | "xfa/fwl/core/ifwl_timer.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1307 | "xfa/fwl/core/ifwl_timer.h", |
dsinclair | dd17234 | 2016-11-21 09:04:05 -0800 | [diff] [blame] | 1308 | "xfa/fwl/core/ifwl_timerinfo.cpp", |
| 1309 | "xfa/fwl/core/ifwl_timerinfo.h", |
dsinclair | fb50559 | 2016-10-20 06:44:03 -0700 | [diff] [blame] | 1310 | "xfa/fwl/core/ifwl_tooltip.cpp", |
| 1311 | "xfa/fwl/core/ifwl_tooltip.h", |
| 1312 | "xfa/fwl/core/ifwl_widget.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 1313 | "xfa/fwl/core/ifwl_widget.h", |
| 1314 | "xfa/fwl/core/ifwl_widgetdelegate.h", |
weili | 47228ac | 2016-07-20 10:35:31 -0700 | [diff] [blame] | 1315 | "xfa/fwl/theme/cfwl_arrowdata.cpp", |
| 1316 | "xfa/fwl/theme/cfwl_arrowdata.h", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 1317 | "xfa/fwl/theme/cfwl_barcodetp.cpp", |
| 1318 | "xfa/fwl/theme/cfwl_barcodetp.h", |
| 1319 | "xfa/fwl/theme/cfwl_carettp.cpp", |
| 1320 | "xfa/fwl/theme/cfwl_carettp.h", |
| 1321 | "xfa/fwl/theme/cfwl_checkboxtp.cpp", |
| 1322 | "xfa/fwl/theme/cfwl_checkboxtp.h", |
| 1323 | "xfa/fwl/theme/cfwl_comboboxtp.cpp", |
| 1324 | "xfa/fwl/theme/cfwl_comboboxtp.h", |
weili | beecc34 | 2016-08-04 11:57:22 -0700 | [diff] [blame] | 1325 | "xfa/fwl/theme/cfwl_datetimepickertp.cpp", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 1326 | "xfa/fwl/theme/cfwl_datetimepickertp.h", |
| 1327 | "xfa/fwl/theme/cfwl_edittp.cpp", |
| 1328 | "xfa/fwl/theme/cfwl_edittp.h", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 1329 | "xfa/fwl/theme/cfwl_listboxtp.cpp", |
| 1330 | "xfa/fwl/theme/cfwl_listboxtp.h", |
| 1331 | "xfa/fwl/theme/cfwl_monthcalendartp.cpp", |
| 1332 | "xfa/fwl/theme/cfwl_monthcalendartp.h", |
| 1333 | "xfa/fwl/theme/cfwl_pictureboxtp.cpp", |
| 1334 | "xfa/fwl/theme/cfwl_pictureboxtp.h", |
| 1335 | "xfa/fwl/theme/cfwl_pushbuttontp.cpp", |
| 1336 | "xfa/fwl/theme/cfwl_pushbuttontp.h", |
| 1337 | "xfa/fwl/theme/cfwl_scrollbartp.cpp", |
| 1338 | "xfa/fwl/theme/cfwl_scrollbartp.h", |
| 1339 | "xfa/fwl/theme/cfwl_utils.h", |
| 1340 | "xfa/fwl/theme/cfwl_widgettp.cpp", |
| 1341 | "xfa/fwl/theme/cfwl_widgettp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1342 | "xfa/fxbarcode/BC_Dimension.cpp", |
| 1343 | "xfa/fxbarcode/BC_Dimension.h", |
| 1344 | "xfa/fxbarcode/BC_Library.cpp", |
dsinclair | 202ad72 | 2016-09-29 17:41:42 -0700 | [diff] [blame] | 1345 | "xfa/fxbarcode/BC_Library.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1346 | "xfa/fxbarcode/BC_TwoDimWriter.cpp", |
| 1347 | "xfa/fxbarcode/BC_TwoDimWriter.h", |
| 1348 | "xfa/fxbarcode/BC_UtilCodingConvert.cpp", |
| 1349 | "xfa/fxbarcode/BC_UtilCodingConvert.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1350 | "xfa/fxbarcode/BC_Utils.cpp", |
| 1351 | "xfa/fxbarcode/BC_Writer.cpp", |
| 1352 | "xfa/fxbarcode/BC_Writer.h", |
Dan Sinclair | a8a28e0 | 2016-03-23 15:41:39 -0400 | [diff] [blame] | 1353 | "xfa/fxbarcode/cbc_codabar.cpp", |
| 1354 | "xfa/fxbarcode/cbc_codabar.h", |
| 1355 | "xfa/fxbarcode/cbc_code128.cpp", |
| 1356 | "xfa/fxbarcode/cbc_code128.h", |
| 1357 | "xfa/fxbarcode/cbc_code39.cpp", |
| 1358 | "xfa/fxbarcode/cbc_code39.h", |
| 1359 | "xfa/fxbarcode/cbc_codebase.cpp", |
| 1360 | "xfa/fxbarcode/cbc_codebase.h", |
| 1361 | "xfa/fxbarcode/cbc_datamatrix.cpp", |
| 1362 | "xfa/fxbarcode/cbc_datamatrix.h", |
| 1363 | "xfa/fxbarcode/cbc_ean13.cpp", |
| 1364 | "xfa/fxbarcode/cbc_ean13.h", |
| 1365 | "xfa/fxbarcode/cbc_ean8.cpp", |
| 1366 | "xfa/fxbarcode/cbc_ean8.h", |
| 1367 | "xfa/fxbarcode/cbc_onecode.cpp", |
| 1368 | "xfa/fxbarcode/cbc_onecode.h", |
| 1369 | "xfa/fxbarcode/cbc_pdf417i.cpp", |
| 1370 | "xfa/fxbarcode/cbc_pdf417i.h", |
| 1371 | "xfa/fxbarcode/cbc_qrcode.cpp", |
| 1372 | "xfa/fxbarcode/cbc_qrcode.h", |
| 1373 | "xfa/fxbarcode/cbc_upca.cpp", |
| 1374 | "xfa/fxbarcode/cbc_upca.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1375 | "xfa/fxbarcode/common/BC_CommonBitArray.cpp", |
| 1376 | "xfa/fxbarcode/common/BC_CommonBitArray.h", |
| 1377 | "xfa/fxbarcode/common/BC_CommonBitMatrix.cpp", |
| 1378 | "xfa/fxbarcode/common/BC_CommonBitMatrix.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1379 | "xfa/fxbarcode/common/BC_CommonByteArray.cpp", |
| 1380 | "xfa/fxbarcode/common/BC_CommonByteArray.h", |
| 1381 | "xfa/fxbarcode/common/BC_CommonByteMatrix.cpp", |
| 1382 | "xfa/fxbarcode/common/BC_CommonByteMatrix.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1383 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.cpp", |
| 1384 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1385 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.cpp", |
| 1386 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.h", |
| 1387 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp", |
| 1388 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.h", |
| 1389 | "xfa/fxbarcode/datamatrix/BC_ASCIIEncoder.cpp", |
| 1390 | "xfa/fxbarcode/datamatrix/BC_ASCIIEncoder.h", |
| 1391 | "xfa/fxbarcode/datamatrix/BC_Base256Encoder.cpp", |
| 1392 | "xfa/fxbarcode/datamatrix/BC_Base256Encoder.h", |
| 1393 | "xfa/fxbarcode/datamatrix/BC_C40Encoder.cpp", |
| 1394 | "xfa/fxbarcode/datamatrix/BC_C40Encoder.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1395 | "xfa/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.cpp", |
| 1396 | "xfa/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1397 | "xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.cpp", |
| 1398 | "xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h", |
| 1399 | "xfa/fxbarcode/datamatrix/BC_DefaultPlacement.cpp", |
| 1400 | "xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h", |
| 1401 | "xfa/fxbarcode/datamatrix/BC_EdifactEncoder.cpp", |
| 1402 | "xfa/fxbarcode/datamatrix/BC_EdifactEncoder.h", |
| 1403 | "xfa/fxbarcode/datamatrix/BC_Encoder.cpp", |
| 1404 | "xfa/fxbarcode/datamatrix/BC_Encoder.h", |
| 1405 | "xfa/fxbarcode/datamatrix/BC_EncoderContext.cpp", |
| 1406 | "xfa/fxbarcode/datamatrix/BC_EncoderContext.h", |
| 1407 | "xfa/fxbarcode/datamatrix/BC_ErrorCorrection.cpp", |
| 1408 | "xfa/fxbarcode/datamatrix/BC_ErrorCorrection.h", |
| 1409 | "xfa/fxbarcode/datamatrix/BC_HighLevelEncoder.cpp", |
| 1410 | "xfa/fxbarcode/datamatrix/BC_HighLevelEncoder.h", |
| 1411 | "xfa/fxbarcode/datamatrix/BC_SymbolInfo.cpp", |
| 1412 | "xfa/fxbarcode/datamatrix/BC_SymbolInfo.h", |
| 1413 | "xfa/fxbarcode/datamatrix/BC_SymbolShapeHint.cpp", |
| 1414 | "xfa/fxbarcode/datamatrix/BC_SymbolShapeHint.h", |
| 1415 | "xfa/fxbarcode/datamatrix/BC_TextEncoder.cpp", |
| 1416 | "xfa/fxbarcode/datamatrix/BC_TextEncoder.h", |
| 1417 | "xfa/fxbarcode/datamatrix/BC_X12Encoder.cpp", |
| 1418 | "xfa/fxbarcode/datamatrix/BC_X12Encoder.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1419 | "xfa/fxbarcode/oned/BC_OneDimWriter.cpp", |
| 1420 | "xfa/fxbarcode/oned/BC_OneDimWriter.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1421 | "xfa/fxbarcode/oned/BC_OnedCodaBarWriter.cpp", |
| 1422 | "xfa/fxbarcode/oned/BC_OnedCodaBarWriter.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1423 | "xfa/fxbarcode/oned/BC_OnedCode128Writer.cpp", |
| 1424 | "xfa/fxbarcode/oned/BC_OnedCode128Writer.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1425 | "xfa/fxbarcode/oned/BC_OnedCode39Writer.cpp", |
| 1426 | "xfa/fxbarcode/oned/BC_OnedCode39Writer.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1427 | "xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp", |
| 1428 | "xfa/fxbarcode/oned/BC_OnedEAN13Writer.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1429 | "xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp", |
| 1430 | "xfa/fxbarcode/oned/BC_OnedEAN8Writer.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1431 | "xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp", |
| 1432 | "xfa/fxbarcode/oned/BC_OnedUPCAWriter.h", |
| 1433 | "xfa/fxbarcode/pdf417/BC_PDF417.cpp", |
| 1434 | "xfa/fxbarcode/pdf417/BC_PDF417.h", |
| 1435 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp", |
| 1436 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1437 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.cpp", |
| 1438 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1439 | "xfa/fxbarcode/pdf417/BC_PDF417Compaction.cpp", |
| 1440 | "xfa/fxbarcode/pdf417/BC_PDF417Compaction.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1441 | "xfa/fxbarcode/pdf417/BC_PDF417ErrorCorrection.cpp", |
| 1442 | "xfa/fxbarcode/pdf417/BC_PDF417ErrorCorrection.h", |
| 1443 | "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.cpp", |
| 1444 | "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1445 | "xfa/fxbarcode/pdf417/BC_PDF417Writer.cpp", |
| 1446 | "xfa/fxbarcode/pdf417/BC_PDF417Writer.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1447 | "xfa/fxbarcode/qrcode/BC_QRCodeWriter.cpp", |
| 1448 | "xfa/fxbarcode/qrcode/BC_QRCodeWriter.h", |
| 1449 | "xfa/fxbarcode/qrcode/BC_QRCoder.cpp", |
| 1450 | "xfa/fxbarcode/qrcode/BC_QRCoder.h", |
| 1451 | "xfa/fxbarcode/qrcode/BC_QRCoderBitVector.cpp", |
| 1452 | "xfa/fxbarcode/qrcode/BC_QRCoderBitVector.h", |
| 1453 | "xfa/fxbarcode/qrcode/BC_QRCoderBlockPair.cpp", |
| 1454 | "xfa/fxbarcode/qrcode/BC_QRCoderBlockPair.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1455 | "xfa/fxbarcode/qrcode/BC_QRCoderECB.cpp", |
| 1456 | "xfa/fxbarcode/qrcode/BC_QRCoderECB.h", |
| 1457 | "xfa/fxbarcode/qrcode/BC_QRCoderECBlocks.cpp", |
| 1458 | "xfa/fxbarcode/qrcode/BC_QRCoderECBlocks.h", |
| 1459 | "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.cpp", |
| 1460 | "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.h", |
| 1461 | "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.cpp", |
| 1462 | "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1463 | "xfa/fxbarcode/qrcode/BC_QRCoderMaskUtil.cpp", |
| 1464 | "xfa/fxbarcode/qrcode/BC_QRCoderMaskUtil.h", |
| 1465 | "xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp", |
| 1466 | "xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.h", |
| 1467 | "xfa/fxbarcode/qrcode/BC_QRCoderMode.cpp", |
| 1468 | "xfa/fxbarcode/qrcode/BC_QRCoderMode.h", |
| 1469 | "xfa/fxbarcode/qrcode/BC_QRCoderVersion.cpp", |
| 1470 | "xfa/fxbarcode/qrcode/BC_QRCoderVersion.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1471 | "xfa/fxbarcode/utils.h", |
weili | 625ad66 | 2016-06-15 11:21:33 -0700 | [diff] [blame] | 1472 | "xfa/fxfa/app/cxfa_eventparam.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1473 | "xfa/fxfa/app/xfa_checksum.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1474 | "xfa/fxfa/app/xfa_ffapp.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1475 | "xfa/fxfa/app/xfa_ffbarcode.cpp", |
| 1476 | "xfa/fxfa/app/xfa_ffbarcode.h", |
| 1477 | "xfa/fxfa/app/xfa_ffcheckbutton.cpp", |
| 1478 | "xfa/fxfa/app/xfa_ffcheckbutton.h", |
| 1479 | "xfa/fxfa/app/xfa_ffchoicelist.cpp", |
| 1480 | "xfa/fxfa/app/xfa_ffchoicelist.h", |
| 1481 | "xfa/fxfa/app/xfa_ffdoc.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1482 | "xfa/fxfa/app/xfa_ffdochandler.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1483 | "xfa/fxfa/app/xfa_ffdocview.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1484 | "xfa/fxfa/app/xfa_ffdraw.cpp", |
| 1485 | "xfa/fxfa/app/xfa_ffdraw.h", |
| 1486 | "xfa/fxfa/app/xfa_ffexclgroup.cpp", |
| 1487 | "xfa/fxfa/app/xfa_ffexclgroup.h", |
| 1488 | "xfa/fxfa/app/xfa_fffield.cpp", |
| 1489 | "xfa/fxfa/app/xfa_fffield.h", |
| 1490 | "xfa/fxfa/app/xfa_ffimage.cpp", |
| 1491 | "xfa/fxfa/app/xfa_ffimage.h", |
| 1492 | "xfa/fxfa/app/xfa_ffimageedit.cpp", |
| 1493 | "xfa/fxfa/app/xfa_ffimageedit.h", |
| 1494 | "xfa/fxfa/app/xfa_ffnotify.cpp", |
| 1495 | "xfa/fxfa/app/xfa_ffnotify.h", |
| 1496 | "xfa/fxfa/app/xfa_ffpageview.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1497 | "xfa/fxfa/app/xfa_ffpath.cpp", |
| 1498 | "xfa/fxfa/app/xfa_ffpath.h", |
| 1499 | "xfa/fxfa/app/xfa_ffpushbutton.cpp", |
| 1500 | "xfa/fxfa/app/xfa_ffpushbutton.h", |
| 1501 | "xfa/fxfa/app/xfa_ffsignature.cpp", |
| 1502 | "xfa/fxfa/app/xfa_ffsignature.h", |
| 1503 | "xfa/fxfa/app/xfa_ffsubform.cpp", |
| 1504 | "xfa/fxfa/app/xfa_ffsubform.h", |
| 1505 | "xfa/fxfa/app/xfa_fftext.cpp", |
| 1506 | "xfa/fxfa/app/xfa_fftext.h", |
| 1507 | "xfa/fxfa/app/xfa_fftextedit.cpp", |
| 1508 | "xfa/fxfa/app/xfa_fftextedit.h", |
| 1509 | "xfa/fxfa/app/xfa_ffwidget.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1510 | "xfa/fxfa/app/xfa_ffwidgetacc.cpp", |
| 1511 | "xfa/fxfa/app/xfa_ffwidgetacc.h", |
| 1512 | "xfa/fxfa/app/xfa_ffwidgethandler.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1513 | "xfa/fxfa/app/xfa_fontmgr.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1514 | "xfa/fxfa/app/xfa_fwladapter.cpp", |
| 1515 | "xfa/fxfa/app/xfa_fwladapter.h", |
| 1516 | "xfa/fxfa/app/xfa_fwltheme.cpp", |
| 1517 | "xfa/fxfa/app/xfa_fwltheme.h", |
| 1518 | "xfa/fxfa/app/xfa_rendercontext.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1519 | "xfa/fxfa/app/xfa_textlayout.cpp", |
| 1520 | "xfa/fxfa/app/xfa_textlayout.h", |
dsinclair | 5b49309 | 2016-09-29 20:20:24 -0700 | [diff] [blame] | 1521 | "xfa/fxfa/cxfa_eventparam.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1522 | "xfa/fxfa/fm2js/xfa_error.cpp", |
| 1523 | "xfa/fxfa/fm2js/xfa_error.h", |
| 1524 | "xfa/fxfa/fm2js/xfa_expression.cpp", |
| 1525 | "xfa/fxfa/fm2js/xfa_expression.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1526 | "xfa/fxfa/fm2js/xfa_fm2jscontext.cpp", |
| 1527 | "xfa/fxfa/fm2js/xfa_fm2jscontext.h", |
| 1528 | "xfa/fxfa/fm2js/xfa_fmparse.cpp", |
| 1529 | "xfa/fxfa/fm2js/xfa_fmparse.h", |
| 1530 | "xfa/fxfa/fm2js/xfa_lexer.cpp", |
| 1531 | "xfa/fxfa/fm2js/xfa_lexer.h", |
| 1532 | "xfa/fxfa/fm2js/xfa_program.cpp", |
| 1533 | "xfa/fxfa/fm2js/xfa_program.h", |
| 1534 | "xfa/fxfa/fm2js/xfa_simpleexpression.cpp", |
| 1535 | "xfa/fxfa/fm2js/xfa_simpleexpression.h", |
dsinclair | 5b49309 | 2016-09-29 20:20:24 -0700 | [diff] [blame] | 1536 | "xfa/fxfa/fxfa.h", |
| 1537 | "xfa/fxfa/fxfa_basic.h", |
| 1538 | "xfa/fxfa/fxfa_widget.h", |
dsinclair | c1515ef | 2016-07-20 06:16:06 -0700 | [diff] [blame] | 1539 | "xfa/fxfa/parser/cscript_datawindow.cpp", |
| 1540 | "xfa/fxfa/parser/cscript_datawindow.h", |
| 1541 | "xfa/fxfa/parser/cscript_eventpseudomodel.cpp", |
| 1542 | "xfa/fxfa/parser/cscript_eventpseudomodel.h", |
| 1543 | "xfa/fxfa/parser/cscript_hostpseudomodel.cpp", |
| 1544 | "xfa/fxfa/parser/cscript_hostpseudomodel.h", |
| 1545 | "xfa/fxfa/parser/cscript_layoutpseudomodel.cpp", |
| 1546 | "xfa/fxfa/parser/cscript_layoutpseudomodel.h", |
| 1547 | "xfa/fxfa/parser/cscript_logpseudomodel.cpp", |
| 1548 | "xfa/fxfa/parser/cscript_logpseudomodel.h", |
| 1549 | "xfa/fxfa/parser/cscript_signaturepseudomodel.cpp", |
| 1550 | "xfa/fxfa/parser/cscript_signaturepseudomodel.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1551 | "xfa/fxfa/parser/cxfa_arc.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1552 | "xfa/fxfa/parser/cxfa_arraynodelist.cpp", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1553 | "xfa/fxfa/parser/cxfa_assist.cpp", |
| 1554 | "xfa/fxfa/parser/cxfa_assist.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1555 | "xfa/fxfa/parser/cxfa_attachnodelist.cpp", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1556 | "xfa/fxfa/parser/cxfa_bind.cpp", |
| 1557 | "xfa/fxfa/parser/cxfa_bind.h", |
| 1558 | "xfa/fxfa/parser/cxfa_binditems.cpp", |
| 1559 | "xfa/fxfa/parser/cxfa_binditems.h", |
| 1560 | "xfa/fxfa/parser/cxfa_border.h", |
| 1561 | "xfa/fxfa/parser/cxfa_box.cpp", |
| 1562 | "xfa/fxfa/parser/cxfa_box.h", |
| 1563 | "xfa/fxfa/parser/cxfa_calculate.cpp", |
| 1564 | "xfa/fxfa/parser/cxfa_calculate.h", |
| 1565 | "xfa/fxfa/parser/cxfa_caption.cpp", |
| 1566 | "xfa/fxfa/parser/cxfa_caption.h", |
dsinclair | 0b851ff | 2016-07-21 12:03:01 -0700 | [diff] [blame] | 1567 | "xfa/fxfa/parser/cxfa_containerlayoutitem.cpp", |
| 1568 | "xfa/fxfa/parser/cxfa_containerlayoutitem.h", |
| 1569 | "xfa/fxfa/parser/cxfa_contentlayoutitem.cpp", |
| 1570 | "xfa/fxfa/parser/cxfa_contentlayoutitem.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1571 | "xfa/fxfa/parser/cxfa_corner.h", |
| 1572 | "xfa/fxfa/parser/cxfa_data.cpp", |
| 1573 | "xfa/fxfa/parser/cxfa_data.h", |
dsinclair | 3a7cc73 | 2016-07-21 12:04:34 -0700 | [diff] [blame] | 1574 | "xfa/fxfa/parser/cxfa_dataexporter.cpp", |
| 1575 | "xfa/fxfa/parser/cxfa_dataexporter.h", |
| 1576 | "xfa/fxfa/parser/cxfa_dataimporter.cpp", |
| 1577 | "xfa/fxfa/parser/cxfa_dataimporter.h", |
dsinclair | 1628024 | 2016-07-21 12:03:47 -0700 | [diff] [blame] | 1578 | "xfa/fxfa/parser/cxfa_document.cpp", |
| 1579 | "xfa/fxfa/parser/cxfa_document.h", |
dsinclair | 34f86b0 | 2016-07-11 08:42:33 -0700 | [diff] [blame] | 1580 | "xfa/fxfa/parser/cxfa_document_parser.cpp", |
| 1581 | "xfa/fxfa/parser/cxfa_document_parser.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1582 | "xfa/fxfa/parser/cxfa_edge.h", |
| 1583 | "xfa/fxfa/parser/cxfa_event.cpp", |
| 1584 | "xfa/fxfa/parser/cxfa_event.h", |
| 1585 | "xfa/fxfa/parser/cxfa_exdata.cpp", |
| 1586 | "xfa/fxfa/parser/cxfa_exdata.h", |
| 1587 | "xfa/fxfa/parser/cxfa_fill.cpp", |
| 1588 | "xfa/fxfa/parser/cxfa_fill.h", |
| 1589 | "xfa/fxfa/parser/cxfa_font.cpp", |
| 1590 | "xfa/fxfa/parser/cxfa_font.h", |
| 1591 | "xfa/fxfa/parser/cxfa_image.cpp", |
| 1592 | "xfa/fxfa/parser/cxfa_image.h", |
dsinclair | 0b851ff | 2016-07-21 12:03:01 -0700 | [diff] [blame] | 1593 | "xfa/fxfa/parser/cxfa_layoutitem.cpp", |
| 1594 | "xfa/fxfa/parser/cxfa_layoutitem.h", |
dsinclair | 8d0cc67 | 2016-08-03 12:58:53 -0700 | [diff] [blame] | 1595 | "xfa/fxfa/parser/cxfa_layoutpagemgr.cpp", |
| 1596 | "xfa/fxfa/parser/cxfa_layoutpagemgr.h", |
dsinclair | 0b851ff | 2016-07-21 12:03:01 -0700 | [diff] [blame] | 1597 | "xfa/fxfa/parser/cxfa_layoutprocessor.cpp", |
| 1598 | "xfa/fxfa/parser/cxfa_layoutprocessor.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1599 | "xfa/fxfa/parser/cxfa_line.cpp", |
| 1600 | "xfa/fxfa/parser/cxfa_line.h", |
| 1601 | "xfa/fxfa/parser/cxfa_margin.cpp", |
| 1602 | "xfa/fxfa/parser/cxfa_margin.h", |
dsinclair | 9eb0db1 | 2016-07-21 12:01:39 -0700 | [diff] [blame] | 1603 | "xfa/fxfa/parser/cxfa_measurement.cpp", |
| 1604 | "xfa/fxfa/parser/cxfa_measurement.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1605 | "xfa/fxfa/parser/cxfa_node.cpp", |
dsinclair | 31f8740 | 2016-07-20 06:34:45 -0700 | [diff] [blame] | 1606 | "xfa/fxfa/parser/cxfa_nodehelper.cpp", |
| 1607 | "xfa/fxfa/parser/cxfa_nodehelper.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1608 | "xfa/fxfa/parser/cxfa_nodelist.cpp", |
| 1609 | "xfa/fxfa/parser/cxfa_object.cpp", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1610 | "xfa/fxfa/parser/cxfa_occur.cpp", |
| 1611 | "xfa/fxfa/parser/cxfa_occur.h", |
| 1612 | "xfa/fxfa/parser/cxfa_para.cpp", |
| 1613 | "xfa/fxfa/parser/cxfa_para.h", |
| 1614 | "xfa/fxfa/parser/cxfa_rectangle.h", |
dsinclair | 31f8740 | 2016-07-20 06:34:45 -0700 | [diff] [blame] | 1615 | "xfa/fxfa/parser/cxfa_resolveprocessor.cpp", |
| 1616 | "xfa/fxfa/parser/cxfa_resolveprocessor.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1617 | "xfa/fxfa/parser/cxfa_script.cpp", |
| 1618 | "xfa/fxfa/parser/cxfa_script.h", |
dsinclair | 31f8740 | 2016-07-20 06:34:45 -0700 | [diff] [blame] | 1619 | "xfa/fxfa/parser/cxfa_scriptcontext.cpp", |
| 1620 | "xfa/fxfa/parser/cxfa_scriptcontext.h", |
dsinclair | 34f86b0 | 2016-07-11 08:42:33 -0700 | [diff] [blame] | 1621 | "xfa/fxfa/parser/cxfa_simple_parser.cpp", |
| 1622 | "xfa/fxfa/parser/cxfa_simple_parser.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1623 | "xfa/fxfa/parser/cxfa_stroke.cpp", |
| 1624 | "xfa/fxfa/parser/cxfa_stroke.h", |
| 1625 | "xfa/fxfa/parser/cxfa_submit.cpp", |
| 1626 | "xfa/fxfa/parser/cxfa_submit.h", |
| 1627 | "xfa/fxfa/parser/cxfa_text.cpp", |
| 1628 | "xfa/fxfa/parser/cxfa_text.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1629 | "xfa/fxfa/parser/cxfa_thisproxy.cpp", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1630 | "xfa/fxfa/parser/cxfa_tooltip.cpp", |
| 1631 | "xfa/fxfa/parser/cxfa_tooltip.h", |
dsinclair | 6ea5ba0 | 2016-08-03 10:20:32 -0700 | [diff] [blame] | 1632 | "xfa/fxfa/parser/cxfa_traversestrategy_contentareacontainerlayoutitem.h", |
| 1633 | "xfa/fxfa/parser/cxfa_traversestrategy_contentlayoutitem.h", |
dsinclair | 0b851ff | 2016-07-21 12:03:01 -0700 | [diff] [blame] | 1634 | "xfa/fxfa/parser/cxfa_traversestrategy_layoutitem.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1635 | "xfa/fxfa/parser/cxfa_validate.cpp", |
| 1636 | "xfa/fxfa/parser/cxfa_validate.h", |
| 1637 | "xfa/fxfa/parser/cxfa_value.cpp", |
| 1638 | "xfa/fxfa/parser/cxfa_value.h", |
dsinclair | 8f3074b | 2016-06-02 17:45:25 -0700 | [diff] [blame] | 1639 | "xfa/fxfa/parser/cxfa_valuearray.cpp", |
| 1640 | "xfa/fxfa/parser/cxfa_valuearray.h", |
dsinclair | 9eb0db1 | 2016-07-21 12:01:39 -0700 | [diff] [blame] | 1641 | "xfa/fxfa/parser/cxfa_widetextread.cpp", |
| 1642 | "xfa/fxfa/parser/cxfa_widetextread.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1643 | "xfa/fxfa/parser/cxfa_widgetdata.cpp", |
| 1644 | "xfa/fxfa/parser/cxfa_widgetdata.h", |
dsinclair | 34f86b0 | 2016-07-11 08:42:33 -0700 | [diff] [blame] | 1645 | "xfa/fxfa/parser/cxfa_xml_parser.cpp", |
| 1646 | "xfa/fxfa/parser/cxfa_xml_parser.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1647 | "xfa/fxfa/parser/xfa_basic_data.cpp", |
dsinclair | f1494f0 | 2016-07-07 12:56:17 -0700 | [diff] [blame] | 1648 | "xfa/fxfa/parser/xfa_basic_data.h", |
dsinclair | 8bdbc88 | 2016-07-07 07:55:39 -0700 | [diff] [blame] | 1649 | "xfa/fxfa/parser/xfa_basic_data_attributes.cpp", |
| 1650 | "xfa/fxfa/parser/xfa_basic_data_element_attributes.cpp", |
| 1651 | "xfa/fxfa/parser/xfa_basic_data_element_properties.cpp", |
| 1652 | "xfa/fxfa/parser/xfa_basic_data_element_script.cpp", |
| 1653 | "xfa/fxfa/parser/xfa_basic_data_enum.cpp", |
| 1654 | "xfa/fxfa/parser/xfa_basic_data_packets.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1655 | "xfa/fxfa/parser/xfa_document_datamerger_imp.cpp", |
| 1656 | "xfa/fxfa/parser/xfa_document_datamerger_imp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1657 | "xfa/fxfa/parser/xfa_layout_itemlayout.cpp", |
| 1658 | "xfa/fxfa/parser/xfa_layout_itemlayout.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1659 | "xfa/fxfa/parser/xfa_locale.cpp", |
| 1660 | "xfa/fxfa/parser/xfa_locale.h", |
| 1661 | "xfa/fxfa/parser/xfa_localemgr.cpp", |
| 1662 | "xfa/fxfa/parser/xfa_localemgr.h", |
| 1663 | "xfa/fxfa/parser/xfa_localevalue.cpp", |
| 1664 | "xfa/fxfa/parser/xfa_localevalue.h", |
| 1665 | "xfa/fxfa/parser/xfa_object.h", |
dsinclair | 31f8740 | 2016-07-20 06:34:45 -0700 | [diff] [blame] | 1666 | "xfa/fxfa/parser/xfa_resolvenode_rs.h", |
dsinclair | 39fdfc3 | 2016-07-21 12:09:45 -0700 | [diff] [blame] | 1667 | "xfa/fxfa/parser/xfa_utils.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1668 | "xfa/fxfa/parser/xfa_utils.h", |
dsinclair | 5b49309 | 2016-09-29 20:20:24 -0700 | [diff] [blame] | 1669 | "xfa/fxfa/xfa_checksum.h", |
| 1670 | "xfa/fxfa/xfa_ffapp.h", |
| 1671 | "xfa/fxfa/xfa_ffdoc.h", |
| 1672 | "xfa/fxfa/xfa_ffdochandler.h", |
| 1673 | "xfa/fxfa/xfa_ffdocview.h", |
| 1674 | "xfa/fxfa/xfa_ffpageview.h", |
| 1675 | "xfa/fxfa/xfa_ffwidget.h", |
| 1676 | "xfa/fxfa/xfa_ffwidgethandler.h", |
| 1677 | "xfa/fxfa/xfa_fontmgr.h", |
| 1678 | "xfa/fxfa/xfa_rendercontext.h", |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 1679 | "xfa/fxgraphics/cagg_graphics.cpp", |
| 1680 | "xfa/fxgraphics/cagg_graphics.h", |
| 1681 | "xfa/fxgraphics/cfx_color.cpp", |
| 1682 | "xfa/fxgraphics/cfx_color.h", |
| 1683 | "xfa/fxgraphics/cfx_graphics.cpp", |
dsinclair | 202ad72 | 2016-09-29 17:41:42 -0700 | [diff] [blame] | 1684 | "xfa/fxgraphics/cfx_graphics.h", |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 1685 | "xfa/fxgraphics/cfx_path.cpp", |
| 1686 | "xfa/fxgraphics/cfx_path.h", |
| 1687 | "xfa/fxgraphics/cfx_path_generator.cpp", |
| 1688 | "xfa/fxgraphics/cfx_path_generator.h", |
| 1689 | "xfa/fxgraphics/cfx_pattern.cpp", |
| 1690 | "xfa/fxgraphics/cfx_pattern.h", |
| 1691 | "xfa/fxgraphics/cfx_shading.cpp", |
| 1692 | "xfa/fxgraphics/cfx_shading.h", |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1693 | ] |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1694 | include_dirs = [ "." ] |
dsinclair | 8bd9ce0 | 2016-06-09 13:24:34 -0700 | [diff] [blame] | 1695 | deps = [ |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1696 | ":fxcrt", |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1697 | ":fxjs", |
dsinclair | 8bd9ce0 | 2016-06-09 13:24:34 -0700 | [diff] [blame] | 1698 | ] |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1699 | configs += [ |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1700 | ":pdfium_core_config", |
weili | dcc29b1 | 2016-05-27 17:58:23 -0700 | [diff] [blame] | 1701 | ":xfa_warnings", |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1702 | ] |
| 1703 | } |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 1704 | } |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1705 | |
| 1706 | test("pdfium_unittests") { |
| 1707 | sources = [ |
tsepez | f5cabbf | 2016-11-21 12:08:22 -0800 | [diff] [blame] | 1708 | "core/fdrm/crypto/fx_crypt_unittest.cpp", |
dsinclair | bc5e6d2 | 2016-10-04 11:08:49 -0700 | [diff] [blame] | 1709 | "core/fpdfapi/font/fpdf_font_cid_unittest.cpp", |
| 1710 | "core/fpdfapi/font/fpdf_font_unittest.cpp", |
npm | 014b012 | 2016-11-07 08:42:11 -0800 | [diff] [blame] | 1711 | "core/fpdfapi/page/cpdf_streamcontentparser_unittest.cpp", |
| 1712 | "core/fpdfapi/page/cpdf_streamparser_unittest.cpp", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 1713 | "core/fpdfapi/parser/cpdf_array_unittest.cpp", |
npm | 3cad596 | 2016-10-21 16:02:15 -0700 | [diff] [blame] | 1714 | "core/fpdfapi/parser/cpdf_document_unittest.cpp", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 1715 | "core/fpdfapi/parser/cpdf_object_unittest.cpp", |
| 1716 | "core/fpdfapi/parser/cpdf_parser_unittest.cpp", |
| 1717 | "core/fpdfapi/parser/cpdf_simple_parser_unittest.cpp", |
| 1718 | "core/fpdfapi/parser/cpdf_syntax_parser_unittest.cpp", |
| 1719 | "core/fpdfapi/parser/fpdf_parser_decode_unittest.cpp", |
dsinclair | c59fa88 | 2016-11-08 06:55:40 -0800 | [diff] [blame] | 1720 | "core/fpdfdoc/cpdf_dest_unittest.cpp", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 1721 | "core/fpdfdoc/cpdf_filespec_unittest.cpp", |
thestig | 695aac5 | 2016-08-25 09:13:52 -0700 | [diff] [blame] | 1722 | "core/fpdfdoc/cpdf_formfield_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1723 | "core/fpdftext/fpdf_text_int_unittest.cpp", |
| 1724 | "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
tsepez | e21501d | 2016-08-02 13:36:16 -0700 | [diff] [blame] | 1725 | "core/fxcodec/jbig2/JBig2_Image_unittest.cpp", |
tsepez | 1c62054 | 2016-09-12 09:47:52 -0700 | [diff] [blame] | 1726 | "core/fxcrt/cfx_observable_unittest.cpp", |
tsepez | 602aebc | 2016-03-29 15:04:21 -0700 | [diff] [blame] | 1727 | "core/fxcrt/cfx_retain_ptr_unittest.cpp", |
tsepez | 2239cee | 2016-10-17 11:20:01 -0700 | [diff] [blame] | 1728 | "core/fxcrt/cfx_shared_copy_on_write_unittest.cpp", |
tsepez | d987143 | 2016-09-15 14:01:31 -0700 | [diff] [blame] | 1729 | "core/fxcrt/cfx_string_pool_template_unittest.cpp", |
tsepez | 4ba37c6 | 2016-09-28 14:49:01 -0700 | [diff] [blame] | 1730 | "core/fxcrt/cfx_weak_ptr_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1731 | "core/fxcrt/fx_basic_bstring_unittest.cpp", |
| 1732 | "core/fxcrt/fx_basic_gcc_unittest.cpp", |
| 1733 | "core/fxcrt/fx_basic_memmgr_unittest.cpp", |
thestig | 1b99b2d | 2016-05-20 11:50:06 -0700 | [diff] [blame] | 1734 | "core/fxcrt/fx_basic_util_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1735 | "core/fxcrt/fx_basic_wstring_unittest.cpp", |
| 1736 | "core/fxcrt/fx_bidi_unittest.cpp", |
| 1737 | "core/fxcrt/fx_extension_unittest.cpp", |
| 1738 | "core/fxcrt/fx_system_unittest.cpp", |
weili | 229d05d | 2016-08-11 19:43:58 -0700 | [diff] [blame] | 1739 | "core/fxge/dib/fx_dib_engine_unittest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1740 | "fpdfsdk/fpdfdoc_unittest.cpp", |
thestig | dc359b0 | 2016-08-09 15:46:20 -0700 | [diff] [blame] | 1741 | "fpdfsdk/fpdfeditimg_unittest.cpp", |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1742 | ] |
| 1743 | deps = [ |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 1744 | ":pdfium", |
| 1745 | ":test_support", |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 1746 | "//testing/gtest", |
| 1747 | "//testing/gtest:gtest_main", |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1748 | ] |
Dan Sinclair | 30410ce | 2016-03-16 10:20:24 -0400 | [diff] [blame] | 1749 | include_dirs = [] |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 1750 | if (pdf_enable_xfa) { |
| 1751 | sources += [ |
dsinclair | fc2cdf8 | 2016-05-19 18:07:11 -0700 | [diff] [blame] | 1752 | "xfa/fde/css/fde_cssdatatable_unittest.cpp", |
dsinclair | 11ac93c | 2016-03-31 09:45:20 -0700 | [diff] [blame] | 1753 | "xfa/fde/xml/fde_xml_imp_unittest.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1754 | "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", |
tsepez | 430ab83 | 2016-11-18 14:48:21 -0800 | [diff] [blame] | 1755 | "xfa/fxfa/app/xfa_ffapp_unittest.cpp", |
dsinclair | c7600f9 | 2016-05-19 14:12:30 -0700 | [diff] [blame] | 1756 | "xfa/fxfa/app/xfa_textlayout_unittest.cpp", |
dsinclair | e85f971 | 2016-08-03 10:08:13 -0700 | [diff] [blame] | 1757 | "xfa/fxfa/fm2js/xfa_simpleexpression_unittest.cpp", |
dsinclair | 39fdfc3 | 2016-07-21 12:09:45 -0700 | [diff] [blame] | 1758 | "xfa/fxfa/parser/xfa_utils_unittest.cpp", |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 1759 | ] |
| 1760 | } |
caryclark | af177fe | 2016-11-16 10:10:03 -0800 | [diff] [blame] | 1761 | if (pdf_use_skia || pdf_use_skia_paths) { |
caryclark | e89391e | 2016-06-29 07:10:49 -0700 | [diff] [blame] | 1762 | sources += [ "core/fxge/skia/fx_skia_device_unittest.cpp" ] |
| 1763 | deps += [ "//skia" ] |
| 1764 | } |
Wei Li | 614d20a | 2016-03-15 13:55:12 -0700 | [diff] [blame] | 1765 | if (pdf_enable_v8) { |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 1766 | sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] |
Wei Li | 614d20a | 2016-03-15 13:55:12 -0700 | [diff] [blame] | 1767 | include_dirs += [ |
| 1768 | "//v8", |
| 1769 | "//v8/include", |
| 1770 | ] |
| 1771 | } |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1772 | configs += [ ":pdfium_core_config" ] |
jbudorick | 7f3a15f | 2016-06-10 06:28:40 -0700 | [diff] [blame] | 1773 | if (is_android) { |
| 1774 | ignore_all_data_deps = true |
| 1775 | use_raw_android_executable = true |
| 1776 | } |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1777 | } |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1778 | |
| 1779 | test("pdfium_embeddertests") { |
| 1780 | sources = [ |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 1781 | "core/fpdfapi/page/fpdf_page_func_embeddertest.cpp", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 1782 | "core/fpdfapi/parser/cpdf_parser_embeddertest.cpp", |
| 1783 | "core/fpdfapi/parser/cpdf_security_handler_embeddertest.cpp", |
| 1784 | "core/fpdfapi/parser/fpdf_parser_decode_embeddertest.cpp", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 1785 | "core/fpdfapi/render/fpdf_render_loadimage_embeddertest.cpp", |
| 1786 | "core/fpdfapi/render/fpdf_render_pattern_embeddertest.cpp", |
weili | 6faf9f9 | 2016-08-02 11:34:08 -0700 | [diff] [blame] | 1787 | "core/fxcodec/codec/fx_codec_embeddertest.cpp", |
ochang | b8627c9 | 2016-04-11 13:47:41 -0700 | [diff] [blame] | 1788 | "core/fxge/ge/fx_ge_text_embeddertest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1789 | "fpdfsdk/fpdf_dataavail_embeddertest.cpp", |
tsepez | d0ecd89 | 2016-11-08 17:30:04 -0800 | [diff] [blame] | 1790 | "fpdfsdk/fpdf_flatten_embeddertest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1791 | "fpdfsdk/fpdfdoc_embeddertest.cpp", |
| 1792 | "fpdfsdk/fpdfedit_embeddertest.cpp", |
| 1793 | "fpdfsdk/fpdfext_embeddertest.cpp", |
| 1794 | "fpdfsdk/fpdfformfill_embeddertest.cpp", |
tsepez | 211d4ed | 2016-11-11 17:23:48 -0800 | [diff] [blame] | 1795 | "fpdfsdk/fpdfppo_embeddertest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1796 | "fpdfsdk/fpdfsave_embeddertest.cpp", |
| 1797 | "fpdfsdk/fpdftext_embeddertest.cpp", |
| 1798 | "fpdfsdk/fpdfview_c_api_test.c", |
| 1799 | "fpdfsdk/fpdfview_c_api_test.h", |
| 1800 | "fpdfsdk/fpdfview_embeddertest.cpp", |
| 1801 | "fpdfsdk/fsdk_baseform_embeddertest.cpp", |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1802 | "testing/embedder_test.cpp", |
| 1803 | "testing/embedder_test.h", |
Tom Sepez | a310e00 | 2015-02-27 13:03:07 -0800 | [diff] [blame] | 1804 | "testing/embedder_test_mock_delegate.h", |
Tom Sepez | 6efc0ad | 2015-06-02 17:11:18 -0700 | [diff] [blame] | 1805 | "testing/embedder_test_timer_handling_delegate.h", |
dsinclair | 34f86b0 | 2016-07-11 08:42:33 -0700 | [diff] [blame] | 1806 | "xfa/fxfa/parser/cxfa_simple_parser_embeddertest.cpp", |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1807 | ] |
| 1808 | deps = [ |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1809 | ":pdfium", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 1810 | ":test_support", |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 1811 | "//testing/gmock", |
| 1812 | "//testing/gtest", |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1813 | ] |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 1814 | include_dirs = [ "testing/gmock/include" ] |
thestig | c65e11e | 2016-08-30 21:56:33 -0700 | [diff] [blame] | 1815 | configs += [ ":pdfium_core_config" ] |
| 1816 | |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1817 | if (pdf_enable_v8) { |
Lei Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 1818 | sources += [ |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1819 | "fpdfsdk/javascript/public_methods_embeddertest.cpp", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1820 | "fxjs/fxjs_v8_embeddertest.cpp", |
Lei Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 1821 | "testing/js_embedder_test.cpp", |
| 1822 | "testing/js_embedder_test.h", |
| 1823 | ] |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1824 | deps += [ ":fxjs" ] |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 1825 | configs += [ "//v8:external_startup_data" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1826 | } |
jbudorick | 7f3a15f | 2016-06-10 06:28:40 -0700 | [diff] [blame] | 1827 | if (is_android) { |
| 1828 | ignore_all_data_deps = true |
| 1829 | use_raw_android_executable = true |
| 1830 | } |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1831 | } |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 1832 | |
| 1833 | if (pdf_is_standalone) { |
| 1834 | source_set("samples") { |
| 1835 | testonly = true |
| 1836 | deps = [ |
| 1837 | "//samples", |
| 1838 | ] |
| 1839 | } |
thestig | 62114cf | 2016-11-08 12:59:30 -0800 | [diff] [blame] | 1840 | group("fuzzers") { |
| 1841 | testonly = true |
| 1842 | deps = [ |
| 1843 | "//testing/libfuzzer", |
| 1844 | ] |
| 1845 | } |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 1846 | } |