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 | |
Tom Sepez | a32f760 | 2015-01-15 09:34:34 -0800 | [diff] [blame] | 5 | import("//testing/test.gni") |
dsinclair | 038bf0b | 2016-04-30 06:00:05 -0700 | [diff] [blame] | 6 | import("pdfium.gni") |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 7 | |
Dominik Röttsches | 4b0671a | 2017-03-30 11:07:43 +0300 | [diff] [blame] | 8 | group("freetype_common") { |
| 9 | public_deps = [] |
| 10 | if (pdf_bundle_freetype) { |
| 11 | public_deps += [ "third_party:fx_freetype" ] |
| 12 | } else { |
| 13 | public_deps += [ "//build/config/freetype" ] |
| 14 | } |
| 15 | } |
| 16 | |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 17 | config("pdfium_common_config") { |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 18 | cflags = [] |
dsinclair | 6e162b5 | 2017-01-24 11:18:16 -0800 | [diff] [blame] | 19 | ldflags = [] |
Dominik Röttsches | 4b0671a | 2017-03-30 11:07:43 +0300 | [diff] [blame] | 20 | include_dirs = [ "." ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 21 | defines = [ |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 22 | "OPJ_STATIC", |
John Abd-El-Malek | 385729b | 2015-02-06 15:51:11 -0800 | [diff] [blame] | 23 | "PNG_PREFIX", |
John Abd-El-Malek | 385729b | 2015-02-06 15:51:11 -0800 | [diff] [blame] | 24 | "PNG_USE_READ_MACROS", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 25 | ] |
| 26 | |
| 27 | if (pdf_use_skia) { |
| 28 | defines += [ "_SKIA_SUPPORT_" ] |
| 29 | } |
| 30 | |
caryclark | af177fe | 2016-11-16 10:10:03 -0800 | [diff] [blame] | 31 | if (pdf_use_skia_paths) { |
| 32 | defines += [ "_SKIA_SUPPORT_PATHS_" ] |
| 33 | } |
| 34 | |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 35 | if (pdf_enable_v8) { |
| 36 | defines += [ "PDF_ENABLE_V8" ] |
| 37 | } |
| 38 | |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 39 | if (pdf_enable_xfa) { |
| 40 | defines += [ "PDF_ENABLE_XFA" ] |
Tom Sepez | 73c9f3b | 2017-02-27 10:12:59 -0800 | [diff] [blame] | 41 | if (pdf_enable_xfa_bmp) { |
| 42 | defines += [ "PDF_ENABLE_XFA_BMP" ] |
| 43 | } |
| 44 | if (pdf_enable_xfa_gif) { |
| 45 | defines += [ "PDF_ENABLE_XFA_GIF" ] |
| 46 | } |
| 47 | if (pdf_enable_xfa_png) { |
| 48 | defines += [ "PDF_ENABLE_XFA_PNG" ] |
| 49 | } |
| 50 | if (pdf_enable_xfa_tiff) { |
| 51 | defines += [ "PDF_ENABLE_XFA_TIFF" ] |
| 52 | } |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 53 | } |
thestig | 3e454bf | 2016-07-29 16:29:04 -0700 | [diff] [blame] | 54 | |
| 55 | if (pdf_use_win32_gdi) { |
| 56 | defines += [ "PDFIUM_PRINT_TEXT_WITH_GDI" ] |
| 57 | } |
dsinclair | 6e162b5 | 2017-01-24 11:18:16 -0800 | [diff] [blame] | 58 | |
| 59 | if (use_coverage && is_clang) { |
| 60 | cflags += [ |
| 61 | "--coverage", |
| 62 | "-g", |
| 63 | "-O0", |
| 64 | ] |
| 65 | ldflags += [ "--coverage" ] |
| 66 | } |
Dan Sinclair | 77e2a6c | 2017-03-13 09:35:12 -0400 | [diff] [blame] | 67 | |
| 68 | if (is_win) { |
| 69 | # Assume UTF-8 by default to avoid code page dependencies. |
| 70 | cflags += [ "/utf-8" ] |
| 71 | } |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 72 | } |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 73 | |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 74 | config("pdfium_core_config") { |
| 75 | cflags = [] |
dsinclair | 8bd9ce0 | 2016-06-09 13:24:34 -0700 | [diff] [blame] | 76 | configs = [ ":pdfium_common_config" ] |
| 77 | defines = [ "V8_DEPRECATION_WARNINGS" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 78 | if (is_linux) { |
Tom Sepez | 25d5be6 | 2015-06-18 17:44:29 -0700 | [diff] [blame] | 79 | if (current_cpu == "x64") { |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 80 | defines += [ "_FX_CPU_=_FX_X64_" ] |
| 81 | cflags += [ "-fPIC" ] |
Tom Sepez | 25d5be6 | 2015-06-18 17:44:29 -0700 | [diff] [blame] | 82 | } else if (current_cpu == "x86") { |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 83 | defines += [ "_FX_CPU_=_FX_X86_" ] |
| 84 | } |
| 85 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 86 | if (is_win) { |
Tom Sepez | 3bb5751 | 2017-03-28 14:09:43 -0700 | [diff] [blame] | 87 | cflags += [ |
| 88 | "/wd4267", |
Tom Sepez | 5171a27 | 2017-06-01 12:29:09 -0700 | [diff] [blame] | 89 | "/wd4324", |
Tom Sepez | 3bb5751 | 2017-03-28 14:09:43 -0700 | [diff] [blame] | 90 | "/wd4577", |
| 91 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 92 | } |
weili | dcc29b1 | 2016-05-27 17:58:23 -0700 | [diff] [blame] | 93 | } |
Lei Zhang | 476ac13 | 2015-11-05 20:07:27 -0800 | [diff] [blame] | 94 | |
weili | dcc29b1 | 2016-05-27 17:58:23 -0700 | [diff] [blame] | 95 | config("xfa_warnings") { |
| 96 | visibility = [ ":*" ] |
Tom Sepez | 3420909 | 2016-03-18 09:00:33 -0700 | [diff] [blame] | 97 | if (is_posix && !is_clang) { # When GCC. |
weili | dcc29b1 | 2016-05-27 17:58:23 -0700 | [diff] [blame] | 98 | cflags = [ "-Wno-strict-overflow" ] |
Tom Sepez | 3420909 | 2016-03-18 09:00:33 -0700 | [diff] [blame] | 99 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | static_library("pdfium") { |
| 103 | sources = [ |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 104 | "fpdfsdk/cba_annotiterator.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 105 | "fpdfsdk/cba_annotiterator.h", |
dsinclair | b959010 | 2016-04-27 06:38:59 -0700 | [diff] [blame] | 106 | "fpdfsdk/cfx_systemhandler.cpp", |
| 107 | "fpdfsdk/cfx_systemhandler.h", |
jaepark | 2736276 | 2016-08-11 13:10:39 -0700 | [diff] [blame] | 108 | "fpdfsdk/cpdfsdk_annot.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 109 | "fpdfsdk/cpdfsdk_annot.h", |
jaepark | 98e1019 | 2016-08-15 10:51:11 -0700 | [diff] [blame] | 110 | "fpdfsdk/cpdfsdk_annothandlermgr.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 111 | "fpdfsdk/cpdfsdk_annothandlermgr.h", |
tsepez | d805eec | 2017-01-11 14:03:54 -0800 | [diff] [blame] | 112 | "fpdfsdk/cpdfsdk_annotiteration.cpp", |
| 113 | "fpdfsdk/cpdfsdk_annotiteration.h", |
jaepark | 2736276 | 2016-08-11 13:10:39 -0700 | [diff] [blame] | 114 | "fpdfsdk/cpdfsdk_baannot.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 115 | "fpdfsdk/cpdfsdk_baannot.h", |
jaepark | 35512aa | 2016-08-29 17:15:08 -0700 | [diff] [blame] | 116 | "fpdfsdk/cpdfsdk_baannothandler.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 117 | "fpdfsdk/cpdfsdk_baannothandler.h", |
jaepark | 2736276 | 2016-08-11 13:10:39 -0700 | [diff] [blame] | 118 | "fpdfsdk/cpdfsdk_datetime.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 119 | "fpdfsdk/cpdfsdk_datetime.h", |
dsinclair | 735606d | 2016-10-05 15:47:02 -0700 | [diff] [blame] | 120 | "fpdfsdk/cpdfsdk_formfillenvironment.cpp", |
| 121 | "fpdfsdk/cpdfsdk_formfillenvironment.h", |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 122 | "fpdfsdk/cpdfsdk_interform.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 123 | "fpdfsdk/cpdfsdk_interform.h", |
dsinclair | f34518b | 2016-09-13 12:03:48 -0700 | [diff] [blame] | 124 | "fpdfsdk/cpdfsdk_pageview.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 125 | "fpdfsdk/cpdfsdk_pageview.h", |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 126 | "fpdfsdk/cpdfsdk_widget.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 127 | "fpdfsdk/cpdfsdk_widget.h", |
jaepark | 8c54182 | 2016-08-30 13:43:05 -0700 | [diff] [blame] | 128 | "fpdfsdk/cpdfsdk_widgethandler.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 129 | "fpdfsdk/cpdfsdk_widgethandler.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 130 | "fpdfsdk/fpdf_dataavail.cpp", |
| 131 | "fpdfsdk/fpdf_ext.cpp", |
| 132 | "fpdfsdk/fpdf_flatten.cpp", |
| 133 | "fpdfsdk/fpdf_progressive.cpp", |
| 134 | "fpdfsdk/fpdf_searchex.cpp", |
thestig | 9067fd6 | 2016-11-23 14:10:06 -0800 | [diff] [blame] | 135 | "fpdfsdk/fpdf_structtree.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 136 | "fpdfsdk/fpdf_sysfontinfo.cpp", |
| 137 | "fpdfsdk/fpdf_transformpage.cpp", |
Jane Liu | 4fd9a47 | 2017-06-01 18:56:09 -0400 | [diff] [blame] | 138 | "fpdfsdk/fpdfannot.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 139 | "fpdfsdk/fpdfdoc.cpp", |
| 140 | "fpdfsdk/fpdfeditimg.cpp", |
| 141 | "fpdfsdk/fpdfeditpage.cpp", |
Nicolas Pena | 55e026b | 2017-02-07 14:59:23 -0500 | [diff] [blame] | 142 | "fpdfsdk/fpdfeditpath.cpp", |
Nicolas Pena | 4905840 | 2017-02-14 18:26:20 -0500 | [diff] [blame] | 143 | "fpdfsdk/fpdfedittext.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 144 | "fpdfsdk/fpdfformfill.cpp", |
| 145 | "fpdfsdk/fpdfppo.cpp", |
| 146 | "fpdfsdk/fpdfsave.cpp", |
| 147 | "fpdfsdk/fpdftext.cpp", |
| 148 | "fpdfsdk/fpdfview.cpp", |
| 149 | "fpdfsdk/fsdk_actionhandler.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 150 | "fpdfsdk/fsdk_actionhandler.h", |
Dan Sinclair | ae4656e | 2017-05-09 12:36:41 -0400 | [diff] [blame] | 151 | "fpdfsdk/fsdk_filewriteadapter.cpp", |
| 152 | "fpdfsdk/fsdk_filewriteadapter.h", |
weili | 9f515bc | 2016-07-24 08:08:24 -0700 | [diff] [blame] | 153 | "fpdfsdk/fsdk_pauseadapter.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 154 | "fpdfsdk/fsdk_pauseadapter.h", |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 155 | "fpdfsdk/pdfsdk_fieldaction.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 156 | "fpdfsdk/pdfsdk_fieldaction.h", |
Tom Sepez | 1d17a04 | 2017-03-16 13:22:47 -0700 | [diff] [blame] | 157 | "public/cpp/fpdf_deleters.h", |
Jane Liu | 4fd9a47 | 2017-06-01 18:56:09 -0400 | [diff] [blame] | 158 | "public/fpdf_annot.h", |
Tom Sepez | 1ed8a21 | 2015-05-11 15:25:39 -0700 | [diff] [blame] | 159 | "public/fpdf_dataavail.h", |
| 160 | "public/fpdf_doc.h", |
| 161 | "public/fpdf_edit.h", |
| 162 | "public/fpdf_ext.h", |
| 163 | "public/fpdf_flatten.h", |
| 164 | "public/fpdf_formfill.h", |
| 165 | "public/fpdf_fwlevent.h", |
| 166 | "public/fpdf_ppo.h", |
| 167 | "public/fpdf_progressive.h", |
| 168 | "public/fpdf_save.h", |
| 169 | "public/fpdf_searchex.h", |
thestig | 9067fd6 | 2016-11-23 14:10:06 -0800 | [diff] [blame] | 170 | "public/fpdf_structtree.h", |
Tom Sepez | 1ed8a21 | 2015-05-11 15:25:39 -0700 | [diff] [blame] | 171 | "public/fpdf_sysfontinfo.h", |
| 172 | "public/fpdf_text.h", |
| 173 | "public/fpdf_transformpage.h", |
| 174 | "public/fpdfview.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 175 | ] |
| 176 | |
| 177 | libs = [] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 178 | configs += [ ":pdfium_core_config" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 179 | |
| 180 | deps = [ |
| 181 | ":fdrm", |
| 182 | ":formfiller", |
| 183 | ":fpdfapi", |
| 184 | ":fpdfdoc", |
| 185 | ":fpdftext", |
| 186 | ":fxcodec", |
| 187 | ":fxcrt", |
| 188 | ":fxedit", |
| 189 | ":fxge", |
| 190 | ":javascript", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 191 | ":pdfwindow", |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 192 | "third_party:bigint", |
| 193 | "third_party:pdfium_base", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 194 | ] |
| 195 | |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 196 | public_deps = [ |
| 197 | ":fxcrt", |
| 198 | ] |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 199 | if (pdf_enable_xfa) { |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 200 | sources += [ |
| 201 | "fpdfsdk/cpdfsdk_xfawidget.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 202 | "fpdfsdk/cpdfsdk_xfawidget.h", |
jaepark | 8c54182 | 2016-08-30 13:43:05 -0700 | [diff] [blame] | 203 | "fpdfsdk/cpdfsdk_xfawidgethandler.cpp", |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 204 | "fpdfsdk/cpdfsdk_xfawidgethandler.h", |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 205 | ] |
| 206 | |
Tom Sepez | b545159 | 2016-02-22 16:48:02 -0800 | [diff] [blame] | 207 | deps += [ ":fpdfxfa" ] |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 208 | } |
| 209 | |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 210 | if (is_win) { |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 211 | libs += [ |
| 212 | "advapi32.lib", |
| 213 | "gdi32.lib", |
| 214 | "user32.lib", |
| 215 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | if (is_mac) { |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 219 | libs += [ |
| 220 | "AppKit.framework", |
| 221 | "CoreFoundation.framework", |
| 222 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 223 | } |
John Abd-El-Malek | ef4dce4 | 2015-02-02 16:52:07 -0800 | [diff] [blame] | 224 | |
dan sinclair | fa171d2 | 2017-03-26 22:38:17 -0400 | [diff] [blame] | 225 | if (pdf_is_complete_lib) { |
| 226 | complete_static_lib = true |
| 227 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 228 | } |
| 229 | |
brettw | e283e47 | 2016-07-21 09:38:22 -0700 | [diff] [blame] | 230 | static_library("test_support") { |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 231 | testonly = true |
| 232 | sources = [ |
| 233 | "testing/fx_string_testhelpers.cpp", |
| 234 | "testing/fx_string_testhelpers.h", |
| 235 | "testing/test_support.cpp", |
| 236 | "testing/test_support.h", |
Oliver Chang | d46f1c8 | 2015-11-12 22:03:10 -0800 | [diff] [blame] | 237 | "testing/utils/path_service.cpp", |
thestig | bcd3e53 | 2016-11-21 13:37:28 -0800 | [diff] [blame] | 238 | "testing/utils/path_service.h", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 239 | ] |
jbudorick | f6ee820 | 2016-12-05 06:50:50 -0800 | [diff] [blame] | 240 | data = [ |
| 241 | "testing/resources/", |
| 242 | ] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 243 | deps = [ |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 244 | ":pdfium", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 245 | "//testing/gmock", |
| 246 | "//testing/gtest", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 247 | ] |
Lei Zhang | 8241df7 | 2015-11-06 14:38:48 -0800 | [diff] [blame] | 248 | include_dirs = [] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 249 | if (pdf_enable_v8) { |
| 250 | deps += [ |
| 251 | "//v8", |
| 252 | "//v8:v8_libplatform", |
| 253 | ] |
| 254 | include_dirs += [ |
| 255 | "//v8", |
| 256 | "//v8/include", |
| 257 | ] |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 258 | configs += [ "//v8:external_startup_data" ] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 259 | } |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 260 | configs += [ ":pdfium_core_config" ] |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | # Targets below this are only visible within this file (and to the |
| 264 | # top-level gn_visibility target used to help gn_all build everything). |
| 265 | visibility = [ |
| 266 | ":*", |
| 267 | "//:gn_visibility", |
| 268 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 269 | |
| 270 | static_library("fdrm") { |
| 271 | sources = [ |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 272 | "core/fdrm/crypto/fx_crypt.cpp", |
dsinclair | b1469a2 | 2016-09-29 10:00:05 -0700 | [diff] [blame] | 273 | "core/fdrm/crypto/fx_crypt.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 274 | "core/fdrm/crypto/fx_crypt_aes.cpp", |
| 275 | "core/fdrm/crypto/fx_crypt_sha.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 276 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 277 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 278 | deps = [ |
| 279 | ":fxcrt", |
| 280 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | static_library("fpdfdoc") { |
| 284 | sources = [ |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 285 | "core/fpdfdoc/cline.cpp", |
| 286 | "core/fpdfdoc/cline.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 287 | "core/fpdfdoc/cpdf_aaction.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 288 | "core/fpdfdoc/cpdf_aaction.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 289 | "core/fpdfdoc/cpdf_action.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 290 | "core/fpdfdoc/cpdf_action.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 291 | "core/fpdfdoc/cpdf_actionfields.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 292 | "core/fpdfdoc/cpdf_actionfields.h", |
jaepark | 3b6c7e9 | 2016-07-20 14:18:04 -0700 | [diff] [blame] | 293 | "core/fpdfdoc/cpdf_annot.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 294 | "core/fpdfdoc/cpdf_annot.h", |
jaepark | 3b6c7e9 | 2016-07-20 14:18:04 -0700 | [diff] [blame] | 295 | "core/fpdfdoc/cpdf_annotlist.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 296 | "core/fpdfdoc/cpdf_annotlist.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 297 | "core/fpdfdoc/cpdf_apsettings.cpp", |
dsinclair | cac704d | 2016-07-28 12:59:09 -0700 | [diff] [blame] | 298 | "core/fpdfdoc/cpdf_apsettings.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 299 | "core/fpdfdoc/cpdf_bookmark.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 300 | "core/fpdfdoc/cpdf_bookmark.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 301 | "core/fpdfdoc/cpdf_bookmarktree.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 302 | "core/fpdfdoc/cpdf_bookmarktree.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 303 | "core/fpdfdoc/cpdf_defaultappearance.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 304 | "core/fpdfdoc/cpdf_defaultappearance.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 305 | "core/fpdfdoc/cpdf_dest.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 306 | "core/fpdfdoc/cpdf_dest.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 307 | "core/fpdfdoc/cpdf_docjsactions.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 308 | "core/fpdfdoc/cpdf_docjsactions.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 309 | "core/fpdfdoc/cpdf_filespec.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 310 | "core/fpdfdoc/cpdf_filespec.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 311 | "core/fpdfdoc/cpdf_formcontrol.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 312 | "core/fpdfdoc/cpdf_formcontrol.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 313 | "core/fpdfdoc/cpdf_formfield.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 314 | "core/fpdfdoc/cpdf_formfield.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 315 | "core/fpdfdoc/cpdf_iconfit.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 316 | "core/fpdfdoc/cpdf_iconfit.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 317 | "core/fpdfdoc/cpdf_interform.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 318 | "core/fpdfdoc/cpdf_interform.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 319 | "core/fpdfdoc/cpdf_link.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 320 | "core/fpdfdoc/cpdf_link.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 321 | "core/fpdfdoc/cpdf_linklist.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 322 | "core/fpdfdoc/cpdf_linklist.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 323 | "core/fpdfdoc/cpdf_metadata.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 324 | "core/fpdfdoc/cpdf_metadata.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 325 | "core/fpdfdoc/cpdf_nametree.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 326 | "core/fpdfdoc/cpdf_nametree.h", |
dsinclair | 27053d8 | 2016-08-02 15:43:46 -0700 | [diff] [blame] | 327 | "core/fpdfdoc/cpdf_numbertree.cpp", |
| 328 | "core/fpdfdoc/cpdf_numbertree.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 329 | "core/fpdfdoc/cpdf_occontext.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 330 | "core/fpdfdoc/cpdf_occontext.h", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 331 | "core/fpdfdoc/cpdf_pagelabel.cpp", |
dsinclair | cac704d | 2016-07-28 12:59:09 -0700 | [diff] [blame] | 332 | "core/fpdfdoc/cpdf_pagelabel.h", |
dan sinclair | 7f38961 | 2017-04-06 13:38:54 -0400 | [diff] [blame] | 333 | "core/fpdfdoc/cpdf_structelement.cpp", |
| 334 | "core/fpdfdoc/cpdf_structelement.h", |
| 335 | "core/fpdfdoc/cpdf_structtree.cpp", |
| 336 | "core/fpdfdoc/cpdf_structtree.h", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 337 | "core/fpdfdoc/cpdf_variabletext.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 338 | "core/fpdfdoc/cpdf_variabletext.h", |
dsinclair | 02e6f59 | 2016-08-02 11:25:48 -0700 | [diff] [blame] | 339 | "core/fpdfdoc/cpdf_viewerpreferences.cpp", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 340 | "core/fpdfdoc/cpdf_viewerpreferences.h", |
dsinclair | 777b333 | 2016-03-31 20:03:08 -0700 | [diff] [blame] | 341 | "core/fpdfdoc/cpvt_color.cpp", |
| 342 | "core/fpdfdoc/cpvt_color.h", |
| 343 | "core/fpdfdoc/cpvt_dash.h", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 344 | "core/fpdfdoc/cpvt_floatrect.h", |
dsinclair | 777b333 | 2016-03-31 20:03:08 -0700 | [diff] [blame] | 345 | "core/fpdfdoc/cpvt_fontmap.cpp", |
| 346 | "core/fpdfdoc/cpvt_fontmap.h", |
| 347 | "core/fpdfdoc/cpvt_generateap.cpp", |
| 348 | "core/fpdfdoc/cpvt_generateap.h", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 349 | "core/fpdfdoc/cpvt_line.h", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 350 | "core/fpdfdoc/cpvt_lineinfo.h", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 351 | "core/fpdfdoc/cpvt_secprops.h", |
| 352 | "core/fpdfdoc/cpvt_section.h", |
weili | 5a6c139 | 2016-07-11 14:43:40 -0700 | [diff] [blame] | 353 | "core/fpdfdoc/cpvt_sectioninfo.cpp", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 354 | "core/fpdfdoc/cpvt_sectioninfo.h", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 355 | "core/fpdfdoc/cpvt_word.h", |
weili | 5a6c139 | 2016-07-11 14:43:40 -0700 | [diff] [blame] | 356 | "core/fpdfdoc/cpvt_wordinfo.cpp", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 357 | "core/fpdfdoc/cpvt_wordinfo.h", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 358 | "core/fpdfdoc/cpvt_wordplace.h", |
| 359 | "core/fpdfdoc/cpvt_wordprops.h", |
| 360 | "core/fpdfdoc/cpvt_wordrange.h", |
thestig | 9c845c3 | 2016-05-13 11:08:41 -0700 | [diff] [blame] | 361 | "core/fpdfdoc/csection.cpp", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 362 | "core/fpdfdoc/csection.h", |
thestig | 9c845c3 | 2016-05-13 11:08:41 -0700 | [diff] [blame] | 363 | "core/fpdfdoc/ctypeset.cpp", |
dsinclair | c7a7349 | 2016-04-05 12:01:42 -0700 | [diff] [blame] | 364 | "core/fpdfdoc/ctypeset.h", |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 365 | "core/fpdfdoc/ipdf_formnotify.h", |
| 366 | "core/fpdfdoc/ipvt_fontmap.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 367 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 368 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 369 | deps = [ |
| 370 | ":fxcrt", |
| 371 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 372 | } |
| 373 | |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 374 | static_library("fpdfapi") { |
| 375 | sources = [ |
dsinclair | a6c9215 | 2016-10-04 10:58:54 -0700 | [diff] [blame] | 376 | "core/fpdfapi/cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp", |
| 377 | "core/fpdfapi/cmaps/CNS1/B5pc-H_0.cpp", |
| 378 | "core/fpdfapi/cmaps/CNS1/B5pc-V_0.cpp", |
| 379 | "core/fpdfapi/cmaps/CNS1/CNS-EUC-H_0.cpp", |
| 380 | "core/fpdfapi/cmaps/CNS1/CNS-EUC-V_0.cpp", |
| 381 | "core/fpdfapi/cmaps/CNS1/ETen-B5-H_0.cpp", |
| 382 | "core/fpdfapi/cmaps/CNS1/ETen-B5-V_0.cpp", |
| 383 | "core/fpdfapi/cmaps/CNS1/ETenms-B5-H_0.cpp", |
| 384 | "core/fpdfapi/cmaps/CNS1/ETenms-B5-V_0.cpp", |
| 385 | "core/fpdfapi/cmaps/CNS1/HKscs-B5-H_5.cpp", |
| 386 | "core/fpdfapi/cmaps/CNS1/HKscs-B5-V_5.cpp", |
| 387 | "core/fpdfapi/cmaps/CNS1/UniCNS-UCS2-H_3.cpp", |
| 388 | "core/fpdfapi/cmaps/CNS1/UniCNS-UCS2-V_3.cpp", |
| 389 | "core/fpdfapi/cmaps/CNS1/UniCNS-UTF16-H_0.cpp", |
| 390 | "core/fpdfapi/cmaps/CNS1/cmaps_cns1.cpp", |
| 391 | "core/fpdfapi/cmaps/GB1/Adobe-GB1-UCS2_5.cpp", |
| 392 | "core/fpdfapi/cmaps/GB1/GB-EUC-H_0.cpp", |
| 393 | "core/fpdfapi/cmaps/GB1/GB-EUC-V_0.cpp", |
| 394 | "core/fpdfapi/cmaps/GB1/GBK-EUC-H_2.cpp", |
| 395 | "core/fpdfapi/cmaps/GB1/GBK-EUC-V_2.cpp", |
| 396 | "core/fpdfapi/cmaps/GB1/GBK2K-H_5.cpp", |
| 397 | "core/fpdfapi/cmaps/GB1/GBK2K-V_5.cpp", |
| 398 | "core/fpdfapi/cmaps/GB1/GBKp-EUC-H_2.cpp", |
| 399 | "core/fpdfapi/cmaps/GB1/GBKp-EUC-V_2.cpp", |
| 400 | "core/fpdfapi/cmaps/GB1/GBpc-EUC-H_0.cpp", |
| 401 | "core/fpdfapi/cmaps/GB1/GBpc-EUC-V_0.cpp", |
| 402 | "core/fpdfapi/cmaps/GB1/UniGB-UCS2-H_4.cpp", |
| 403 | "core/fpdfapi/cmaps/GB1/UniGB-UCS2-V_4.cpp", |
| 404 | "core/fpdfapi/cmaps/GB1/cmaps_gb1.cpp", |
| 405 | "core/fpdfapi/cmaps/Japan1/83pv-RKSJ-H_1.cpp", |
| 406 | "core/fpdfapi/cmaps/Japan1/90ms-RKSJ-H_2.cpp", |
| 407 | "core/fpdfapi/cmaps/Japan1/90ms-RKSJ-V_2.cpp", |
| 408 | "core/fpdfapi/cmaps/Japan1/90msp-RKSJ-H_2.cpp", |
| 409 | "core/fpdfapi/cmaps/Japan1/90msp-RKSJ-V_2.cpp", |
| 410 | "core/fpdfapi/cmaps/Japan1/90pv-RKSJ-H_1.cpp", |
| 411 | "core/fpdfapi/cmaps/Japan1/Add-RKSJ-H_1.cpp", |
| 412 | "core/fpdfapi/cmaps/Japan1/Add-RKSJ-V_1.cpp", |
| 413 | "core/fpdfapi/cmaps/Japan1/Adobe-Japan1-UCS2_4.cpp", |
| 414 | "core/fpdfapi/cmaps/Japan1/EUC-H_1.cpp", |
| 415 | "core/fpdfapi/cmaps/Japan1/EUC-V_1.cpp", |
| 416 | "core/fpdfapi/cmaps/Japan1/Ext-RKSJ-H_2.cpp", |
| 417 | "core/fpdfapi/cmaps/Japan1/Ext-RKSJ-V_2.cpp", |
| 418 | "core/fpdfapi/cmaps/Japan1/H_1.cpp", |
| 419 | "core/fpdfapi/cmaps/Japan1/UniJIS-UCS2-HW-H_4.cpp", |
| 420 | "core/fpdfapi/cmaps/Japan1/UniJIS-UCS2-HW-V_4.cpp", |
| 421 | "core/fpdfapi/cmaps/Japan1/UniJIS-UCS2-H_4.cpp", |
| 422 | "core/fpdfapi/cmaps/Japan1/UniJIS-UCS2-V_4.cpp", |
| 423 | "core/fpdfapi/cmaps/Japan1/V_1.cpp", |
| 424 | "core/fpdfapi/cmaps/Japan1/cmaps_japan1.cpp", |
| 425 | "core/fpdfapi/cmaps/Korea1/Adobe-Korea1-UCS2_2.cpp", |
| 426 | "core/fpdfapi/cmaps/Korea1/KSC-EUC-H_0.cpp", |
| 427 | "core/fpdfapi/cmaps/Korea1/KSC-EUC-V_0.cpp", |
| 428 | "core/fpdfapi/cmaps/Korea1/KSCms-UHC-HW-H_1.cpp", |
| 429 | "core/fpdfapi/cmaps/Korea1/KSCms-UHC-HW-V_1.cpp", |
| 430 | "core/fpdfapi/cmaps/Korea1/KSCms-UHC-H_1.cpp", |
| 431 | "core/fpdfapi/cmaps/Korea1/KSCms-UHC-V_1.cpp", |
| 432 | "core/fpdfapi/cmaps/Korea1/KSCpc-EUC-H_0.cpp", |
| 433 | "core/fpdfapi/cmaps/Korea1/UniKS-UCS2-H_1.cpp", |
| 434 | "core/fpdfapi/cmaps/Korea1/UniKS-UCS2-V_1.cpp", |
| 435 | "core/fpdfapi/cmaps/Korea1/UniKS-UTF16-H_0.cpp", |
| 436 | "core/fpdfapi/cmaps/Korea1/cmaps_korea1.cpp", |
| 437 | "core/fpdfapi/cmaps/cmap_int.h", |
| 438 | "core/fpdfapi/cmaps/fpdf_cmaps.cpp", |
tsepez | ddffb57 | 2016-05-24 16:20:29 -0700 | [diff] [blame] | 439 | "core/fpdfapi/cpdf_modulemgr.cpp", |
dsinclair | 39c62fd | 2016-09-29 12:49:17 -0700 | [diff] [blame] | 440 | "core/fpdfapi/cpdf_modulemgr.h", |
weili | 9f515bc | 2016-07-24 08:08:24 -0700 | [diff] [blame] | 441 | "core/fpdfapi/cpdf_pagerendercontext.cpp", |
dsinclair | 39c62fd | 2016-09-29 12:49:17 -0700 | [diff] [blame] | 442 | "core/fpdfapi/cpdf_pagerendercontext.h", |
Dan Sinclair | a0b1954 | 2017-05-09 12:36:08 -0400 | [diff] [blame] | 443 | "core/fpdfapi/edit/cpdf_creator.cpp", |
dsinclair | 2415435 | 2016-10-04 11:01:48 -0700 | [diff] [blame] | 444 | "core/fpdfapi/edit/cpdf_creator.h", |
Dan Sinclair | a0b1954 | 2017-05-09 12:36:08 -0400 | [diff] [blame] | 445 | "core/fpdfapi/edit/cpdf_encryptor.cpp", |
| 446 | "core/fpdfapi/edit/cpdf_encryptor.h", |
| 447 | "core/fpdfapi/edit/cpdf_flateencoder.cpp", |
| 448 | "core/fpdfapi/edit/cpdf_flateencoder.h", |
dsinclair | 2415435 | 2016-10-04 11:01:48 -0700 | [diff] [blame] | 449 | "core/fpdfapi/edit/cpdf_pagecontentgenerator.cpp", |
| 450 | "core/fpdfapi/edit/cpdf_pagecontentgenerator.h", |
Nicolas Pena | 169b301 | 2017-05-26 14:38:03 -0400 | [diff] [blame] | 451 | "core/fpdfapi/font/cfx_cttgsubtable.cpp", |
| 452 | "core/fpdfapi/font/cfx_cttgsubtable.h", |
| 453 | "core/fpdfapi/font/cfx_stockfontarray.cpp", |
| 454 | "core/fpdfapi/font/cfx_stockfontarray.h", |
| 455 | "core/fpdfapi/font/cpdf_cid2unicodemap.cpp", |
| 456 | "core/fpdfapi/font/cpdf_cid2unicodemap.h", |
dsinclair | bc5e6d2 | 2016-10-04 11:08:49 -0700 | [diff] [blame] | 457 | "core/fpdfapi/font/cpdf_cidfont.cpp", |
| 458 | "core/fpdfapi/font/cpdf_cidfont.h", |
Nicolas Pena | 169b301 | 2017-05-26 14:38:03 -0400 | [diff] [blame] | 459 | "core/fpdfapi/font/cpdf_cmap.cpp", |
| 460 | "core/fpdfapi/font/cpdf_cmap.h", |
| 461 | "core/fpdfapi/font/cpdf_cmapmanager.cpp", |
| 462 | "core/fpdfapi/font/cpdf_cmapmanager.h", |
| 463 | "core/fpdfapi/font/cpdf_cmapparser.cpp", |
| 464 | "core/fpdfapi/font/cpdf_cmapparser.h", |
dsinclair | bc5e6d2 | 2016-10-04 11:08:49 -0700 | [diff] [blame] | 465 | "core/fpdfapi/font/cpdf_font.cpp", |
| 466 | "core/fpdfapi/font/cpdf_font.h", |
| 467 | "core/fpdfapi/font/cpdf_fontencoding.cpp", |
| 468 | "core/fpdfapi/font/cpdf_fontencoding.h", |
Nicolas Pena | 169b301 | 2017-05-26 14:38:03 -0400 | [diff] [blame] | 469 | "core/fpdfapi/font/cpdf_fontglobals.cpp", |
| 470 | "core/fpdfapi/font/cpdf_fontglobals.h", |
dsinclair | bc5e6d2 | 2016-10-04 11:08:49 -0700 | [diff] [blame] | 471 | "core/fpdfapi/font/cpdf_simplefont.cpp", |
| 472 | "core/fpdfapi/font/cpdf_simplefont.h", |
Nicolas Pena | 169b301 | 2017-05-26 14:38:03 -0400 | [diff] [blame] | 473 | "core/fpdfapi/font/cpdf_tounicodemap.cpp", |
| 474 | "core/fpdfapi/font/cpdf_tounicodemap.h", |
dsinclair | bc5e6d2 | 2016-10-04 11:08:49 -0700 | [diff] [blame] | 475 | "core/fpdfapi/font/cpdf_truetypefont.cpp", |
| 476 | "core/fpdfapi/font/cpdf_truetypefont.h", |
| 477 | "core/fpdfapi/font/cpdf_type1font.cpp", |
| 478 | "core/fpdfapi/font/cpdf_type1font.h", |
| 479 | "core/fpdfapi/font/cpdf_type3char.cpp", |
| 480 | "core/fpdfapi/font/cpdf_type3char.h", |
| 481 | "core/fpdfapi/font/cpdf_type3font.cpp", |
| 482 | "core/fpdfapi/font/cpdf_type3font.h", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 483 | "core/fpdfapi/page/cpdf_allstates.cpp", |
| 484 | "core/fpdfapi/page/cpdf_allstates.h", |
| 485 | "core/fpdfapi/page/cpdf_clippath.cpp", |
| 486 | "core/fpdfapi/page/cpdf_clippath.h", |
| 487 | "core/fpdfapi/page/cpdf_color.cpp", |
| 488 | "core/fpdfapi/page/cpdf_color.h", |
| 489 | "core/fpdfapi/page/cpdf_colorspace.cpp", |
| 490 | "core/fpdfapi/page/cpdf_colorspace.h", |
| 491 | "core/fpdfapi/page/cpdf_colorstate.cpp", |
| 492 | "core/fpdfapi/page/cpdf_colorstate.h", |
| 493 | "core/fpdfapi/page/cpdf_contentmark.cpp", |
| 494 | "core/fpdfapi/page/cpdf_contentmark.h", |
| 495 | "core/fpdfapi/page/cpdf_contentmarkitem.cpp", |
| 496 | "core/fpdfapi/page/cpdf_contentmarkitem.h", |
npm | 014b012 | 2016-11-07 08:42:11 -0800 | [diff] [blame] | 497 | "core/fpdfapi/page/cpdf_contentparser.cpp", |
tsepez | 1aff265 | 2016-11-22 10:45:59 -0800 | [diff] [blame] | 498 | "core/fpdfapi/page/cpdf_contentparser.h", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 499 | "core/fpdfapi/page/cpdf_countedobject.h", |
Dan Sinclair | 5acacd3 | 2017-05-25 14:04:59 -0400 | [diff] [blame] | 500 | "core/fpdfapi/page/cpdf_devicecs.cpp", |
| 501 | "core/fpdfapi/page/cpdf_devicecs.h", |
tsepez | 9fa95ef | 2016-10-11 12:29:38 -0700 | [diff] [blame] | 502 | "core/fpdfapi/page/cpdf_docpagedata.cpp", |
| 503 | "core/fpdfapi/page/cpdf_docpagedata.h", |
Dan Sinclair | 5acacd3 | 2017-05-25 14:04:59 -0400 | [diff] [blame] | 504 | "core/fpdfapi/page/cpdf_expintfunc.cpp", |
| 505 | "core/fpdfapi/page/cpdf_expintfunc.h", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 506 | "core/fpdfapi/page/cpdf_form.cpp", |
| 507 | "core/fpdfapi/page/cpdf_form.h", |
| 508 | "core/fpdfapi/page/cpdf_formobject.cpp", |
| 509 | "core/fpdfapi/page/cpdf_formobject.h", |
Dan Sinclair | 5acacd3 | 2017-05-25 14:04:59 -0400 | [diff] [blame] | 510 | "core/fpdfapi/page/cpdf_function.cpp", |
| 511 | "core/fpdfapi/page/cpdf_function.h", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 512 | "core/fpdfapi/page/cpdf_generalstate.cpp", |
| 513 | "core/fpdfapi/page/cpdf_generalstate.h", |
| 514 | "core/fpdfapi/page/cpdf_graphicstates.cpp", |
| 515 | "core/fpdfapi/page/cpdf_graphicstates.h", |
Dan Sinclair | 5acacd3 | 2017-05-25 14:04:59 -0400 | [diff] [blame] | 516 | "core/fpdfapi/page/cpdf_iccprofile.cpp", |
| 517 | "core/fpdfapi/page/cpdf_iccprofile.h", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 518 | "core/fpdfapi/page/cpdf_image.cpp", |
| 519 | "core/fpdfapi/page/cpdf_image.h", |
| 520 | "core/fpdfapi/page/cpdf_imageobject.cpp", |
| 521 | "core/fpdfapi/page/cpdf_imageobject.h", |
| 522 | "core/fpdfapi/page/cpdf_meshstream.cpp", |
| 523 | "core/fpdfapi/page/cpdf_meshstream.h", |
| 524 | "core/fpdfapi/page/cpdf_page.cpp", |
| 525 | "core/fpdfapi/page/cpdf_page.h", |
| 526 | "core/fpdfapi/page/cpdf_pagemodule.cpp", |
| 527 | "core/fpdfapi/page/cpdf_pagemodule.h", |
| 528 | "core/fpdfapi/page/cpdf_pageobject.cpp", |
| 529 | "core/fpdfapi/page/cpdf_pageobject.h", |
| 530 | "core/fpdfapi/page/cpdf_pageobjectholder.cpp", |
| 531 | "core/fpdfapi/page/cpdf_pageobjectholder.h", |
| 532 | "core/fpdfapi/page/cpdf_pageobjectlist.cpp", |
| 533 | "core/fpdfapi/page/cpdf_pageobjectlist.h", |
| 534 | "core/fpdfapi/page/cpdf_path.cpp", |
| 535 | "core/fpdfapi/page/cpdf_path.h", |
| 536 | "core/fpdfapi/page/cpdf_pathobject.cpp", |
| 537 | "core/fpdfapi/page/cpdf_pathobject.h", |
| 538 | "core/fpdfapi/page/cpdf_pattern.cpp", |
| 539 | "core/fpdfapi/page/cpdf_pattern.h", |
Dan Sinclair | 5acacd3 | 2017-05-25 14:04:59 -0400 | [diff] [blame] | 540 | "core/fpdfapi/page/cpdf_patterncs.cpp", |
| 541 | "core/fpdfapi/page/cpdf_patterncs.h", |
| 542 | "core/fpdfapi/page/cpdf_psengine.cpp", |
| 543 | "core/fpdfapi/page/cpdf_psengine.h", |
| 544 | "core/fpdfapi/page/cpdf_psfunc.cpp", |
| 545 | "core/fpdfapi/page/cpdf_psfunc.h", |
| 546 | "core/fpdfapi/page/cpdf_sampledfunc.cpp", |
| 547 | "core/fpdfapi/page/cpdf_sampledfunc.h", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 548 | "core/fpdfapi/page/cpdf_shadingobject.cpp", |
| 549 | "core/fpdfapi/page/cpdf_shadingobject.h", |
| 550 | "core/fpdfapi/page/cpdf_shadingpattern.cpp", |
| 551 | "core/fpdfapi/page/cpdf_shadingpattern.h", |
Dan Sinclair | 5acacd3 | 2017-05-25 14:04:59 -0400 | [diff] [blame] | 552 | "core/fpdfapi/page/cpdf_stitchfunc.cpp", |
| 553 | "core/fpdfapi/page/cpdf_stitchfunc.h", |
tsepez | 271d9c0 | 2016-10-13 11:29:04 -0700 | [diff] [blame] | 554 | "core/fpdfapi/page/cpdf_streamcontentparser.cpp", |
| 555 | "core/fpdfapi/page/cpdf_streamcontentparser.h", |
npm | 014b012 | 2016-11-07 08:42:11 -0800 | [diff] [blame] | 556 | "core/fpdfapi/page/cpdf_streamparser.cpp", |
tsepez | 1aff265 | 2016-11-22 10:45:59 -0800 | [diff] [blame] | 557 | "core/fpdfapi/page/cpdf_streamparser.h", |
dsinclair | 41872fa | 2016-10-04 11:29:35 -0700 | [diff] [blame] | 558 | "core/fpdfapi/page/cpdf_textobject.cpp", |
| 559 | "core/fpdfapi/page/cpdf_textobject.h", |
| 560 | "core/fpdfapi/page/cpdf_textstate.cpp", |
| 561 | "core/fpdfapi/page/cpdf_textstate.h", |
| 562 | "core/fpdfapi/page/cpdf_tilingpattern.cpp", |
| 563 | "core/fpdfapi/page/cpdf_tilingpattern.h", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 564 | "core/fpdfapi/parser/cfdf_document.cpp", |
| 565 | "core/fpdfapi/parser/cfdf_document.h", |
| 566 | "core/fpdfapi/parser/cpdf_array.cpp", |
| 567 | "core/fpdfapi/parser/cpdf_array.h", |
| 568 | "core/fpdfapi/parser/cpdf_boolean.cpp", |
| 569 | "core/fpdfapi/parser/cpdf_boolean.h", |
| 570 | "core/fpdfapi/parser/cpdf_crypto_handler.cpp", |
| 571 | "core/fpdfapi/parser/cpdf_crypto_handler.h", |
| 572 | "core/fpdfapi/parser/cpdf_data_avail.cpp", |
| 573 | "core/fpdfapi/parser/cpdf_data_avail.h", |
| 574 | "core/fpdfapi/parser/cpdf_dictionary.cpp", |
| 575 | "core/fpdfapi/parser/cpdf_dictionary.h", |
| 576 | "core/fpdfapi/parser/cpdf_document.cpp", |
| 577 | "core/fpdfapi/parser/cpdf_document.h", |
| 578 | "core/fpdfapi/parser/cpdf_hint_tables.cpp", |
| 579 | "core/fpdfapi/parser/cpdf_hint_tables.h", |
| 580 | "core/fpdfapi/parser/cpdf_indirect_object_holder.cpp", |
| 581 | "core/fpdfapi/parser/cpdf_indirect_object_holder.h", |
tsepez | c09625c | 2016-11-07 11:46:09 -0800 | [diff] [blame] | 582 | "core/fpdfapi/parser/cpdf_linearized_header.cpp", |
| 583 | "core/fpdfapi/parser/cpdf_linearized_header.h", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 584 | "core/fpdfapi/parser/cpdf_name.cpp", |
| 585 | "core/fpdfapi/parser/cpdf_name.h", |
| 586 | "core/fpdfapi/parser/cpdf_null.cpp", |
| 587 | "core/fpdfapi/parser/cpdf_null.h", |
| 588 | "core/fpdfapi/parser/cpdf_number.cpp", |
| 589 | "core/fpdfapi/parser/cpdf_number.h", |
| 590 | "core/fpdfapi/parser/cpdf_object.cpp", |
| 591 | "core/fpdfapi/parser/cpdf_object.h", |
| 592 | "core/fpdfapi/parser/cpdf_parser.cpp", |
| 593 | "core/fpdfapi/parser/cpdf_parser.h", |
| 594 | "core/fpdfapi/parser/cpdf_reference.cpp", |
| 595 | "core/fpdfapi/parser/cpdf_reference.h", |
| 596 | "core/fpdfapi/parser/cpdf_security_handler.cpp", |
| 597 | "core/fpdfapi/parser/cpdf_security_handler.h", |
| 598 | "core/fpdfapi/parser/cpdf_simple_parser.cpp", |
| 599 | "core/fpdfapi/parser/cpdf_simple_parser.h", |
| 600 | "core/fpdfapi/parser/cpdf_stream.cpp", |
| 601 | "core/fpdfapi/parser/cpdf_stream.h", |
| 602 | "core/fpdfapi/parser/cpdf_stream_acc.cpp", |
| 603 | "core/fpdfapi/parser/cpdf_stream_acc.h", |
| 604 | "core/fpdfapi/parser/cpdf_string.cpp", |
| 605 | "core/fpdfapi/parser/cpdf_string.h", |
| 606 | "core/fpdfapi/parser/cpdf_syntax_parser.cpp", |
| 607 | "core/fpdfapi/parser/cpdf_syntax_parser.h", |
| 608 | "core/fpdfapi/parser/fpdf_parser_decode.cpp", |
| 609 | "core/fpdfapi/parser/fpdf_parser_decode.h", |
| 610 | "core/fpdfapi/parser/fpdf_parser_utility.cpp", |
| 611 | "core/fpdfapi/parser/fpdf_parser_utility.h", |
npm | 483f3c4 | 2016-11-17 13:50:44 -0800 | [diff] [blame] | 612 | "core/fpdfapi/render/cpdf_charposlist.cpp", |
| 613 | "core/fpdfapi/render/cpdf_charposlist.h", |
Nicolas Pena | 8a463c5 | 2016-11-30 14:56:27 -0500 | [diff] [blame] | 614 | "core/fpdfapi/render/cpdf_devicebuffer.cpp", |
| 615 | "core/fpdfapi/render/cpdf_devicebuffer.h", |
Nicolas Pena | 0ef7ba0 | 2017-01-04 16:18:57 -0500 | [diff] [blame] | 616 | "core/fpdfapi/render/cpdf_dibsource.cpp", |
| 617 | "core/fpdfapi/render/cpdf_dibsource.h", |
npm | 4bed2af | 2016-12-02 14:01:36 -0800 | [diff] [blame] | 618 | "core/fpdfapi/render/cpdf_dibtransferfunc.cpp", |
| 619 | "core/fpdfapi/render/cpdf_dibtransferfunc.h", |
npm | 935c631 | 2016-11-17 10:47:43 -0800 | [diff] [blame] | 620 | "core/fpdfapi/render/cpdf_docrenderdata.cpp", |
| 621 | "core/fpdfapi/render/cpdf_docrenderdata.h", |
npm | d7ecb5f | 2016-12-01 15:37:42 -0800 | [diff] [blame] | 622 | "core/fpdfapi/render/cpdf_imagecacheentry.cpp", |
| 623 | "core/fpdfapi/render/cpdf_imagecacheentry.h", |
npm | ca5300a | 2016-11-21 07:28:42 -0800 | [diff] [blame] | 624 | "core/fpdfapi/render/cpdf_imageloader.cpp", |
| 625 | "core/fpdfapi/render/cpdf_imageloader.h", |
npm | 43f382c | 2016-11-23 07:35:23 -0800 | [diff] [blame] | 626 | "core/fpdfapi/render/cpdf_imagerenderer.cpp", |
| 627 | "core/fpdfapi/render/cpdf_imagerenderer.h", |
npm | d7ecb5f | 2016-12-01 15:37:42 -0800 | [diff] [blame] | 628 | "core/fpdfapi/render/cpdf_pagerendercache.cpp", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 629 | "core/fpdfapi/render/cpdf_pagerendercache.h", |
Nicolas Pena | 8a463c5 | 2016-11-30 14:56:27 -0500 | [diff] [blame] | 630 | "core/fpdfapi/render/cpdf_progressiverenderer.cpp", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 631 | "core/fpdfapi/render/cpdf_progressiverenderer.h", |
Nicolas Pena | 8a463c5 | 2016-11-30 14:56:27 -0500 | [diff] [blame] | 632 | "core/fpdfapi/render/cpdf_rendercontext.cpp", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 633 | "core/fpdfapi/render/cpdf_rendercontext.h", |
Nicolas Pena | 8a463c5 | 2016-11-30 14:56:27 -0500 | [diff] [blame] | 634 | "core/fpdfapi/render/cpdf_renderoptions.cpp", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 635 | "core/fpdfapi/render/cpdf_renderoptions.h", |
npm | 483f3c4 | 2016-11-17 13:50:44 -0800 | [diff] [blame] | 636 | "core/fpdfapi/render/cpdf_renderstatus.cpp", |
| 637 | "core/fpdfapi/render/cpdf_renderstatus.h", |
Nicolas Pena | 8a463c5 | 2016-11-30 14:56:27 -0500 | [diff] [blame] | 638 | "core/fpdfapi/render/cpdf_scaledrenderbuffer.cpp", |
| 639 | "core/fpdfapi/render/cpdf_scaledrenderbuffer.h", |
npm | 4bed2af | 2016-12-02 14:01:36 -0800 | [diff] [blame] | 640 | "core/fpdfapi/render/cpdf_textrenderer.cpp", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 641 | "core/fpdfapi/render/cpdf_textrenderer.h", |
npm | ca5300a | 2016-11-21 07:28:42 -0800 | [diff] [blame] | 642 | "core/fpdfapi/render/cpdf_transferfunc.cpp", |
| 643 | "core/fpdfapi/render/cpdf_transferfunc.h", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 644 | "core/fpdfapi/render/cpdf_type3cache.cpp", |
| 645 | "core/fpdfapi/render/cpdf_type3cache.h", |
| 646 | "core/fpdfapi/render/cpdf_type3glyphs.cpp", |
| 647 | "core/fpdfapi/render/cpdf_type3glyphs.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 648 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 649 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 650 | deps = [ |
| 651 | ":fxcrt", |
| 652 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | static_library("fpdftext") { |
| 656 | sources = [ |
npm | 2d396ac | 2016-08-26 10:00:25 -0700 | [diff] [blame] | 657 | "core/fpdftext/cpdf_linkextract.cpp", |
dsinclair | e030786 | 2016-09-29 13:25:38 -0700 | [diff] [blame] | 658 | "core/fpdftext/cpdf_linkextract.h", |
npm | 2d396ac | 2016-08-26 10:00:25 -0700 | [diff] [blame] | 659 | "core/fpdftext/cpdf_textpage.cpp", |
dsinclair | e030786 | 2016-09-29 13:25:38 -0700 | [diff] [blame] | 660 | "core/fpdftext/cpdf_textpage.h", |
npm | 2d396ac | 2016-08-26 10:00:25 -0700 | [diff] [blame] | 661 | "core/fpdftext/cpdf_textpagefind.cpp", |
dsinclair | e030786 | 2016-09-29 13:25:38 -0700 | [diff] [blame] | 662 | "core/fpdftext/cpdf_textpagefind.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 663 | "core/fpdftext/unicodenormalizationdata.cpp", |
| 664 | "core/fpdftext/unicodenormalizationdata.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 665 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 666 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 667 | deps = [ |
| 668 | ":fxcrt", |
| 669 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 670 | } |
| 671 | |
| 672 | static_library("fxcodec") { |
| 673 | sources = [ |
dsinclair | 8a4e286 | 2016-09-29 13:43:30 -0700 | [diff] [blame] | 674 | "core/fxcodec/JBig2_DocumentContext.h", |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 675 | "core/fxcodec/codec/ccodec_basicmodule.h", |
| 676 | "core/fxcodec/codec/ccodec_faxmodule.h", |
| 677 | "core/fxcodec/codec/ccodec_flatemodule.h", |
| 678 | "core/fxcodec/codec/ccodec_iccmodule.h", |
| 679 | "core/fxcodec/codec/ccodec_jbig2module.h", |
| 680 | "core/fxcodec/codec/ccodec_jpegmodule.h", |
| 681 | "core/fxcodec/codec/ccodec_jpxmodule.h", |
| 682 | "core/fxcodec/codec/ccodec_scanlinedecoder.h", |
Dan Sinclair | 0bb1333 | 2017-03-30 16:12:02 -0400 | [diff] [blame] | 683 | "core/fxcodec/codec/cjpx_decoder.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 684 | "core/fxcodec/codec/codec_int.h", |
| 685 | "core/fxcodec/codec/fx_codec.cpp", |
| 686 | "core/fxcodec/codec/fx_codec_fax.cpp", |
| 687 | "core/fxcodec/codec/fx_codec_flate.cpp", |
| 688 | "core/fxcodec/codec/fx_codec_icc.cpp", |
| 689 | "core/fxcodec/codec/fx_codec_jbig.cpp", |
| 690 | "core/fxcodec/codec/fx_codec_jpeg.cpp", |
| 691 | "core/fxcodec/codec/fx_codec_jpx_opj.cpp", |
dsinclair | 8a4e286 | 2016-09-29 13:43:30 -0700 | [diff] [blame] | 692 | "core/fxcodec/fx_codec.h", |
| 693 | "core/fxcodec/fx_codec_def.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 694 | "core/fxcodec/jbig2/JBig2_ArithDecoder.cpp", |
| 695 | "core/fxcodec/jbig2/JBig2_ArithDecoder.h", |
| 696 | "core/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
| 697 | "core/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| 698 | "core/fxcodec/jbig2/JBig2_BitStream.cpp", |
| 699 | "core/fxcodec/jbig2/JBig2_BitStream.h", |
| 700 | "core/fxcodec/jbig2/JBig2_Context.cpp", |
| 701 | "core/fxcodec/jbig2/JBig2_Context.h", |
| 702 | "core/fxcodec/jbig2/JBig2_Define.h", |
| 703 | "core/fxcodec/jbig2/JBig2_GrdProc.cpp", |
| 704 | "core/fxcodec/jbig2/JBig2_GrdProc.h", |
| 705 | "core/fxcodec/jbig2/JBig2_GrrdProc.cpp", |
| 706 | "core/fxcodec/jbig2/JBig2_GrrdProc.h", |
| 707 | "core/fxcodec/jbig2/JBig2_GsidProc.cpp", |
| 708 | "core/fxcodec/jbig2/JBig2_GsidProc.h", |
| 709 | "core/fxcodec/jbig2/JBig2_HtrdProc.cpp", |
| 710 | "core/fxcodec/jbig2/JBig2_HtrdProc.h", |
| 711 | "core/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp", |
| 712 | "core/fxcodec/jbig2/JBig2_HuffmanDecoder.h", |
| 713 | "core/fxcodec/jbig2/JBig2_HuffmanTable.cpp", |
| 714 | "core/fxcodec/jbig2/JBig2_HuffmanTable.h", |
Tom Sepez | 4161c5c | 2016-03-21 12:26:54 -0700 | [diff] [blame] | 715 | "core/fxcodec/jbig2/JBig2_HuffmanTable_Standard.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 716 | "core/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h", |
| 717 | "core/fxcodec/jbig2/JBig2_Image.cpp", |
| 718 | "core/fxcodec/jbig2/JBig2_Image.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 719 | "core/fxcodec/jbig2/JBig2_Page.h", |
| 720 | "core/fxcodec/jbig2/JBig2_PatternDict.cpp", |
| 721 | "core/fxcodec/jbig2/JBig2_PatternDict.h", |
| 722 | "core/fxcodec/jbig2/JBig2_PddProc.cpp", |
| 723 | "core/fxcodec/jbig2/JBig2_PddProc.h", |
| 724 | "core/fxcodec/jbig2/JBig2_SddProc.cpp", |
| 725 | "core/fxcodec/jbig2/JBig2_SddProc.h", |
| 726 | "core/fxcodec/jbig2/JBig2_Segment.cpp", |
| 727 | "core/fxcodec/jbig2/JBig2_Segment.h", |
| 728 | "core/fxcodec/jbig2/JBig2_SymbolDict.cpp", |
| 729 | "core/fxcodec/jbig2/JBig2_SymbolDict.h", |
| 730 | "core/fxcodec/jbig2/JBig2_TrdProc.cpp", |
| 731 | "core/fxcodec/jbig2/JBig2_TrdProc.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 732 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 733 | configs += [ ":pdfium_core_config" ] |
Lei Zhang | 8241df7 | 2015-11-06 14:38:48 -0800 | [diff] [blame] | 734 | include_dirs = [] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 735 | deps = [ |
| 736 | ":fxcrt", |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 737 | "third_party:fx_libopenjpeg", |
Miklos Vajna | 0fafb4f | 2017-05-24 08:40:49 +0200 | [diff] [blame] | 738 | "third_party:lcms2", |
Miklos Vajna | 2df760f | 2017-05-06 01:54:54 +0200 | [diff] [blame] | 739 | "third_party:zlib", |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 740 | "//third_party:jpeg", |
| 741 | ] |
| 742 | |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 743 | if (pdf_enable_xfa) { |
| 744 | sources += [ |
Tom Sepez | 73c9f3b | 2017-02-27 10:12:59 -0800 | [diff] [blame] | 745 | "core/fxcodec/codec/ccodec_bmpmodule.cpp", |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 746 | "core/fxcodec/codec/ccodec_bmpmodule.h", |
Tom Sepez | 73c9f3b | 2017-02-27 10:12:59 -0800 | [diff] [blame] | 747 | "core/fxcodec/codec/ccodec_gifmodule.cpp", |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 748 | "core/fxcodec/codec/ccodec_gifmodule.h", |
Tom Sepez | 73c9f3b | 2017-02-27 10:12:59 -0800 | [diff] [blame] | 749 | "core/fxcodec/codec/ccodec_pngmodule.cpp", |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 750 | "core/fxcodec/codec/ccodec_pngmodule.h", |
dsinclair | 8a4e286 | 2016-09-29 13:43:30 -0700 | [diff] [blame] | 751 | "core/fxcodec/codec/ccodec_progressivedecoder.h", |
Tom Sepez | 73c9f3b | 2017-02-27 10:12:59 -0800 | [diff] [blame] | 752 | "core/fxcodec/codec/ccodec_tiffmodule.cpp", |
dsinclair | d55e11e | 2016-04-12 11:21:22 -0700 | [diff] [blame] | 753 | "core/fxcodec/codec/ccodec_tiffmodule.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 754 | "core/fxcodec/codec/fx_codec_progress.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 755 | "core/fxcodec/lbmp/fx_bmp.cpp", |
| 756 | "core/fxcodec/lbmp/fx_bmp.h", |
Nicolas Pena | 2199ab8 | 2017-05-11 18:44:29 -0400 | [diff] [blame] | 757 | "core/fxcodec/lgif/cgifcontext.cpp", |
| 758 | "core/fxcodec/lgif/cgifcontext.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 759 | "core/fxcodec/lgif/fx_gif.cpp", |
| 760 | "core/fxcodec/lgif/fx_gif.h", |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 761 | ] |
| 762 | deps += [ |
| 763 | "third_party:fx_lpng", |
| 764 | "third_party:fx_tiff", |
| 765 | ] |
| 766 | } |
John Abd-El-Malek | def5c7d | 2014-06-09 16:07:18 -0700 | [diff] [blame] | 767 | if (is_posix) { |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 768 | # 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] | 769 | # conversion to check that an address is 16-bit aligned (benign). |
| 770 | cflags_c = [ "-Wno-pointer-to-int-cast" ] |
| 771 | } |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | config("fxge_warnings") { |
| 775 | if (is_clang) { |
| 776 | cflags = [ |
| 777 | # http://code.google.com/p/pdfium/issues/detail?id=188 |
| 778 | "-Wno-switch", |
| 779 | ] |
| 780 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | static_library("fxcrt") { |
| 784 | sources = [ |
Tom Sepez | fcdb2df | 2017-03-31 10:32:07 -0700 | [diff] [blame] | 785 | "core/fxcrt/cfx_bytestring.cpp", |
| 786 | "core/fxcrt/cfx_bytestring.h", |
tsepez | 81b2246 | 2016-11-23 14:20:19 -0800 | [diff] [blame] | 787 | "core/fxcrt/cfx_maybe_owned.h", |
Dan Sinclair | 283a043 | 2017-04-20 14:11:21 -0400 | [diff] [blame] | 788 | "core/fxcrt/cfx_memorystream.cpp", |
| 789 | "core/fxcrt/cfx_memorystream.h", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 790 | "core/fxcrt/cfx_observable.h", |
| 791 | "core/fxcrt/cfx_retain_ptr.h", |
tsepez | 2239cee | 2016-10-17 11:20:01 -0700 | [diff] [blame] | 792 | "core/fxcrt/cfx_shared_copy_on_write.h", |
tsepez | f7036ba | 2016-05-13 15:02:43 -0700 | [diff] [blame] | 793 | "core/fxcrt/cfx_string_c_template.h", |
tsepez | 6fb598b | 2016-04-05 12:40:47 -0700 | [diff] [blame] | 794 | "core/fxcrt/cfx_string_data_template.h", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 795 | "core/fxcrt/cfx_string_pool_template.h", |
Tom Sepez | cc20513 | 2017-05-16 14:01:47 -0700 | [diff] [blame] | 796 | "core/fxcrt/cfx_unowned_ptr.h", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 797 | "core/fxcrt/cfx_weak_ptr.h", |
Tom Sepez | fcdb2df | 2017-03-31 10:32:07 -0700 | [diff] [blame] | 798 | "core/fxcrt/cfx_widestring.cpp", |
| 799 | "core/fxcrt/cfx_widestring.h", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 800 | "core/fxcrt/fx_basic.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 801 | "core/fxcrt/fx_basic_buffer.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 802 | "core/fxcrt/fx_basic_gcc.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 803 | "core/fxcrt/fx_basic_utf.cpp", |
| 804 | "core/fxcrt/fx_basic_util.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 805 | "core/fxcrt/fx_bidi.cpp", |
Dan Sinclair | a8a28e0 | 2016-03-23 15:41:39 -0400 | [diff] [blame] | 806 | "core/fxcrt/fx_bidi.h", |
Dan Sinclair | f51a02a | 2017-04-19 12:46:53 -0400 | [diff] [blame] | 807 | "core/fxcrt/fx_codepage.h", |
Tom Sepez | 6302288 | 2017-04-25 10:29:58 -0700 | [diff] [blame] | 808 | "core/fxcrt/fx_coordinates.cpp", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 809 | "core/fxcrt/fx_coordinates.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 810 | "core/fxcrt/fx_extension.cpp", |
Dan Sinclair | cfb1944 | 2017-04-20 13:13:04 -0400 | [diff] [blame] | 811 | "core/fxcrt/fx_extension.h", |
Tom Sepez | a9deea9 | 2017-04-25 10:37:47 -0700 | [diff] [blame] | 812 | "core/fxcrt/fx_memory.cpp", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 813 | "core/fxcrt/fx_memory.h", |
| 814 | "core/fxcrt/fx_safe_types.h", |
Dan Sinclair | cfb1944 | 2017-04-20 13:13:04 -0400 | [diff] [blame] | 815 | "core/fxcrt/fx_stream.cpp", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 816 | "core/fxcrt/fx_stream.h", |
| 817 | "core/fxcrt/fx_string.h", |
Tom Sepez | 9ff306d | 2017-04-24 15:55:11 -0700 | [diff] [blame] | 818 | "core/fxcrt/fx_system.cpp", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 819 | "core/fxcrt/fx_system.h", |
| 820 | "core/fxcrt/fx_ucd.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 821 | "core/fxcrt/fx_ucddata.cpp", |
| 822 | "core/fxcrt/fx_unicode.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 823 | "core/fxcrt/fxcrt_posix.cpp", |
| 824 | "core/fxcrt/fxcrt_posix.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 825 | "core/fxcrt/fxcrt_windows.cpp", |
| 826 | "core/fxcrt/fxcrt_windows.h", |
Dan Sinclair | cfb1944 | 2017-04-20 13:13:04 -0400 | [diff] [blame] | 827 | "core/fxcrt/ifxcrt_fileaccess.h", |
Dan Sinclair | 908c848 | 2017-03-30 14:33:28 -0400 | [diff] [blame] | 828 | "core/fxcrt/xml/cxml_attritem.cpp", |
| 829 | "core/fxcrt/xml/cxml_attritem.h", |
| 830 | "core/fxcrt/xml/cxml_attrmap.cpp", |
| 831 | "core/fxcrt/xml/cxml_attrmap.h", |
Tom Sepez | 8a6fdad | 2017-05-09 15:03:33 -0700 | [diff] [blame] | 832 | "core/fxcrt/xml/cxml_content.cpp", |
Dan Sinclair | 908c848 | 2017-03-30 14:33:28 -0400 | [diff] [blame] | 833 | "core/fxcrt/xml/cxml_content.h", |
Dan Sinclair | eccf405 | 2017-04-18 12:19:34 -0400 | [diff] [blame] | 834 | "core/fxcrt/xml/cxml_databufacc.cpp", |
| 835 | "core/fxcrt/xml/cxml_databufacc.h", |
Dan Sinclair | 908c848 | 2017-03-30 14:33:28 -0400 | [diff] [blame] | 836 | "core/fxcrt/xml/cxml_element.cpp", |
| 837 | "core/fxcrt/xml/cxml_element.h", |
Tom Sepez | 8a6fdad | 2017-05-09 15:03:33 -0700 | [diff] [blame] | 838 | "core/fxcrt/xml/cxml_object.cpp", |
| 839 | "core/fxcrt/xml/cxml_object.h", |
Dan Sinclair | 908c848 | 2017-03-30 14:33:28 -0400 | [diff] [blame] | 840 | "core/fxcrt/xml/cxml_parser.cpp", |
| 841 | "core/fxcrt/xml/cxml_parser.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 842 | ] |
thestig | c65e11e | 2016-08-30 21:56:33 -0700 | [diff] [blame] | 843 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 844 | visibility += [ "third_party:*" ] |
| 845 | deps = [ |
| 846 | "third_party:pdfium_base", |
| 847 | ] |
| 848 | public_deps = [ |
Dominik Röttsches | 4b0671a | 2017-03-30 11:07:43 +0300 | [diff] [blame] | 849 | ":freetype_common", |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 850 | "third_party:pdfium_base", |
| 851 | ] |
thestig | c65e11e | 2016-08-30 21:56:33 -0700 | [diff] [blame] | 852 | |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 853 | if (pdf_enable_xfa) { |
| 854 | sources += [ |
Dan Sinclair | ac35589 | 2017-04-03 16:46:21 -0400 | [diff] [blame] | 855 | "core/fxcrt/cfx_blockbuffer.cpp", |
| 856 | "core/fxcrt/cfx_blockbuffer.h", |
Dan Sinclair | 893822a | 2017-03-13 15:32:07 -0400 | [diff] [blame] | 857 | "core/fxcrt/cfx_char.cpp", |
| 858 | "core/fxcrt/cfx_char.h", |
Dan Sinclair | ddb7016 | 2017-03-30 14:01:31 -0400 | [diff] [blame] | 859 | "core/fxcrt/cfx_chariter.cpp", |
| 860 | "core/fxcrt/cfx_chariter.h", |
| 861 | "core/fxcrt/cfx_checksumcontext.cpp", |
| 862 | "core/fxcrt/cfx_checksumcontext.h", |
Dan Sinclair | cfb1944 | 2017-04-20 13:13:04 -0400 | [diff] [blame] | 863 | "core/fxcrt/cfx_crtfileaccess.cpp", |
| 864 | "core/fxcrt/cfx_crtfileaccess.h", |
Dan Sinclair | b929ab0 | 2017-03-29 15:18:16 -0400 | [diff] [blame] | 865 | "core/fxcrt/cfx_datetime.cpp", |
| 866 | "core/fxcrt/cfx_datetime.h", |
| 867 | "core/fxcrt/cfx_decimal.cpp", |
| 868 | "core/fxcrt/cfx_decimal.h", |
Dan Sinclair | 3b71d26 | 2017-04-19 08:58:54 -0400 | [diff] [blame] | 869 | "core/fxcrt/cfx_seekablestreamproxy.cpp", |
| 870 | "core/fxcrt/cfx_seekablestreamproxy.h", |
Dan Sinclair | ddb7016 | 2017-03-30 14:01:31 -0400 | [diff] [blame] | 871 | "core/fxcrt/cfx_wordbreak.cpp", |
| 872 | "core/fxcrt/cfx_wordbreak.h", |
pcc | e3bbfa2 | 2016-04-19 12:40:07 -0700 | [diff] [blame] | 873 | "core/fxcrt/fx_arabic.cpp", |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 874 | "core/fxcrt/fx_arabic.h", |
Dan Sinclair | ddb7016 | 2017-03-30 14:01:31 -0400 | [diff] [blame] | 875 | "core/fxcrt/ifx_chariter.h", |
Dan Sinclair | b929ab0 | 2017-03-29 15:18:16 -0400 | [diff] [blame] | 876 | "core/fxcrt/ifx_locale.h", |
Dan Sinclair | ddb7016 | 2017-03-30 14:01:31 -0400 | [diff] [blame] | 877 | "core/fxcrt/xml/cfx_saxcontext.h", |
| 878 | "core/fxcrt/xml/cfx_saxreader.cpp", |
| 879 | "core/fxcrt/xml/cfx_saxreader.h", |
| 880 | "core/fxcrt/xml/cfx_saxreaderhandler.cpp", |
| 881 | "core/fxcrt/xml/cfx_saxreaderhandler.h", |
Dan Sinclair | 0d86ecb | 2017-04-19 09:19:57 -0400 | [diff] [blame] | 882 | "core/fxcrt/xml/cfx_xmlattributenode.cpp", |
| 883 | "core/fxcrt/xml/cfx_xmlattributenode.h", |
| 884 | "core/fxcrt/xml/cfx_xmlchardata.cpp", |
| 885 | "core/fxcrt/xml/cfx_xmlchardata.h", |
| 886 | "core/fxcrt/xml/cfx_xmldoc.cpp", |
| 887 | "core/fxcrt/xml/cfx_xmldoc.h", |
| 888 | "core/fxcrt/xml/cfx_xmlelement.cpp", |
| 889 | "core/fxcrt/xml/cfx_xmlelement.h", |
| 890 | "core/fxcrt/xml/cfx_xmlinstruction.cpp", |
| 891 | "core/fxcrt/xml/cfx_xmlinstruction.h", |
| 892 | "core/fxcrt/xml/cfx_xmlnode.cpp", |
| 893 | "core/fxcrt/xml/cfx_xmlnode.h", |
| 894 | "core/fxcrt/xml/cfx_xmlparser.cpp", |
| 895 | "core/fxcrt/xml/cfx_xmlparser.h", |
| 896 | "core/fxcrt/xml/cfx_xmlsyntaxparser.cpp", |
| 897 | "core/fxcrt/xml/cfx_xmlsyntaxparser.h", |
| 898 | "core/fxcrt/xml/cfx_xmltext.cpp", |
| 899 | "core/fxcrt/xml/cfx_xmltext.h", |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 900 | ] |
| 901 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 902 | } |
| 903 | |
| 904 | static_library("fxge") { |
| 905 | sources = [ |
npm | cfcc11e | 2016-10-25 14:26:39 -0700 | [diff] [blame] | 906 | "core/fxge/android/cfpf_skiabufferfont.h", |
| 907 | "core/fxge/android/cfpf_skiadevicemodule.cpp", |
| 908 | "core/fxge/android/cfpf_skiadevicemodule.h", |
| 909 | "core/fxge/android/cfpf_skiafilefont.h", |
| 910 | "core/fxge/android/cfpf_skiafont.cpp", |
| 911 | "core/fxge/android/cfpf_skiafont.h", |
| 912 | "core/fxge/android/cfpf_skiafontdescriptor.h", |
npm | 8382803 | 2016-10-21 11:56:53 -0700 | [diff] [blame] | 913 | "core/fxge/android/cfpf_skiafontmgr.cpp", |
npm | cfcc11e | 2016-10-25 14:26:39 -0700 | [diff] [blame] | 914 | "core/fxge/android/cfpf_skiafontmgr.h", |
| 915 | "core/fxge/android/cfpf_skiapathfont.h", |
| 916 | "core/fxge/android/cfx_androidfontinfo.cpp", |
| 917 | "core/fxge/android/cfx_androidfontinfo.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 918 | "core/fxge/android/fx_android_imp.cpp", |
Dan Sinclair | a5085d4 | 2017-05-11 16:26:50 -0400 | [diff] [blame] | 919 | "core/fxge/cfx_defaultrenderdevice.h", |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 920 | "core/fxge/cfx_facecache.h", |
| 921 | "core/fxge/cfx_fontcache.h", |
| 922 | "core/fxge/cfx_fontmapper.h", |
| 923 | "core/fxge/cfx_fontmgr.h", |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 924 | "core/fxge/cfx_gemodule.h", |
| 925 | "core/fxge/cfx_graphstate.h", |
| 926 | "core/fxge/cfx_graphstatedata.h", |
| 927 | "core/fxge/cfx_pathdata.h", |
| 928 | "core/fxge/cfx_renderdevice.h", |
| 929 | "core/fxge/cfx_substfont.h", |
| 930 | "core/fxge/cfx_unicodeencoding.h", |
Dan Sinclair | a5085d4 | 2017-05-11 16:26:50 -0400 | [diff] [blame] | 931 | "core/fxge/cfx_windowsrenderdevice.h", |
Nicolas Pena | 0c972eb | 2017-04-03 13:43:52 -0400 | [diff] [blame] | 932 | "core/fxge/dib/cfx_bitmapcomposer.cpp", |
| 933 | "core/fxge/dib/cfx_bitmapcomposer.h", |
| 934 | "core/fxge/dib/cfx_bitmapstorer.cpp", |
| 935 | "core/fxge/dib/cfx_bitmapstorer.h", |
Nicolas Pena | 192e4d9 | 2017-04-03 12:48:00 -0400 | [diff] [blame] | 936 | "core/fxge/dib/cfx_dibextractor.cpp", |
| 937 | "core/fxge/dib/cfx_dibextractor.h", |
| 938 | "core/fxge/dib/cfx_dibitmap.cpp", |
Nicolas Pena | fc715c3 | 2017-03-31 10:22:11 -0400 | [diff] [blame] | 939 | "core/fxge/dib/cfx_dibitmap.h", |
| 940 | "core/fxge/dib/cfx_dibsource.cpp", |
| 941 | "core/fxge/dib/cfx_dibsource.h", |
Nicolas Pena | ac66da2 | 2017-03-31 14:38:21 -0400 | [diff] [blame] | 942 | "core/fxge/dib/cfx_filtereddib.cpp", |
Nicolas Pena | fc715c3 | 2017-03-31 10:22:11 -0400 | [diff] [blame] | 943 | "core/fxge/dib/cfx_filtereddib.h", |
Nicolas Pena | bdbb0bd | 2017-03-31 15:39:44 -0400 | [diff] [blame] | 944 | "core/fxge/dib/cfx_imagerenderer.cpp", |
| 945 | "core/fxge/dib/cfx_imagerenderer.h", |
Nicolas Pena | 0c972eb | 2017-04-03 13:43:52 -0400 | [diff] [blame] | 946 | "core/fxge/dib/cfx_imagestretcher.cpp", |
| 947 | "core/fxge/dib/cfx_imagestretcher.h", |
Nicolas Pena | bdbb0bd | 2017-03-31 15:39:44 -0400 | [diff] [blame] | 948 | "core/fxge/dib/cfx_imagetransformer.cpp", |
| 949 | "core/fxge/dib/cfx_imagetransformer.h", |
Nicolas Pena | ac66da2 | 2017-03-31 14:38:21 -0400 | [diff] [blame] | 950 | "core/fxge/dib/cfx_scanlinecompositor.cpp", |
| 951 | "core/fxge/dib/cfx_scanlinecompositor.h", |
Nicolas Pena | 236ce3b | 2017-04-04 17:47:50 -0400 | [diff] [blame] | 952 | "core/fxge/dib/cstretchengine.cpp", |
| 953 | "core/fxge/dib/cstretchengine.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 954 | "core/fxge/dib/fx_dib_main.cpp", |
Nicolas Pena | 37cc5fb | 2017-04-04 12:12:49 -0400 | [diff] [blame] | 955 | "core/fxge/dib/ifx_scanlinecomposer.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 956 | "core/fxge/fontdata/chromefontdata/FoxitDingbats.cpp", |
| 957 | "core/fxge/fontdata/chromefontdata/FoxitFixed.cpp", |
| 958 | "core/fxge/fontdata/chromefontdata/FoxitFixedBold.cpp", |
| 959 | "core/fxge/fontdata/chromefontdata/FoxitFixedBoldItalic.cpp", |
| 960 | "core/fxge/fontdata/chromefontdata/FoxitFixedItalic.cpp", |
| 961 | "core/fxge/fontdata/chromefontdata/FoxitSans.cpp", |
| 962 | "core/fxge/fontdata/chromefontdata/FoxitSansBold.cpp", |
| 963 | "core/fxge/fontdata/chromefontdata/FoxitSansBoldItalic.cpp", |
| 964 | "core/fxge/fontdata/chromefontdata/FoxitSansItalic.cpp", |
| 965 | "core/fxge/fontdata/chromefontdata/FoxitSansMM.cpp", |
| 966 | "core/fxge/fontdata/chromefontdata/FoxitSerif.cpp", |
| 967 | "core/fxge/fontdata/chromefontdata/FoxitSerifBold.cpp", |
| 968 | "core/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.cpp", |
| 969 | "core/fxge/fontdata/chromefontdata/FoxitSerifItalic.cpp", |
| 970 | "core/fxge/fontdata/chromefontdata/FoxitSerifMM.cpp", |
| 971 | "core/fxge/fontdata/chromefontdata/FoxitSymbol.cpp", |
| 972 | "core/fxge/fontdata/chromefontdata/chromefontdata.h", |
| 973 | "core/fxge/freetype/fx_freetype.cpp", |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 974 | "core/fxge/fx_dib.h", |
| 975 | "core/fxge/fx_font.h", |
| 976 | "core/fxge/fx_freetype.h", |
npm | 660de3c | 2016-08-08 08:18:29 -0700 | [diff] [blame] | 977 | "core/fxge/ge/cfx_cliprgn.cpp", |
| 978 | "core/fxge/ge/cfx_cliprgn.h", |
npm | 19ecc23 | 2016-08-19 16:17:57 -0700 | [diff] [blame] | 979 | "core/fxge/ge/cfx_facecache.cpp", |
npm | f73893a | 2016-07-27 13:54:25 -0700 | [diff] [blame] | 980 | "core/fxge/ge/cfx_folderfontinfo.cpp", |
| 981 | "core/fxge/ge/cfx_folderfontinfo.h", |
npm | 155c880 | 2016-09-06 07:31:02 -0700 | [diff] [blame] | 982 | "core/fxge/ge/cfx_font.cpp", |
npm | d691899 | 2016-08-17 13:22:16 -0700 | [diff] [blame] | 983 | "core/fxge/ge/cfx_fontcache.cpp", |
npm | f73893a | 2016-07-27 13:54:25 -0700 | [diff] [blame] | 984 | "core/fxge/ge/cfx_fontmapper.cpp", |
| 985 | "core/fxge/ge/cfx_fontmgr.cpp", |
npm | 26b86e6 | 2016-08-04 17:22:14 -0700 | [diff] [blame] | 986 | "core/fxge/ge/cfx_gemodule.cpp", |
tsepez | 7c9f0a1 | 2016-09-06 13:02:55 -0700 | [diff] [blame] | 987 | "core/fxge/ge/cfx_graphstate.cpp", |
npm | 9ada2d8 | 2016-08-10 07:51:38 -0700 | [diff] [blame] | 988 | "core/fxge/ge/cfx_graphstatedata.cpp", |
npm | 660de3c | 2016-08-08 08:18:29 -0700 | [diff] [blame] | 989 | "core/fxge/ge/cfx_pathdata.cpp", |
npm | 9ada2d8 | 2016-08-10 07:51:38 -0700 | [diff] [blame] | 990 | "core/fxge/ge/cfx_renderdevice.cpp", |
npm | 81ee14d | 2016-08-29 09:35:12 -0700 | [diff] [blame] | 991 | "core/fxge/ge/cfx_substfont.cpp", |
npm | 1a8946b | 2016-08-18 10:55:29 -0700 | [diff] [blame] | 992 | "core/fxge/ge/cfx_unicodeencoding.cpp", |
npm | 81ee14d | 2016-08-29 09:35:12 -0700 | [diff] [blame] | 993 | "core/fxge/ge/cttfontdesc.cpp", |
| 994 | "core/fxge/ge/cttfontdesc.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 995 | "core/fxge/ge/fx_ge_fontmap.cpp", |
| 996 | "core/fxge/ge/fx_ge_linux.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 997 | "core/fxge/ge/fx_ge_text.cpp", |
| 998 | "core/fxge/ge/fx_text_int.h", |
weili | 095d346 | 2016-06-21 11:24:24 -0700 | [diff] [blame] | 999 | "core/fxge/ifx_renderdevicedriver.cpp", |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 1000 | "core/fxge/ifx_renderdevicedriver.h", |
| 1001 | "core/fxge/ifx_systemfontinfo.h", |
npm | 7484762 | 2016-07-29 15:20:25 -0700 | [diff] [blame] | 1002 | "core/fxge/win32/cfx_windowsdib.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1003 | ] |
| 1004 | |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 1005 | configs += [ |
Lei Zhang | 7b16ba5 | 2015-10-26 17:06:53 -0700 | [diff] [blame] | 1006 | ":fxge_warnings", |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1007 | ":pdfium_core_config", |
Dan Sinclair | bc6c672 | 2015-10-22 14:58:54 -0400 | [diff] [blame] | 1008 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1009 | |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1010 | deps = [ |
| 1011 | ":fxcrt", |
| 1012 | ] |
| 1013 | |
Lei Zhang | 3de5005 | 2017-03-29 21:02:13 -0700 | [diff] [blame] | 1014 | defines = [ "DEFINE_PS_TABLES" ] |
| 1015 | |
npm | 1a8946b | 2016-08-18 10:55:29 -0700 | [diff] [blame] | 1016 | if (pdf_enable_xfa) { |
| 1017 | sources += [ |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 1018 | "core/fxge/cfx_unicodeencodingex.h", |
npm | 1a8946b | 2016-08-18 10:55:29 -0700 | [diff] [blame] | 1019 | "core/fxge/ge/cfx_unicodeencodingex.cpp", |
npm | 1a8946b | 2016-08-18 10:55:29 -0700 | [diff] [blame] | 1020 | ] |
| 1021 | } |
| 1022 | |
caryclark | af177fe | 2016-11-16 10:10:03 -0800 | [diff] [blame] | 1023 | if (pdf_use_skia || pdf_use_skia_paths) { |
Cary Clark | 59b3a48 | 2016-03-17 12:00:39 -0400 | [diff] [blame] | 1024 | sources += [ "core/fxge/skia/fx_skia_device.cpp" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1025 | deps += [ "//skia" ] |
caryclark | 749c14c | 2016-05-19 07:01:03 -0700 | [diff] [blame] | 1026 | } else { |
| 1027 | sources += [ |
| 1028 | "core/fxge/agg/fx_agg_driver.cpp", |
| 1029 | "core/fxge/agg/fx_agg_driver.h", |
| 1030 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1031 | deps += [ "third_party:fx_agg" ] |
Dan Sinclair | 72a39ce | 2017-03-21 16:44:03 -0400 | [diff] [blame] | 1032 | } |
npm | a97fc7c | 2016-11-07 08:50:04 -0800 | [diff] [blame] | 1033 | |
Dan Sinclair | 72a39ce | 2017-03-21 16:44:03 -0400 | [diff] [blame] | 1034 | if (is_mac) { |
| 1035 | sources += [ "core/fxge/apple/fx_apple_platform.cpp" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | if (is_win) { |
| 1039 | sources += [ |
rbpotter | 8d94b66 | 2017-01-06 08:10:18 -0800 | [diff] [blame] | 1040 | "core/fxge/win32/cfx_psrenderer.cpp", |
| 1041 | "core/fxge/win32/cfx_psrenderer.h", |
| 1042 | "core/fxge/win32/cpsoutput.cpp", |
| 1043 | "core/fxge/win32/cpsoutput.h", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1044 | "core/fxge/win32/dwrite_int.h", |
| 1045 | "core/fxge/win32/fx_win32_device.cpp", |
| 1046 | "core/fxge/win32/fx_win32_dib.cpp", |
| 1047 | "core/fxge/win32/fx_win32_dwrite.cpp", |
| 1048 | "core/fxge/win32/fx_win32_gdipext.cpp", |
| 1049 | "core/fxge/win32/fx_win32_print.cpp", |
| 1050 | "core/fxge/win32/win32_int.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1051 | ] |
Tom Sepez | 465ed87 | 2015-12-09 14:55:41 -0800 | [diff] [blame] | 1052 | configs -= [ "//build/config/win:lean_and_mean" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1053 | } |
npm | a97fc7c | 2016-11-07 08:50:04 -0800 | [diff] [blame] | 1054 | |
| 1055 | if (is_mac) { |
| 1056 | sources += [ |
| 1057 | "core/fxge/apple/apple_int.h", |
| 1058 | "core/fxge/apple/fx_mac_imp.cpp", |
| 1059 | "core/fxge/apple/fx_quartz_device.cpp", |
| 1060 | ] |
| 1061 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1062 | } |
| 1063 | |
| 1064 | static_library("fxedit") { |
| 1065 | sources = [ |
dsinclair | 0bb385b | 2016-09-29 17:03:59 -0700 | [diff] [blame] | 1066 | "fpdfsdk/fxedit/fx_edit.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1067 | "fpdfsdk/fxedit/fxet_ap.cpp", |
| 1068 | "fpdfsdk/fxedit/fxet_edit.cpp", |
dsinclair | 0bb385b | 2016-09-29 17:03:59 -0700 | [diff] [blame] | 1069 | "fpdfsdk/fxedit/fxet_edit.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1070 | "fpdfsdk/fxedit/fxet_list.cpp", |
dsinclair | 0bb385b | 2016-09-29 17:03:59 -0700 | [diff] [blame] | 1071 | "fpdfsdk/fxedit/fxet_list.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1072 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1073 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1074 | deps = [ |
| 1075 | ":fxcrt", |
| 1076 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | static_library("pdfwindow") { |
| 1080 | sources = [ |
Lei Zhang | 633a3b7 | 2017-06-02 15:27:22 -0700 | [diff] [blame] | 1081 | "fpdfsdk/pdfwindow/cpwl_button.cpp", |
| 1082 | "fpdfsdk/pdfwindow/cpwl_button.h", |
| 1083 | "fpdfsdk/pdfwindow/cpwl_caret.cpp", |
| 1084 | "fpdfsdk/pdfwindow/cpwl_caret.h", |
Dan Sinclair | fc54e05 | 2017-02-23 09:59:05 -0500 | [diff] [blame] | 1085 | "fpdfsdk/pdfwindow/cpwl_color.cpp", |
Dan Sinclair | bc8dcc3 | 2017-01-19 13:53:02 -0500 | [diff] [blame] | 1086 | "fpdfsdk/pdfwindow/cpwl_color.h", |
Lei Zhang | 633a3b7 | 2017-06-02 15:27:22 -0700 | [diff] [blame] | 1087 | "fpdfsdk/pdfwindow/cpwl_combo_box.cpp", |
| 1088 | "fpdfsdk/pdfwindow/cpwl_combo_box.h", |
| 1089 | "fpdfsdk/pdfwindow/cpwl_edit.cpp", |
| 1090 | "fpdfsdk/pdfwindow/cpwl_edit.h", |
| 1091 | "fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp", |
| 1092 | "fpdfsdk/pdfwindow/cpwl_edit_ctrl.h", |
| 1093 | "fpdfsdk/pdfwindow/cpwl_font_map.cpp", |
| 1094 | "fpdfsdk/pdfwindow/cpwl_font_map.h", |
| 1095 | "fpdfsdk/pdfwindow/cpwl_icon.cpp", |
| 1096 | "fpdfsdk/pdfwindow/cpwl_icon.h", |
| 1097 | "fpdfsdk/pdfwindow/cpwl_list_box.cpp", |
| 1098 | "fpdfsdk/pdfwindow/cpwl_list_box.h", |
| 1099 | "fpdfsdk/pdfwindow/cpwl_scroll_bar.cpp", |
| 1100 | "fpdfsdk/pdfwindow/cpwl_scroll_bar.h", |
| 1101 | "fpdfsdk/pdfwindow/cpwl_special_button.cpp", |
| 1102 | "fpdfsdk/pdfwindow/cpwl_special_button.h", |
Lei Zhang | fac46f8 | 2017-06-02 14:20:04 -0700 | [diff] [blame] | 1103 | "fpdfsdk/pdfwindow/cpwl_timer.cpp", |
| 1104 | "fpdfsdk/pdfwindow/cpwl_timer.h", |
| 1105 | "fpdfsdk/pdfwindow/cpwl_timer_handler.cpp", |
| 1106 | "fpdfsdk/pdfwindow/cpwl_timer_handler.h", |
Lei Zhang | 633a3b7 | 2017-06-02 15:27:22 -0700 | [diff] [blame] | 1107 | "fpdfsdk/pdfwindow/cpwl_utils.cpp", |
| 1108 | "fpdfsdk/pdfwindow/cpwl_utils.h", |
| 1109 | "fpdfsdk/pdfwindow/cpwl_wnd.cpp", |
| 1110 | "fpdfsdk/pdfwindow/cpwl_wnd.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1111 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1112 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1113 | deps = [ |
| 1114 | ":fxcrt", |
| 1115 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1116 | } |
| 1117 | |
| 1118 | static_library("javascript") { |
| 1119 | sources = [ |
Tom Sepez | d6ae2af | 2017-02-16 11:49:55 -0800 | [diff] [blame] | 1120 | "fpdfsdk/javascript/ijs_event_context.h", |
dsinclair | 64376be | 2016-03-31 20:03:24 -0700 | [diff] [blame] | 1121 | "fpdfsdk/javascript/ijs_runtime.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1122 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1123 | configs += [ ":pdfium_core_config" ] |
| 1124 | deps = [ |
| 1125 | ":fxcrt", |
| 1126 | ] |
| 1127 | |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1128 | if (pdf_enable_v8) { |
| 1129 | sources += [ |
tonikitoo | 618cb1f | 2016-08-18 20:10:17 -0700 | [diff] [blame] | 1130 | "fpdfsdk/javascript/Annot.cpp", |
| 1131 | "fpdfsdk/javascript/Annot.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1132 | "fpdfsdk/javascript/Consts.cpp", |
| 1133 | "fpdfsdk/javascript/Consts.h", |
| 1134 | "fpdfsdk/javascript/Document.cpp", |
| 1135 | "fpdfsdk/javascript/Document.h", |
| 1136 | "fpdfsdk/javascript/Field.cpp", |
| 1137 | "fpdfsdk/javascript/Field.h", |
| 1138 | "fpdfsdk/javascript/Icon.cpp", |
| 1139 | "fpdfsdk/javascript/Icon.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1140 | "fpdfsdk/javascript/JS_Define.h", |
| 1141 | "fpdfsdk/javascript/JS_EventHandler.cpp", |
| 1142 | "fpdfsdk/javascript/JS_EventHandler.h", |
| 1143 | "fpdfsdk/javascript/JS_GlobalData.cpp", |
| 1144 | "fpdfsdk/javascript/JS_GlobalData.h", |
weili | 47228ac | 2016-07-20 10:35:31 -0700 | [diff] [blame] | 1145 | "fpdfsdk/javascript/JS_KeyValue.cpp", |
| 1146 | "fpdfsdk/javascript/JS_KeyValue.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1147 | "fpdfsdk/javascript/JS_Object.cpp", |
| 1148 | "fpdfsdk/javascript/JS_Object.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1149 | "fpdfsdk/javascript/JS_Value.cpp", |
| 1150 | "fpdfsdk/javascript/JS_Value.h", |
| 1151 | "fpdfsdk/javascript/PublicMethods.cpp", |
| 1152 | "fpdfsdk/javascript/PublicMethods.h", |
| 1153 | "fpdfsdk/javascript/app.cpp", |
| 1154 | "fpdfsdk/javascript/app.h", |
Tom Sepez | d6ae2af | 2017-02-16 11:49:55 -0800 | [diff] [blame] | 1155 | "fpdfsdk/javascript/cjs_event_context.cpp", |
| 1156 | "fpdfsdk/javascript/cjs_event_context.h", |
dsinclair | 64376be | 2016-03-31 20:03:24 -0700 | [diff] [blame] | 1157 | "fpdfsdk/javascript/cjs_runtime.cpp", |
| 1158 | "fpdfsdk/javascript/cjs_runtime.h", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1159 | "fpdfsdk/javascript/color.cpp", |
| 1160 | "fpdfsdk/javascript/color.h", |
| 1161 | "fpdfsdk/javascript/console.cpp", |
| 1162 | "fpdfsdk/javascript/console.h", |
| 1163 | "fpdfsdk/javascript/event.cpp", |
| 1164 | "fpdfsdk/javascript/event.h", |
| 1165 | "fpdfsdk/javascript/global.cpp", |
| 1166 | "fpdfsdk/javascript/global.h", |
| 1167 | "fpdfsdk/javascript/report.cpp", |
| 1168 | "fpdfsdk/javascript/report.h", |
| 1169 | "fpdfsdk/javascript/resource.cpp", |
| 1170 | "fpdfsdk/javascript/resource.h", |
| 1171 | "fpdfsdk/javascript/util.cpp", |
| 1172 | "fpdfsdk/javascript/util.h", |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1173 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1174 | deps += [ ":fxjs" ] |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 1175 | configs += [ "//v8:external_startup_data" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1176 | } else { |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1177 | sources += [ "fpdfsdk/javascript/JS_Runtime_Stub.cpp" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1178 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1179 | } |
| 1180 | |
| 1181 | static_library("formfiller") { |
| 1182 | sources = [ |
Dan Sinclair | edbb319 | 2016-03-21 09:08:24 -0400 | [diff] [blame] | 1183 | "fpdfsdk/formfiller/cba_fontmap.cpp", |
| 1184 | "fpdfsdk/formfiller/cba_fontmap.h", |
| 1185 | "fpdfsdk/formfiller/cffl_checkbox.cpp", |
| 1186 | "fpdfsdk/formfiller/cffl_checkbox.h", |
| 1187 | "fpdfsdk/formfiller/cffl_combobox.cpp", |
| 1188 | "fpdfsdk/formfiller/cffl_combobox.h", |
| 1189 | "fpdfsdk/formfiller/cffl_formfiller.cpp", |
| 1190 | "fpdfsdk/formfiller/cffl_formfiller.h", |
dsinclair | b94d7c9 | 2016-09-21 12:07:00 -0700 | [diff] [blame] | 1191 | "fpdfsdk/formfiller/cffl_interactiveformfiller.cpp", |
| 1192 | "fpdfsdk/formfiller/cffl_interactiveformfiller.h", |
Dan Sinclair | edbb319 | 2016-03-21 09:08:24 -0400 | [diff] [blame] | 1193 | "fpdfsdk/formfiller/cffl_listbox.cpp", |
| 1194 | "fpdfsdk/formfiller/cffl_listbox.h", |
| 1195 | "fpdfsdk/formfiller/cffl_pushbutton.cpp", |
| 1196 | "fpdfsdk/formfiller/cffl_pushbutton.h", |
| 1197 | "fpdfsdk/formfiller/cffl_radiobutton.cpp", |
| 1198 | "fpdfsdk/formfiller/cffl_radiobutton.h", |
| 1199 | "fpdfsdk/formfiller/cffl_textfield.cpp", |
| 1200 | "fpdfsdk/formfiller/cffl_textfield.h", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1201 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1202 | configs += [ ":pdfium_core_config" ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1203 | deps = [ |
| 1204 | ":fxcrt", |
| 1205 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1206 | } |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 1207 | |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1208 | if (pdf_enable_v8) { |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1209 | static_library("fxjs") { |
| 1210 | sources = [ |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1211 | "fxjs/fxjs_v8.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1212 | "fxjs/fxjs_v8.h", |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1213 | ] |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1214 | configs += [ ":pdfium_core_config" ] |
| 1215 | deps = [ |
| 1216 | ":fxcrt", |
| 1217 | "//v8", |
| 1218 | "//v8:v8_libplatform", |
| 1219 | ] |
| 1220 | include_dirs = [ |
| 1221 | "//v8", |
| 1222 | "//v8/include", |
| 1223 | ] |
| 1224 | public_deps = [ |
| 1225 | "//v8", |
| 1226 | ] |
| 1227 | |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1228 | if (pdf_enable_xfa) { |
| 1229 | sources += [ |
| 1230 | "fxjs/cfxjse_arguments.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1231 | "fxjs/cfxjse_arguments.h", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1232 | "fxjs/cfxjse_class.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1233 | "fxjs/cfxjse_class.h", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1234 | "fxjs/cfxjse_context.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1235 | "fxjs/cfxjse_context.h", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1236 | "fxjs/cfxjse_isolatetracker.cpp", |
| 1237 | "fxjs/cfxjse_isolatetracker.h", |
| 1238 | "fxjs/cfxjse_runtimedata.cpp", |
| 1239 | "fxjs/cfxjse_runtimedata.h", |
| 1240 | "fxjs/cfxjse_value.cpp", |
dsinclair | 4355468 | 2016-09-29 17:29:48 -0700 | [diff] [blame] | 1241 | "fxjs/cfxjse_value.h", |
| 1242 | "fxjs/fxjse.h", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1243 | ] |
| 1244 | } |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1245 | } |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1246 | } |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1247 | |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1248 | if (pdf_enable_xfa) { |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1249 | static_library("fpdfxfa") { |
| 1250 | sources = [ |
dsinclair | 521b750 | 2016-11-02 13:02:28 -0700 | [diff] [blame] | 1251 | "fpdfsdk/fpdfxfa/cpdfxfa_context.cpp", |
| 1252 | "fpdfsdk/fpdfxfa/cpdfxfa_context.h", |
dsinclair | a440bb3 | 2016-09-14 07:01:54 -0700 | [diff] [blame] | 1253 | "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp", |
dsinclair | bec7692 | 2016-09-29 16:52:30 -0700 | [diff] [blame] | 1254 | "fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.h", |
dsinclair | 4d29e78 | 2016-10-04 14:02:47 -0700 | [diff] [blame] | 1255 | "fpdfsdk/fpdfxfa/cpdfxfa_page.cpp", |
| 1256 | "fpdfsdk/fpdfxfa/cpdfxfa_page.h", |
| 1257 | "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.cpp", |
| 1258 | "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h", |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1259 | ] |
| 1260 | deps = [ |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1261 | ":fxcrt", |
dsinclair | 8837c91 | 2016-11-01 11:22:37 -0700 | [diff] [blame] | 1262 | ":fxjs", |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1263 | ":xfa", |
| 1264 | ] |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1265 | configs += [ ":pdfium_core_config" ] |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1266 | } |
| 1267 | |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 1268 | static_library("fxbarcode") { |
| 1269 | sources = [ |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 1270 | "fxbarcode/BC_Library.cpp", |
| 1271 | "fxbarcode/BC_Library.h", |
| 1272 | "fxbarcode/BC_TwoDimWriter.cpp", |
| 1273 | "fxbarcode/BC_TwoDimWriter.h", |
| 1274 | "fxbarcode/BC_UtilCodingConvert.cpp", |
| 1275 | "fxbarcode/BC_UtilCodingConvert.h", |
| 1276 | "fxbarcode/BC_Utils.cpp", |
| 1277 | "fxbarcode/BC_Writer.cpp", |
| 1278 | "fxbarcode/BC_Writer.h", |
| 1279 | "fxbarcode/cbc_codabar.cpp", |
| 1280 | "fxbarcode/cbc_codabar.h", |
| 1281 | "fxbarcode/cbc_code128.cpp", |
| 1282 | "fxbarcode/cbc_code128.h", |
| 1283 | "fxbarcode/cbc_code39.cpp", |
| 1284 | "fxbarcode/cbc_code39.h", |
| 1285 | "fxbarcode/cbc_codebase.cpp", |
| 1286 | "fxbarcode/cbc_codebase.h", |
| 1287 | "fxbarcode/cbc_datamatrix.cpp", |
| 1288 | "fxbarcode/cbc_datamatrix.h", |
| 1289 | "fxbarcode/cbc_ean13.cpp", |
| 1290 | "fxbarcode/cbc_ean13.h", |
| 1291 | "fxbarcode/cbc_ean8.cpp", |
| 1292 | "fxbarcode/cbc_ean8.h", |
| 1293 | "fxbarcode/cbc_onecode.cpp", |
| 1294 | "fxbarcode/cbc_onecode.h", |
| 1295 | "fxbarcode/cbc_pdf417i.cpp", |
| 1296 | "fxbarcode/cbc_pdf417i.h", |
| 1297 | "fxbarcode/cbc_qrcode.cpp", |
| 1298 | "fxbarcode/cbc_qrcode.h", |
| 1299 | "fxbarcode/cbc_upca.cpp", |
| 1300 | "fxbarcode/cbc_upca.h", |
| 1301 | "fxbarcode/common/BC_CommonBitArray.cpp", |
| 1302 | "fxbarcode/common/BC_CommonBitArray.h", |
| 1303 | "fxbarcode/common/BC_CommonBitMatrix.cpp", |
| 1304 | "fxbarcode/common/BC_CommonBitMatrix.h", |
| 1305 | "fxbarcode/common/BC_CommonByteArray.cpp", |
| 1306 | "fxbarcode/common/BC_CommonByteArray.h", |
| 1307 | "fxbarcode/common/BC_CommonByteMatrix.cpp", |
| 1308 | "fxbarcode/common/BC_CommonByteMatrix.h", |
| 1309 | "fxbarcode/common/reedsolomon/BC_ReedSolomon.cpp", |
| 1310 | "fxbarcode/common/reedsolomon/BC_ReedSolomon.h", |
| 1311 | "fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.cpp", |
| 1312 | "fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.h", |
| 1313 | "fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp", |
| 1314 | "fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.h", |
| 1315 | "fxbarcode/datamatrix/BC_ASCIIEncoder.cpp", |
| 1316 | "fxbarcode/datamatrix/BC_ASCIIEncoder.h", |
| 1317 | "fxbarcode/datamatrix/BC_Base256Encoder.cpp", |
| 1318 | "fxbarcode/datamatrix/BC_Base256Encoder.h", |
| 1319 | "fxbarcode/datamatrix/BC_C40Encoder.cpp", |
| 1320 | "fxbarcode/datamatrix/BC_C40Encoder.h", |
| 1321 | "fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.cpp", |
| 1322 | "fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.h", |
| 1323 | "fxbarcode/datamatrix/BC_DataMatrixWriter.cpp", |
| 1324 | "fxbarcode/datamatrix/BC_DataMatrixWriter.h", |
| 1325 | "fxbarcode/datamatrix/BC_DefaultPlacement.cpp", |
| 1326 | "fxbarcode/datamatrix/BC_DefaultPlacement.h", |
| 1327 | "fxbarcode/datamatrix/BC_EdifactEncoder.cpp", |
| 1328 | "fxbarcode/datamatrix/BC_EdifactEncoder.h", |
| 1329 | "fxbarcode/datamatrix/BC_Encoder.cpp", |
| 1330 | "fxbarcode/datamatrix/BC_Encoder.h", |
| 1331 | "fxbarcode/datamatrix/BC_EncoderContext.cpp", |
| 1332 | "fxbarcode/datamatrix/BC_EncoderContext.h", |
| 1333 | "fxbarcode/datamatrix/BC_ErrorCorrection.cpp", |
| 1334 | "fxbarcode/datamatrix/BC_ErrorCorrection.h", |
| 1335 | "fxbarcode/datamatrix/BC_HighLevelEncoder.cpp", |
| 1336 | "fxbarcode/datamatrix/BC_HighLevelEncoder.h", |
| 1337 | "fxbarcode/datamatrix/BC_SymbolInfo.cpp", |
| 1338 | "fxbarcode/datamatrix/BC_SymbolInfo.h", |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 1339 | "fxbarcode/datamatrix/BC_TextEncoder.cpp", |
| 1340 | "fxbarcode/datamatrix/BC_TextEncoder.h", |
| 1341 | "fxbarcode/datamatrix/BC_X12Encoder.cpp", |
| 1342 | "fxbarcode/datamatrix/BC_X12Encoder.h", |
| 1343 | "fxbarcode/oned/BC_OneDimWriter.cpp", |
| 1344 | "fxbarcode/oned/BC_OneDimWriter.h", |
| 1345 | "fxbarcode/oned/BC_OnedCodaBarWriter.cpp", |
| 1346 | "fxbarcode/oned/BC_OnedCodaBarWriter.h", |
| 1347 | "fxbarcode/oned/BC_OnedCode128Writer.cpp", |
| 1348 | "fxbarcode/oned/BC_OnedCode128Writer.h", |
| 1349 | "fxbarcode/oned/BC_OnedCode39Writer.cpp", |
| 1350 | "fxbarcode/oned/BC_OnedCode39Writer.h", |
| 1351 | "fxbarcode/oned/BC_OnedEAN13Writer.cpp", |
| 1352 | "fxbarcode/oned/BC_OnedEAN13Writer.h", |
| 1353 | "fxbarcode/oned/BC_OnedEAN8Writer.cpp", |
| 1354 | "fxbarcode/oned/BC_OnedEAN8Writer.h", |
| 1355 | "fxbarcode/oned/BC_OnedUPCAWriter.cpp", |
| 1356 | "fxbarcode/oned/BC_OnedUPCAWriter.h", |
| 1357 | "fxbarcode/pdf417/BC_PDF417.cpp", |
| 1358 | "fxbarcode/pdf417/BC_PDF417.h", |
| 1359 | "fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp", |
| 1360 | "fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h", |
| 1361 | "fxbarcode/pdf417/BC_PDF417BarcodeRow.cpp", |
| 1362 | "fxbarcode/pdf417/BC_PDF417BarcodeRow.h", |
| 1363 | "fxbarcode/pdf417/BC_PDF417Compaction.cpp", |
| 1364 | "fxbarcode/pdf417/BC_PDF417Compaction.h", |
| 1365 | "fxbarcode/pdf417/BC_PDF417ErrorCorrection.cpp", |
| 1366 | "fxbarcode/pdf417/BC_PDF417ErrorCorrection.h", |
| 1367 | "fxbarcode/pdf417/BC_PDF417HighLevelEncoder.cpp", |
| 1368 | "fxbarcode/pdf417/BC_PDF417HighLevelEncoder.h", |
| 1369 | "fxbarcode/pdf417/BC_PDF417Writer.cpp", |
| 1370 | "fxbarcode/pdf417/BC_PDF417Writer.h", |
| 1371 | "fxbarcode/qrcode/BC_QRCodeWriter.cpp", |
| 1372 | "fxbarcode/qrcode/BC_QRCodeWriter.h", |
| 1373 | "fxbarcode/qrcode/BC_QRCoder.cpp", |
| 1374 | "fxbarcode/qrcode/BC_QRCoder.h", |
| 1375 | "fxbarcode/qrcode/BC_QRCoderBitVector.cpp", |
| 1376 | "fxbarcode/qrcode/BC_QRCoderBitVector.h", |
| 1377 | "fxbarcode/qrcode/BC_QRCoderBlockPair.cpp", |
| 1378 | "fxbarcode/qrcode/BC_QRCoderBlockPair.h", |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 1379 | "fxbarcode/qrcode/BC_QRCoderECBlocks.cpp", |
| 1380 | "fxbarcode/qrcode/BC_QRCoderECBlocks.h", |
Lei Zhang | 8a24b25 | 2017-04-06 14:23:26 -0700 | [diff] [blame] | 1381 | "fxbarcode/qrcode/BC_QRCoderECBlocksData.cpp", |
| 1382 | "fxbarcode/qrcode/BC_QRCoderECBlocksData.h", |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 1383 | "fxbarcode/qrcode/BC_QRCoderEncoder.cpp", |
| 1384 | "fxbarcode/qrcode/BC_QRCoderEncoder.h", |
| 1385 | "fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.cpp", |
| 1386 | "fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.h", |
| 1387 | "fxbarcode/qrcode/BC_QRCoderMaskUtil.cpp", |
| 1388 | "fxbarcode/qrcode/BC_QRCoderMaskUtil.h", |
| 1389 | "fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp", |
| 1390 | "fxbarcode/qrcode/BC_QRCoderMatrixUtil.h", |
| 1391 | "fxbarcode/qrcode/BC_QRCoderMode.cpp", |
| 1392 | "fxbarcode/qrcode/BC_QRCoderMode.h", |
| 1393 | "fxbarcode/qrcode/BC_QRCoderVersion.cpp", |
| 1394 | "fxbarcode/qrcode/BC_QRCoderVersion.h", |
| 1395 | "fxbarcode/utils.h", |
| 1396 | ] |
| 1397 | deps = [ |
| 1398 | ":fxcrt", |
| 1399 | ] |
| 1400 | configs += [ ":pdfium_core_config" ] |
| 1401 | } |
| 1402 | |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1403 | static_library("xfa") { |
| 1404 | sources = [ |
Dan Sinclair | d9828fd | 2017-03-30 10:58:49 -0400 | [diff] [blame] | 1405 | "xfa/fde/cfde_brush.h", |
dsinclair | acd0d59 | 2016-04-21 11:06:27 -0700 | [diff] [blame] | 1406 | "xfa/fde/cfde_path.cpp", |
| 1407 | "xfa/fde/cfde_path.h", |
Dan Sinclair | d9828fd | 2017-03-30 10:58:49 -0400 | [diff] [blame] | 1408 | "xfa/fde/cfde_pen.h", |
| 1409 | "xfa/fde/cfde_rendercontext.cpp", |
| 1410 | "xfa/fde/cfde_rendercontext.h", |
| 1411 | "xfa/fde/cfde_renderdevice.cpp", |
Dan Sinclair | bccf573 | 2017-03-30 14:10:32 -0400 | [diff] [blame] | 1412 | "xfa/fde/cfde_textout.cpp", |
| 1413 | "xfa/fde/cfde_textout.h", |
dsinclair | 6539518 | 2016-05-18 11:09:47 -0700 | [diff] [blame] | 1414 | "xfa/fde/cfde_txtedtbuf.cpp", |
| 1415 | "xfa/fde/cfde_txtedtbuf.h", |
dsinclair | 6539518 | 2016-05-18 11:09:47 -0700 | [diff] [blame] | 1416 | "xfa/fde/cfde_txtedtdorecord_deleterange.cpp", |
| 1417 | "xfa/fde/cfde_txtedtdorecord_deleterange.h", |
| 1418 | "xfa/fde/cfde_txtedtdorecord_insert.cpp", |
| 1419 | "xfa/fde/cfde_txtedtdorecord_insert.h", |
| 1420 | "xfa/fde/cfde_txtedtengine.cpp", |
| 1421 | "xfa/fde/cfde_txtedtengine.h", |
| 1422 | "xfa/fde/cfde_txtedtpage.cpp", |
| 1423 | "xfa/fde/cfde_txtedtpage.h", |
| 1424 | "xfa/fde/cfde_txtedtparag.cpp", |
| 1425 | "xfa/fde/cfde_txtedtparag.h", |
| 1426 | "xfa/fde/cfde_txtedttextset.cpp", |
| 1427 | "xfa/fde/cfde_txtedttextset.h", |
Dan Sinclair | d9828fd | 2017-03-30 10:58:49 -0400 | [diff] [blame] | 1428 | "xfa/fde/cfde_visualsetiterator.cpp", |
| 1429 | "xfa/fde/cfde_visualsetiterator.h", |
Dan Sinclair | 19c209d | 2017-01-18 12:47:24 -0500 | [diff] [blame] | 1430 | "xfa/fde/css/cfde_csscolorvalue.cpp", |
| 1431 | "xfa/fde/css/cfde_csscolorvalue.h", |
Dan Sinclair | 95bec80 | 2017-01-19 10:27:58 -0500 | [diff] [blame] | 1432 | "xfa/fde/css/cfde_csscomputedstyle.cpp", |
| 1433 | "xfa/fde/css/cfde_csscomputedstyle.h", |
Dan Sinclair | 21e954b | 2017-02-08 10:05:05 -0500 | [diff] [blame] | 1434 | "xfa/fde/css/cfde_csscustomproperty.cpp", |
Dan Sinclair | 95bec80 | 2017-01-19 10:27:58 -0500 | [diff] [blame] | 1435 | "xfa/fde/css/cfde_csscustomproperty.h", |
| 1436 | "xfa/fde/css/cfde_cssdeclaration.cpp", |
| 1437 | "xfa/fde/css/cfde_cssdeclaration.h", |
Dan Sinclair | 19c209d | 2017-01-18 12:47:24 -0500 | [diff] [blame] | 1438 | "xfa/fde/css/cfde_cssenumvalue.cpp", |
| 1439 | "xfa/fde/css/cfde_cssenumvalue.h", |
| 1440 | "xfa/fde/css/cfde_cssnumbervalue.cpp", |
| 1441 | "xfa/fde/css/cfde_cssnumbervalue.h", |
Dan Sinclair | 95bec80 | 2017-01-19 10:27:58 -0500 | [diff] [blame] | 1442 | "xfa/fde/css/cfde_csspropertyholder.cpp", |
| 1443 | "xfa/fde/css/cfde_csspropertyholder.h", |
npm | 69f160d | 2016-07-20 10:48:27 -0700 | [diff] [blame] | 1444 | "xfa/fde/css/cfde_cssrulecollection.cpp", |
Dan Sinclair | 95bec80 | 2017-01-19 10:27:58 -0500 | [diff] [blame] | 1445 | "xfa/fde/css/cfde_cssrulecollection.h", |
| 1446 | "xfa/fde/css/cfde_cssselector.cpp", |
| 1447 | "xfa/fde/css/cfde_cssselector.h", |
Dan Sinclair | 19c209d | 2017-01-18 12:47:24 -0500 | [diff] [blame] | 1448 | "xfa/fde/css/cfde_cssstringvalue.cpp", |
| 1449 | "xfa/fde/css/cfde_cssstringvalue.h", |
Dan Sinclair | 95bec80 | 2017-01-19 10:27:58 -0500 | [diff] [blame] | 1450 | "xfa/fde/css/cfde_cssstylerule.cpp", |
| 1451 | "xfa/fde/css/cfde_cssstylerule.h", |
| 1452 | "xfa/fde/css/cfde_cssstyleselector.cpp", |
| 1453 | "xfa/fde/css/cfde_cssstyleselector.h", |
| 1454 | "xfa/fde/css/cfde_cssstylesheet.cpp", |
| 1455 | "xfa/fde/css/cfde_cssstylesheet.h", |
| 1456 | "xfa/fde/css/cfde_csssyntaxparser.cpp", |
| 1457 | "xfa/fde/css/cfde_csssyntaxparser.h", |
Dan Sinclair | 95bec80 | 2017-01-19 10:27:58 -0500 | [diff] [blame] | 1458 | "xfa/fde/css/cfde_csstextbuf.cpp", |
| 1459 | "xfa/fde/css/cfde_csstextbuf.h", |
Dan Sinclair | 6efd0d7 | 2017-01-16 16:05:17 -0500 | [diff] [blame] | 1460 | "xfa/fde/css/cfde_cssvalue.cpp", |
| 1461 | "xfa/fde/css/cfde_cssvalue.h", |
Dan Sinclair | 19c209d | 2017-01-18 12:47:24 -0500 | [diff] [blame] | 1462 | "xfa/fde/css/cfde_cssvaluelist.cpp", |
| 1463 | "xfa/fde/css/cfde_cssvaluelist.h", |
| 1464 | "xfa/fde/css/cfde_cssvaluelistparser.cpp", |
| 1465 | "xfa/fde/css/cfde_cssvaluelistparser.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1466 | "xfa/fde/css/fde_css.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1467 | "xfa/fde/css/fde_cssdatatable.cpp", |
| 1468 | "xfa/fde/css/fde_cssdatatable.h", |
dsinclair | 6539518 | 2016-05-18 11:09:47 -0700 | [diff] [blame] | 1469 | "xfa/fde/ifde_txtedtdorecord.h", |
| 1470 | "xfa/fde/ifde_txtedtengine.h", |
| 1471 | "xfa/fde/ifde_txtedtpage.h", |
Dan Sinclair | b929ab0 | 2017-03-29 15:18:16 -0400 | [diff] [blame] | 1472 | "xfa/fgas/crt/cfgas_formatstring.cpp", |
| 1473 | "xfa/fgas/crt/cfgas_formatstring.h", |
npm | 8f3eb60 | 2016-11-11 17:16:23 -0800 | [diff] [blame] | 1474 | "xfa/fgas/font/cfgas_fontmgr.cpp", |
| 1475 | "xfa/fgas/font/cfgas_fontmgr.h", |
npm | 4b91a2d | 2016-11-21 15:19:44 -0800 | [diff] [blame] | 1476 | "xfa/fgas/font/cfgas_gefont.cpp", |
| 1477 | "xfa/fgas/font/cfgas_gefont.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1478 | "xfa/fgas/font/fgas_fontutils.cpp", |
| 1479 | "xfa/fgas/font/fgas_fontutils.h", |
Dan Sinclair | e533b93 | 2017-03-16 11:47:20 -0400 | [diff] [blame] | 1480 | "xfa/fgas/layout/cfx_break.cpp", |
| 1481 | "xfa/fgas/layout/cfx_break.h", |
Dan Sinclair | 893822a | 2017-03-13 15:32:07 -0400 | [diff] [blame] | 1482 | "xfa/fgas/layout/cfx_breakline.cpp", |
| 1483 | "xfa/fgas/layout/cfx_breakline.h", |
| 1484 | "xfa/fgas/layout/cfx_breakpiece.cpp", |
| 1485 | "xfa/fgas/layout/cfx_breakpiece.h", |
Dan Sinclair | 994acdc | 2017-04-18 13:56:39 -0400 | [diff] [blame] | 1486 | "xfa/fgas/layout/cfx_linebreak.cpp", |
| 1487 | "xfa/fgas/layout/cfx_linebreak.h", |
| 1488 | "xfa/fgas/layout/cfx_rtfbreak.cpp", |
| 1489 | "xfa/fgas/layout/cfx_rtfbreak.h", |
| 1490 | "xfa/fgas/layout/cfx_txtbreak.cpp", |
| 1491 | "xfa/fgas/layout/cfx_txtbreak.h", |
dsinclair | 447b1f3 | 2016-12-08 10:06:32 -0800 | [diff] [blame] | 1492 | "xfa/fwl/cfwl_app.cpp", |
| 1493 | "xfa/fwl/cfwl_app.h", |
| 1494 | "xfa/fwl/cfwl_barcode.cpp", |
| 1495 | "xfa/fwl/cfwl_barcode.h", |
| 1496 | "xfa/fwl/cfwl_caret.cpp", |
| 1497 | "xfa/fwl/cfwl_caret.h", |
| 1498 | "xfa/fwl/cfwl_checkbox.cpp", |
| 1499 | "xfa/fwl/cfwl_checkbox.h", |
| 1500 | "xfa/fwl/cfwl_combobox.cpp", |
| 1501 | "xfa/fwl/cfwl_combobox.h", |
| 1502 | "xfa/fwl/cfwl_comboboxproxy.cpp", |
| 1503 | "xfa/fwl/cfwl_comboboxproxy.h", |
| 1504 | "xfa/fwl/cfwl_comboedit.cpp", |
| 1505 | "xfa/fwl/cfwl_comboedit.h", |
| 1506 | "xfa/fwl/cfwl_combolist.cpp", |
| 1507 | "xfa/fwl/cfwl_combolist.h", |
| 1508 | "xfa/fwl/cfwl_datetimeedit.cpp", |
| 1509 | "xfa/fwl/cfwl_datetimeedit.h", |
| 1510 | "xfa/fwl/cfwl_datetimepicker.cpp", |
| 1511 | "xfa/fwl/cfwl_datetimepicker.h", |
| 1512 | "xfa/fwl/cfwl_edit.cpp", |
| 1513 | "xfa/fwl/cfwl_edit.h", |
| 1514 | "xfa/fwl/cfwl_event.cpp", |
| 1515 | "xfa/fwl/cfwl_event.h", |
| 1516 | "xfa/fwl/cfwl_eventcheckword.cpp", |
| 1517 | "xfa/fwl/cfwl_eventcheckword.h", |
| 1518 | "xfa/fwl/cfwl_eventmouse.cpp", |
| 1519 | "xfa/fwl/cfwl_eventmouse.h", |
| 1520 | "xfa/fwl/cfwl_eventscroll.cpp", |
| 1521 | "xfa/fwl/cfwl_eventscroll.h", |
| 1522 | "xfa/fwl/cfwl_eventselectchanged.cpp", |
| 1523 | "xfa/fwl/cfwl_eventselectchanged.h", |
| 1524 | "xfa/fwl/cfwl_eventtarget.cpp", |
| 1525 | "xfa/fwl/cfwl_eventtarget.h", |
| 1526 | "xfa/fwl/cfwl_eventtextchanged.cpp", |
| 1527 | "xfa/fwl/cfwl_eventtextchanged.h", |
| 1528 | "xfa/fwl/cfwl_eventvalidate.cpp", |
| 1529 | "xfa/fwl/cfwl_eventvalidate.h", |
| 1530 | "xfa/fwl/cfwl_form.cpp", |
| 1531 | "xfa/fwl/cfwl_form.h", |
| 1532 | "xfa/fwl/cfwl_formproxy.cpp", |
| 1533 | "xfa/fwl/cfwl_formproxy.h", |
| 1534 | "xfa/fwl/cfwl_listbox.cpp", |
| 1535 | "xfa/fwl/cfwl_listbox.h", |
| 1536 | "xfa/fwl/cfwl_listitem.cpp", |
| 1537 | "xfa/fwl/cfwl_listitem.h", |
| 1538 | "xfa/fwl/cfwl_message.cpp", |
| 1539 | "xfa/fwl/cfwl_message.h", |
| 1540 | "xfa/fwl/cfwl_messagekey.cpp", |
| 1541 | "xfa/fwl/cfwl_messagekey.h", |
| 1542 | "xfa/fwl/cfwl_messagekillfocus.cpp", |
| 1543 | "xfa/fwl/cfwl_messagekillfocus.h", |
| 1544 | "xfa/fwl/cfwl_messagemouse.cpp", |
| 1545 | "xfa/fwl/cfwl_messagemouse.h", |
| 1546 | "xfa/fwl/cfwl_messagemousewheel.cpp", |
| 1547 | "xfa/fwl/cfwl_messagemousewheel.h", |
| 1548 | "xfa/fwl/cfwl_messagesetfocus.cpp", |
| 1549 | "xfa/fwl/cfwl_messagesetfocus.h", |
| 1550 | "xfa/fwl/cfwl_monthcalendar.cpp", |
| 1551 | "xfa/fwl/cfwl_monthcalendar.h", |
| 1552 | "xfa/fwl/cfwl_notedriver.cpp", |
| 1553 | "xfa/fwl/cfwl_notedriver.h", |
| 1554 | "xfa/fwl/cfwl_noteloop.cpp", |
| 1555 | "xfa/fwl/cfwl_noteloop.h", |
| 1556 | "xfa/fwl/cfwl_picturebox.cpp", |
| 1557 | "xfa/fwl/cfwl_picturebox.h", |
| 1558 | "xfa/fwl/cfwl_pushbutton.cpp", |
| 1559 | "xfa/fwl/cfwl_pushbutton.h", |
| 1560 | "xfa/fwl/cfwl_scrollbar.cpp", |
| 1561 | "xfa/fwl/cfwl_scrollbar.h", |
| 1562 | "xfa/fwl/cfwl_spinbutton.cpp", |
| 1563 | "xfa/fwl/cfwl_spinbutton.h", |
dsinclair | 447b1f3 | 2016-12-08 10:06:32 -0800 | [diff] [blame] | 1564 | "xfa/fwl/cfwl_themebackground.h", |
| 1565 | "xfa/fwl/cfwl_themepart.cpp", |
| 1566 | "xfa/fwl/cfwl_themepart.h", |
| 1567 | "xfa/fwl/cfwl_themetext.h", |
| 1568 | "xfa/fwl/cfwl_timer.cpp", |
| 1569 | "xfa/fwl/cfwl_timer.h", |
| 1570 | "xfa/fwl/cfwl_timerinfo.cpp", |
| 1571 | "xfa/fwl/cfwl_timerinfo.h", |
| 1572 | "xfa/fwl/cfwl_widget.cpp", |
| 1573 | "xfa/fwl/cfwl_widget.h", |
| 1574 | "xfa/fwl/cfwl_widgetmgr.cpp", |
| 1575 | "xfa/fwl/cfwl_widgetmgr.h", |
| 1576 | "xfa/fwl/cfwl_widgetproperties.cpp", |
| 1577 | "xfa/fwl/cfwl_widgetproperties.h", |
| 1578 | "xfa/fwl/cfx_barcode.cpp", |
| 1579 | "xfa/fwl/cfx_barcode.h", |
dsinclair | 447b1f3 | 2016-12-08 10:06:32 -0800 | [diff] [blame] | 1580 | "xfa/fwl/fwl_widgetdef.h", |
| 1581 | "xfa/fwl/fwl_widgethit.h", |
| 1582 | "xfa/fwl/ifwl_adaptertimermgr.h", |
| 1583 | "xfa/fwl/ifwl_themeprovider.h", |
| 1584 | "xfa/fwl/ifwl_widgetdelegate.h", |
| 1585 | "xfa/fwl/ifwl_widgetmgrdelegate.h", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 1586 | "xfa/fwl/theme/cfwl_barcodetp.cpp", |
| 1587 | "xfa/fwl/theme/cfwl_barcodetp.h", |
| 1588 | "xfa/fwl/theme/cfwl_carettp.cpp", |
| 1589 | "xfa/fwl/theme/cfwl_carettp.h", |
| 1590 | "xfa/fwl/theme/cfwl_checkboxtp.cpp", |
| 1591 | "xfa/fwl/theme/cfwl_checkboxtp.h", |
| 1592 | "xfa/fwl/theme/cfwl_comboboxtp.cpp", |
| 1593 | "xfa/fwl/theme/cfwl_comboboxtp.h", |
weili | beecc34 | 2016-08-04 11:57:22 -0700 | [diff] [blame] | 1594 | "xfa/fwl/theme/cfwl_datetimepickertp.cpp", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 1595 | "xfa/fwl/theme/cfwl_datetimepickertp.h", |
| 1596 | "xfa/fwl/theme/cfwl_edittp.cpp", |
| 1597 | "xfa/fwl/theme/cfwl_edittp.h", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 1598 | "xfa/fwl/theme/cfwl_listboxtp.cpp", |
| 1599 | "xfa/fwl/theme/cfwl_listboxtp.h", |
| 1600 | "xfa/fwl/theme/cfwl_monthcalendartp.cpp", |
| 1601 | "xfa/fwl/theme/cfwl_monthcalendartp.h", |
| 1602 | "xfa/fwl/theme/cfwl_pictureboxtp.cpp", |
| 1603 | "xfa/fwl/theme/cfwl_pictureboxtp.h", |
| 1604 | "xfa/fwl/theme/cfwl_pushbuttontp.cpp", |
| 1605 | "xfa/fwl/theme/cfwl_pushbuttontp.h", |
| 1606 | "xfa/fwl/theme/cfwl_scrollbartp.cpp", |
| 1607 | "xfa/fwl/theme/cfwl_scrollbartp.h", |
| 1608 | "xfa/fwl/theme/cfwl_utils.h", |
| 1609 | "xfa/fwl/theme/cfwl_widgettp.cpp", |
| 1610 | "xfa/fwl/theme/cfwl_widgettp.h", |
Dan Sinclair | 1f5d498 | 2017-01-10 16:37:32 -0500 | [diff] [blame] | 1611 | "xfa/fxfa/app/cxfa_csstagprovider.cpp", |
| 1612 | "xfa/fxfa/app/cxfa_csstagprovider.h", |
Dan Sinclair | 2eddb66 | 2017-05-25 16:49:51 -0400 | [diff] [blame] | 1613 | "xfa/fxfa/app/cxfa_ffarc.cpp", |
| 1614 | "xfa/fxfa/app/cxfa_ffarc.h", |
| 1615 | "xfa/fxfa/app/cxfa_ffbarcode.cpp", |
| 1616 | "xfa/fxfa/app/cxfa_ffbarcode.h", |
| 1617 | "xfa/fxfa/app/cxfa_ffcheckbutton.cpp", |
| 1618 | "xfa/fxfa/app/cxfa_ffcheckbutton.h", |
| 1619 | "xfa/fxfa/app/cxfa_ffcombobox.cpp", |
| 1620 | "xfa/fxfa/app/cxfa_ffcombobox.h", |
| 1621 | "xfa/fxfa/app/cxfa_ffdatetimeedit.cpp", |
| 1622 | "xfa/fxfa/app/cxfa_ffdatetimeedit.h", |
| 1623 | "xfa/fxfa/app/cxfa_ffdraw.cpp", |
| 1624 | "xfa/fxfa/app/cxfa_ffdraw.h", |
| 1625 | "xfa/fxfa/app/cxfa_ffexclgroup.cpp", |
| 1626 | "xfa/fxfa/app/cxfa_ffexclgroup.h", |
| 1627 | "xfa/fxfa/app/cxfa_fffield.cpp", |
| 1628 | "xfa/fxfa/app/cxfa_fffield.h", |
| 1629 | "xfa/fxfa/app/cxfa_ffimage.cpp", |
| 1630 | "xfa/fxfa/app/cxfa_ffimage.h", |
| 1631 | "xfa/fxfa/app/cxfa_ffimageedit.cpp", |
| 1632 | "xfa/fxfa/app/cxfa_ffimageedit.h", |
| 1633 | "xfa/fxfa/app/cxfa_ffline.cpp", |
| 1634 | "xfa/fxfa/app/cxfa_ffline.h", |
| 1635 | "xfa/fxfa/app/cxfa_fflistbox.cpp", |
| 1636 | "xfa/fxfa/app/cxfa_fflistbox.h", |
| 1637 | "xfa/fxfa/app/cxfa_ffnotify.cpp", |
| 1638 | "xfa/fxfa/app/cxfa_ffnotify.h", |
| 1639 | "xfa/fxfa/app/cxfa_ffnumericedit.cpp", |
| 1640 | "xfa/fxfa/app/cxfa_ffnumericedit.h", |
| 1641 | "xfa/fxfa/app/cxfa_ffpasswordedit.cpp", |
| 1642 | "xfa/fxfa/app/cxfa_ffpasswordedit.h", |
| 1643 | "xfa/fxfa/app/cxfa_ffpushbutton.cpp", |
| 1644 | "xfa/fxfa/app/cxfa_ffpushbutton.h", |
| 1645 | "xfa/fxfa/app/cxfa_ffrectangle.cpp", |
| 1646 | "xfa/fxfa/app/cxfa_ffrectangle.h", |
| 1647 | "xfa/fxfa/app/cxfa_ffsignature.cpp", |
| 1648 | "xfa/fxfa/app/cxfa_ffsignature.h", |
| 1649 | "xfa/fxfa/app/cxfa_ffsubform.cpp", |
| 1650 | "xfa/fxfa/app/cxfa_ffsubform.h", |
| 1651 | "xfa/fxfa/app/cxfa_fftext.cpp", |
| 1652 | "xfa/fxfa/app/cxfa_fftext.h", |
| 1653 | "xfa/fxfa/app/cxfa_fftextedit.cpp", |
| 1654 | "xfa/fxfa/app/cxfa_fftextedit.h", |
| 1655 | "xfa/fxfa/app/cxfa_fwladapterwidgetmgr.cpp", |
| 1656 | "xfa/fxfa/app/cxfa_fwladapterwidgetmgr.h", |
| 1657 | "xfa/fxfa/app/cxfa_fwltheme.cpp", |
| 1658 | "xfa/fxfa/app/cxfa_fwltheme.h", |
Dan Sinclair | 1f5d498 | 2017-01-10 16:37:32 -0500 | [diff] [blame] | 1659 | "xfa/fxfa/app/cxfa_linkuserdata.cpp", |
| 1660 | "xfa/fxfa/app/cxfa_linkuserdata.h", |
| 1661 | "xfa/fxfa/app/cxfa_loadercontext.cpp", |
| 1662 | "xfa/fxfa/app/cxfa_loadercontext.h", |
| 1663 | "xfa/fxfa/app/cxfa_pieceline.cpp", |
| 1664 | "xfa/fxfa/app/cxfa_pieceline.h", |
| 1665 | "xfa/fxfa/app/cxfa_textlayout.cpp", |
| 1666 | "xfa/fxfa/app/cxfa_textlayout.h", |
| 1667 | "xfa/fxfa/app/cxfa_textparsecontext.cpp", |
| 1668 | "xfa/fxfa/app/cxfa_textparsecontext.h", |
| 1669 | "xfa/fxfa/app/cxfa_textparser.cpp", |
| 1670 | "xfa/fxfa/app/cxfa_textparser.h", |
Dan Sinclair | 2eddb66 | 2017-05-25 16:49:51 -0400 | [diff] [blame] | 1671 | "xfa/fxfa/app/cxfa_textpiece.cpp", |
| 1672 | "xfa/fxfa/app/cxfa_textpiece.h", |
| 1673 | "xfa/fxfa/app/cxfa_textprovider.cpp", |
| 1674 | "xfa/fxfa/app/cxfa_textprovider.h", |
Dan Sinclair | 1f5d498 | 2017-01-10 16:37:32 -0500 | [diff] [blame] | 1675 | "xfa/fxfa/app/cxfa_texttabstopscontext.cpp", |
| 1676 | "xfa/fxfa/app/cxfa_texttabstopscontext.h", |
| 1677 | "xfa/fxfa/app/cxfa_textuserdata.cpp", |
| 1678 | "xfa/fxfa/app/cxfa_textuserdata.h", |
Dan Sinclair | 80c4878 | 2017-03-23 12:11:20 -0400 | [diff] [blame] | 1679 | "xfa/fxfa/cxfa_deffontmgr.cpp", |
| 1680 | "xfa/fxfa/cxfa_deffontmgr.h", |
| 1681 | "xfa/fxfa/cxfa_eventparam.cpp", |
dsinclair | 5b49309 | 2016-09-29 20:20:24 -0700 | [diff] [blame] | 1682 | "xfa/fxfa/cxfa_eventparam.h", |
Dan Sinclair | 80c4878 | 2017-03-23 12:11:20 -0400 | [diff] [blame] | 1683 | "xfa/fxfa/cxfa_ffapp.cpp", |
| 1684 | "xfa/fxfa/cxfa_ffapp.h", |
| 1685 | "xfa/fxfa/cxfa_ffdoc.cpp", |
| 1686 | "xfa/fxfa/cxfa_ffdoc.h", |
| 1687 | "xfa/fxfa/cxfa_ffdochandler.cpp", |
| 1688 | "xfa/fxfa/cxfa_ffdochandler.h", |
| 1689 | "xfa/fxfa/cxfa_ffdocview.cpp", |
| 1690 | "xfa/fxfa/cxfa_ffdocview.h", |
| 1691 | "xfa/fxfa/cxfa_ffpageview.cpp", |
| 1692 | "xfa/fxfa/cxfa_ffpageview.h", |
| 1693 | "xfa/fxfa/cxfa_ffwidget.cpp", |
| 1694 | "xfa/fxfa/cxfa_ffwidget.h", |
| 1695 | "xfa/fxfa/cxfa_ffwidgethandler.cpp", |
| 1696 | "xfa/fxfa/cxfa_ffwidgethandler.h", |
Dan Sinclair | 9d6a208 | 2017-04-12 11:32:32 -0400 | [diff] [blame] | 1697 | "xfa/fxfa/cxfa_fileread.cpp", |
| 1698 | "xfa/fxfa/cxfa_fileread.h", |
Dan Sinclair | 80c4878 | 2017-03-23 12:11:20 -0400 | [diff] [blame] | 1699 | "xfa/fxfa/cxfa_fontmgr.cpp", |
| 1700 | "xfa/fxfa/cxfa_fontmgr.h", |
| 1701 | "xfa/fxfa/cxfa_pdffontmgr.cpp", |
| 1702 | "xfa/fxfa/cxfa_pdffontmgr.h", |
| 1703 | "xfa/fxfa/cxfa_rendercontext.cpp", |
| 1704 | "xfa/fxfa/cxfa_rendercontext.h", |
Dan Sinclair | 80c4878 | 2017-03-23 12:11:20 -0400 | [diff] [blame] | 1705 | "xfa/fxfa/cxfa_widgetacc.cpp", |
| 1706 | "xfa/fxfa/cxfa_widgetacc.h", |
| 1707 | "xfa/fxfa/cxfa_widgetacciterator.cpp", |
| 1708 | "xfa/fxfa/cxfa_widgetacciterator.h", |
Dan Sinclair | 2e9d47a | 2017-05-16 15:14:02 -0400 | [diff] [blame] | 1709 | "xfa/fxfa/fm2js/cxfa_fm2jscontext.cpp", |
| 1710 | "xfa/fxfa/fm2js/cxfa_fm2jscontext.h", |
Dan Sinclair | 2e9d47a | 2017-05-16 15:14:02 -0400 | [diff] [blame] | 1711 | "xfa/fxfa/fm2js/cxfa_fmexpression.cpp", |
| 1712 | "xfa/fxfa/fm2js/cxfa_fmexpression.h", |
| 1713 | "xfa/fxfa/fm2js/cxfa_fmlexer.cpp", |
| 1714 | "xfa/fxfa/fm2js/cxfa_fmlexer.h", |
| 1715 | "xfa/fxfa/fm2js/cxfa_fmparse.cpp", |
| 1716 | "xfa/fxfa/fm2js/cxfa_fmparse.h", |
Dan Sinclair | 2e9d47a | 2017-05-16 15:14:02 -0400 | [diff] [blame] | 1717 | "xfa/fxfa/fm2js/cxfa_fmsimpleexpression.cpp", |
| 1718 | "xfa/fxfa/fm2js/cxfa_fmsimpleexpression.h", |
dsinclair | 5b49309 | 2016-09-29 20:20:24 -0700 | [diff] [blame] | 1719 | "xfa/fxfa/fxfa.h", |
| 1720 | "xfa/fxfa/fxfa_basic.h", |
dsinclair | c1515ef | 2016-07-20 06:16:06 -0700 | [diff] [blame] | 1721 | "xfa/fxfa/parser/cscript_datawindow.cpp", |
| 1722 | "xfa/fxfa/parser/cscript_datawindow.h", |
| 1723 | "xfa/fxfa/parser/cscript_eventpseudomodel.cpp", |
| 1724 | "xfa/fxfa/parser/cscript_eventpseudomodel.h", |
| 1725 | "xfa/fxfa/parser/cscript_hostpseudomodel.cpp", |
| 1726 | "xfa/fxfa/parser/cscript_hostpseudomodel.h", |
| 1727 | "xfa/fxfa/parser/cscript_layoutpseudomodel.cpp", |
| 1728 | "xfa/fxfa/parser/cscript_layoutpseudomodel.h", |
| 1729 | "xfa/fxfa/parser/cscript_logpseudomodel.cpp", |
| 1730 | "xfa/fxfa/parser/cscript_logpseudomodel.h", |
| 1731 | "xfa/fxfa/parser/cscript_signaturepseudomodel.cpp", |
| 1732 | "xfa/fxfa/parser/cscript_signaturepseudomodel.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1733 | "xfa/fxfa/parser/cxfa_arc.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1734 | "xfa/fxfa/parser/cxfa_arraynodelist.cpp", |
Dan Sinclair | efcae5d | 2017-03-29 14:47:46 -0400 | [diff] [blame] | 1735 | "xfa/fxfa/parser/cxfa_arraynodelist.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1736 | "xfa/fxfa/parser/cxfa_assist.cpp", |
| 1737 | "xfa/fxfa/parser/cxfa_assist.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1738 | "xfa/fxfa/parser/cxfa_attachnodelist.cpp", |
Dan Sinclair | efcae5d | 2017-03-29 14:47:46 -0400 | [diff] [blame] | 1739 | "xfa/fxfa/parser/cxfa_attachnodelist.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1740 | "xfa/fxfa/parser/cxfa_bind.cpp", |
| 1741 | "xfa/fxfa/parser/cxfa_bind.h", |
| 1742 | "xfa/fxfa/parser/cxfa_binditems.cpp", |
| 1743 | "xfa/fxfa/parser/cxfa_binditems.h", |
| 1744 | "xfa/fxfa/parser/cxfa_border.h", |
| 1745 | "xfa/fxfa/parser/cxfa_box.cpp", |
| 1746 | "xfa/fxfa/parser/cxfa_box.h", |
| 1747 | "xfa/fxfa/parser/cxfa_calculate.cpp", |
| 1748 | "xfa/fxfa/parser/cxfa_calculate.h", |
| 1749 | "xfa/fxfa/parser/cxfa_caption.cpp", |
| 1750 | "xfa/fxfa/parser/cxfa_caption.h", |
dsinclair | 0b851ff | 2016-07-21 12:03:01 -0700 | [diff] [blame] | 1751 | "xfa/fxfa/parser/cxfa_containerlayoutitem.cpp", |
| 1752 | "xfa/fxfa/parser/cxfa_containerlayoutitem.h", |
| 1753 | "xfa/fxfa/parser/cxfa_contentlayoutitem.cpp", |
| 1754 | "xfa/fxfa/parser/cxfa_contentlayoutitem.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1755 | "xfa/fxfa/parser/cxfa_corner.h", |
| 1756 | "xfa/fxfa/parser/cxfa_data.cpp", |
| 1757 | "xfa/fxfa/parser/cxfa_data.h", |
dsinclair | 3a7cc73 | 2016-07-21 12:04:34 -0700 | [diff] [blame] | 1758 | "xfa/fxfa/parser/cxfa_dataexporter.cpp", |
| 1759 | "xfa/fxfa/parser/cxfa_dataexporter.h", |
| 1760 | "xfa/fxfa/parser/cxfa_dataimporter.cpp", |
| 1761 | "xfa/fxfa/parser/cxfa_dataimporter.h", |
dsinclair | 1628024 | 2016-07-21 12:03:47 -0700 | [diff] [blame] | 1762 | "xfa/fxfa/parser/cxfa_document.cpp", |
| 1763 | "xfa/fxfa/parser/cxfa_document.h", |
dsinclair | 34f86b0 | 2016-07-11 08:42:33 -0700 | [diff] [blame] | 1764 | "xfa/fxfa/parser/cxfa_document_parser.cpp", |
| 1765 | "xfa/fxfa/parser/cxfa_document_parser.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1766 | "xfa/fxfa/parser/cxfa_edge.h", |
| 1767 | "xfa/fxfa/parser/cxfa_event.cpp", |
| 1768 | "xfa/fxfa/parser/cxfa_event.h", |
| 1769 | "xfa/fxfa/parser/cxfa_exdata.cpp", |
| 1770 | "xfa/fxfa/parser/cxfa_exdata.h", |
| 1771 | "xfa/fxfa/parser/cxfa_fill.cpp", |
| 1772 | "xfa/fxfa/parser/cxfa_fill.h", |
| 1773 | "xfa/fxfa/parser/cxfa_font.cpp", |
| 1774 | "xfa/fxfa/parser/cxfa_font.h", |
| 1775 | "xfa/fxfa/parser/cxfa_image.cpp", |
| 1776 | "xfa/fxfa/parser/cxfa_image.h", |
Dan Sinclair | ec1843d | 2017-03-28 16:04:41 -0400 | [diff] [blame] | 1777 | "xfa/fxfa/parser/cxfa_itemlayoutprocessor.cpp", |
| 1778 | "xfa/fxfa/parser/cxfa_itemlayoutprocessor.h", |
| 1779 | "xfa/fxfa/parser/cxfa_layoutcontext.h", |
dsinclair | 0b851ff | 2016-07-21 12:03:01 -0700 | [diff] [blame] | 1780 | "xfa/fxfa/parser/cxfa_layoutitem.cpp", |
| 1781 | "xfa/fxfa/parser/cxfa_layoutitem.h", |
dsinclair | 8d0cc67 | 2016-08-03 12:58:53 -0700 | [diff] [blame] | 1782 | "xfa/fxfa/parser/cxfa_layoutpagemgr.cpp", |
| 1783 | "xfa/fxfa/parser/cxfa_layoutpagemgr.h", |
dsinclair | 0b851ff | 2016-07-21 12:03:01 -0700 | [diff] [blame] | 1784 | "xfa/fxfa/parser/cxfa_layoutprocessor.cpp", |
| 1785 | "xfa/fxfa/parser/cxfa_layoutprocessor.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1786 | "xfa/fxfa/parser/cxfa_line.cpp", |
| 1787 | "xfa/fxfa/parser/cxfa_line.h", |
Dan Sinclair | ec1843d | 2017-03-28 16:04:41 -0400 | [diff] [blame] | 1788 | "xfa/fxfa/parser/cxfa_localemgr.cpp", |
| 1789 | "xfa/fxfa/parser/cxfa_localemgr.h", |
| 1790 | "xfa/fxfa/parser/cxfa_localevalue.cpp", |
| 1791 | "xfa/fxfa/parser/cxfa_localevalue.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1792 | "xfa/fxfa/parser/cxfa_margin.cpp", |
| 1793 | "xfa/fxfa/parser/cxfa_margin.h", |
dsinclair | 9eb0db1 | 2016-07-21 12:01:39 -0700 | [diff] [blame] | 1794 | "xfa/fxfa/parser/cxfa_measurement.cpp", |
| 1795 | "xfa/fxfa/parser/cxfa_measurement.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1796 | "xfa/fxfa/parser/cxfa_node.cpp", |
Dan Sinclair | efcae5d | 2017-03-29 14:47:46 -0400 | [diff] [blame] | 1797 | "xfa/fxfa/parser/cxfa_node.h", |
dsinclair | 31f8740 | 2016-07-20 06:34:45 -0700 | [diff] [blame] | 1798 | "xfa/fxfa/parser/cxfa_nodehelper.cpp", |
| 1799 | "xfa/fxfa/parser/cxfa_nodehelper.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1800 | "xfa/fxfa/parser/cxfa_nodelist.cpp", |
Dan Sinclair | efcae5d | 2017-03-29 14:47:46 -0400 | [diff] [blame] | 1801 | "xfa/fxfa/parser/cxfa_nodelist.h", |
Dan Sinclair | ec1843d | 2017-03-28 16:04:41 -0400 | [diff] [blame] | 1802 | "xfa/fxfa/parser/cxfa_nodelocale.cpp", |
| 1803 | "xfa/fxfa/parser/cxfa_nodelocale.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1804 | "xfa/fxfa/parser/cxfa_object.cpp", |
Dan Sinclair | efcae5d | 2017-03-29 14:47:46 -0400 | [diff] [blame] | 1805 | "xfa/fxfa/parser/cxfa_object.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1806 | "xfa/fxfa/parser/cxfa_occur.cpp", |
| 1807 | "xfa/fxfa/parser/cxfa_occur.h", |
| 1808 | "xfa/fxfa/parser/cxfa_para.cpp", |
| 1809 | "xfa/fxfa/parser/cxfa_para.h", |
| 1810 | "xfa/fxfa/parser/cxfa_rectangle.h", |
dsinclair | 31f8740 | 2016-07-20 06:34:45 -0700 | [diff] [blame] | 1811 | "xfa/fxfa/parser/cxfa_resolveprocessor.cpp", |
| 1812 | "xfa/fxfa/parser/cxfa_resolveprocessor.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1813 | "xfa/fxfa/parser/cxfa_script.cpp", |
| 1814 | "xfa/fxfa/parser/cxfa_script.h", |
dsinclair | 31f8740 | 2016-07-20 06:34:45 -0700 | [diff] [blame] | 1815 | "xfa/fxfa/parser/cxfa_scriptcontext.cpp", |
| 1816 | "xfa/fxfa/parser/cxfa_scriptcontext.h", |
dsinclair | 34f86b0 | 2016-07-11 08:42:33 -0700 | [diff] [blame] | 1817 | "xfa/fxfa/parser/cxfa_simple_parser.cpp", |
| 1818 | "xfa/fxfa/parser/cxfa_simple_parser.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1819 | "xfa/fxfa/parser/cxfa_stroke.cpp", |
| 1820 | "xfa/fxfa/parser/cxfa_stroke.h", |
| 1821 | "xfa/fxfa/parser/cxfa_submit.cpp", |
| 1822 | "xfa/fxfa/parser/cxfa_submit.h", |
| 1823 | "xfa/fxfa/parser/cxfa_text.cpp", |
| 1824 | "xfa/fxfa/parser/cxfa_text.h", |
dsinclair | 5b36f0a | 2016-07-19 10:56:23 -0700 | [diff] [blame] | 1825 | "xfa/fxfa/parser/cxfa_thisproxy.cpp", |
Dan Sinclair | efcae5d | 2017-03-29 14:47:46 -0400 | [diff] [blame] | 1826 | "xfa/fxfa/parser/cxfa_thisproxy.h", |
Dan Sinclair | ec1843d | 2017-03-28 16:04:41 -0400 | [diff] [blame] | 1827 | "xfa/fxfa/parser/cxfa_timezoneprovider.cpp", |
| 1828 | "xfa/fxfa/parser/cxfa_timezoneprovider.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1829 | "xfa/fxfa/parser/cxfa_tooltip.cpp", |
| 1830 | "xfa/fxfa/parser/cxfa_tooltip.h", |
dsinclair | 6ea5ba0 | 2016-08-03 10:20:32 -0700 | [diff] [blame] | 1831 | "xfa/fxfa/parser/cxfa_traversestrategy_contentareacontainerlayoutitem.h", |
| 1832 | "xfa/fxfa/parser/cxfa_traversestrategy_contentlayoutitem.h", |
dsinclair | 0b851ff | 2016-07-21 12:03:01 -0700 | [diff] [blame] | 1833 | "xfa/fxfa/parser/cxfa_traversestrategy_layoutitem.h", |
Dan Sinclair | efcae5d | 2017-03-29 14:47:46 -0400 | [diff] [blame] | 1834 | "xfa/fxfa/parser/cxfa_traversestrategy_xfacontainernode.h", |
| 1835 | "xfa/fxfa/parser/cxfa_traversestrategy_xfanode.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1836 | "xfa/fxfa/parser/cxfa_validate.cpp", |
| 1837 | "xfa/fxfa/parser/cxfa_validate.h", |
| 1838 | "xfa/fxfa/parser/cxfa_value.cpp", |
| 1839 | "xfa/fxfa/parser/cxfa_value.h", |
dsinclair | 8f3074b | 2016-06-02 17:45:25 -0700 | [diff] [blame] | 1840 | "xfa/fxfa/parser/cxfa_valuearray.cpp", |
| 1841 | "xfa/fxfa/parser/cxfa_valuearray.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 1842 | "xfa/fxfa/parser/cxfa_widgetdata.cpp", |
| 1843 | "xfa/fxfa/parser/cxfa_widgetdata.h", |
Dan Sinclair | ec1843d | 2017-03-28 16:04:41 -0400 | [diff] [blame] | 1844 | "xfa/fxfa/parser/cxfa_xmllocale.cpp", |
| 1845 | "xfa/fxfa/parser/cxfa_xmllocale.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1846 | "xfa/fxfa/parser/xfa_basic_data.cpp", |
dsinclair | f1494f0 | 2016-07-07 12:56:17 -0700 | [diff] [blame] | 1847 | "xfa/fxfa/parser/xfa_basic_data.h", |
dsinclair | 8bdbc88 | 2016-07-07 07:55:39 -0700 | [diff] [blame] | 1848 | "xfa/fxfa/parser/xfa_basic_data_attributes.cpp", |
| 1849 | "xfa/fxfa/parser/xfa_basic_data_element_attributes.cpp", |
| 1850 | "xfa/fxfa/parser/xfa_basic_data_element_properties.cpp", |
| 1851 | "xfa/fxfa/parser/xfa_basic_data_element_script.cpp", |
| 1852 | "xfa/fxfa/parser/xfa_basic_data_enum.cpp", |
| 1853 | "xfa/fxfa/parser/xfa_basic_data_packets.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1854 | "xfa/fxfa/parser/xfa_document_datamerger_imp.cpp", |
| 1855 | "xfa/fxfa/parser/xfa_document_datamerger_imp.h", |
dsinclair | 31f8740 | 2016-07-20 06:34:45 -0700 | [diff] [blame] | 1856 | "xfa/fxfa/parser/xfa_resolvenode_rs.h", |
dsinclair | 39fdfc3 | 2016-07-21 12:09:45 -0700 | [diff] [blame] | 1857 | "xfa/fxfa/parser/xfa_utils.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 1858 | "xfa/fxfa/parser/xfa_utils.h", |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 1859 | "xfa/fxgraphics/cfx_color.cpp", |
| 1860 | "xfa/fxgraphics/cfx_color.h", |
| 1861 | "xfa/fxgraphics/cfx_graphics.cpp", |
dsinclair | 202ad72 | 2016-09-29 17:41:42 -0700 | [diff] [blame] | 1862 | "xfa/fxgraphics/cfx_graphics.h", |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 1863 | "xfa/fxgraphics/cfx_path.cpp", |
| 1864 | "xfa/fxgraphics/cfx_path.h", |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 1865 | "xfa/fxgraphics/cfx_pattern.cpp", |
| 1866 | "xfa/fxgraphics/cfx_pattern.h", |
| 1867 | "xfa/fxgraphics/cfx_shading.cpp", |
| 1868 | "xfa/fxgraphics/cfx_shading.h", |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1869 | ] |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 1870 | include_dirs = [ "." ] |
dsinclair | 8bd9ce0 | 2016-06-09 13:24:34 -0700 | [diff] [blame] | 1871 | deps = [ |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 1872 | ":fxbarcode", |
thestig | 73c4856 | 2016-09-06 14:07:17 -0700 | [diff] [blame] | 1873 | ":fxcrt", |
dsinclair | 7f9c860 | 2016-07-12 10:41:43 -0700 | [diff] [blame] | 1874 | ":fxjs", |
dsinclair | 8bd9ce0 | 2016-06-09 13:24:34 -0700 | [diff] [blame] | 1875 | ] |
Tom Sepez | b36747d | 2015-12-08 15:49:25 -0800 | [diff] [blame] | 1876 | configs += [ |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1877 | ":pdfium_core_config", |
weili | dcc29b1 | 2016-05-27 17:58:23 -0700 | [diff] [blame] | 1878 | ":xfa_warnings", |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 1879 | ] |
| 1880 | } |
Tom Sepez | c706fc0 | 2014-11-14 13:39:20 -0800 | [diff] [blame] | 1881 | } |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1882 | |
| 1883 | test("pdfium_unittests") { |
| 1884 | sources = [ |
tsepez | f5cabbf | 2016-11-21 12:08:22 -0800 | [diff] [blame] | 1885 | "core/fdrm/crypto/fx_crypt_unittest.cpp", |
Nicolas Pena | 4bd0d99 | 2017-02-02 14:32:21 -0500 | [diff] [blame] | 1886 | "core/fpdfapi/edit/cpdf_pagecontentgenerator_unittest.cpp", |
Nicolas Pena | 169b301 | 2017-05-26 14:38:03 -0400 | [diff] [blame] | 1887 | "core/fpdfapi/font/cpdf_cmapparser_unittest.cpp", |
| 1888 | "core/fpdfapi/font/cpdf_tounicodemap_unittest.cpp", |
Nicolas Pena | 6791295 | 2017-03-10 15:15:33 -0500 | [diff] [blame] | 1889 | "core/fpdfapi/page/cpdf_devicecs_unittest.cpp", |
npm | 014b012 | 2016-11-07 08:42:11 -0800 | [diff] [blame] | 1890 | "core/fpdfapi/page/cpdf_streamcontentparser_unittest.cpp", |
| 1891 | "core/fpdfapi/page/cpdf_streamparser_unittest.cpp", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 1892 | "core/fpdfapi/parser/cpdf_array_unittest.cpp", |
npm | 3cad596 | 2016-10-21 16:02:15 -0700 | [diff] [blame] | 1893 | "core/fpdfapi/parser/cpdf_document_unittest.cpp", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 1894 | "core/fpdfapi/parser/cpdf_object_unittest.cpp", |
| 1895 | "core/fpdfapi/parser/cpdf_parser_unittest.cpp", |
| 1896 | "core/fpdfapi/parser/cpdf_simple_parser_unittest.cpp", |
| 1897 | "core/fpdfapi/parser/cpdf_syntax_parser_unittest.cpp", |
| 1898 | "core/fpdfapi/parser/fpdf_parser_decode_unittest.cpp", |
dsinclair | c59fa88 | 2016-11-08 06:55:40 -0800 | [diff] [blame] | 1899 | "core/fpdfdoc/cpdf_dest_unittest.cpp", |
dsinclair | 448c433 | 2016-08-02 12:07:35 -0700 | [diff] [blame] | 1900 | "core/fpdfdoc/cpdf_filespec_unittest.cpp", |
thestig | 695aac5 | 2016-08-25 09:13:52 -0700 | [diff] [blame] | 1901 | "core/fpdfdoc/cpdf_formfield_unittest.cpp", |
Dan Sinclair | 3a4c408 | 2017-05-25 14:21:20 -0400 | [diff] [blame] | 1902 | "core/fpdftext/cpdf_linkextract_unittest.cpp", |
rbpotter | db76470 | 2017-01-12 10:31:43 -0800 | [diff] [blame] | 1903 | "core/fxcodec/codec/fx_codec_a85_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1904 | "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", |
rbpotter | db76470 | 2017-01-12 10:31:43 -0800 | [diff] [blame] | 1905 | "core/fxcodec/codec/fx_codec_rle_unittest.cpp", |
Dan Sinclair | 0eb7476 | 2017-03-28 10:19:22 -0400 | [diff] [blame] | 1906 | "core/fxcodec/jbig2/JBig2_BitStream_unittest.cpp", |
tsepez | e21501d | 2016-08-02 13:36:16 -0700 | [diff] [blame] | 1907 | "core/fxcodec/jbig2/JBig2_Image_unittest.cpp", |
Tom Sepez | fcdb2df | 2017-03-31 10:32:07 -0700 | [diff] [blame] | 1908 | "core/fxcrt/cfx_bytestring_unittest.cpp", |
tsepez | 81b2246 | 2016-11-23 14:20:19 -0800 | [diff] [blame] | 1909 | "core/fxcrt/cfx_maybe_owned_unittest.cpp", |
tsepez | 1c62054 | 2016-09-12 09:47:52 -0700 | [diff] [blame] | 1910 | "core/fxcrt/cfx_observable_unittest.cpp", |
tsepez | 602aebc | 2016-03-29 15:04:21 -0700 | [diff] [blame] | 1911 | "core/fxcrt/cfx_retain_ptr_unittest.cpp", |
tsepez | 2239cee | 2016-10-17 11:20:01 -0700 | [diff] [blame] | 1912 | "core/fxcrt/cfx_shared_copy_on_write_unittest.cpp", |
tsepez | d987143 | 2016-09-15 14:01:31 -0700 | [diff] [blame] | 1913 | "core/fxcrt/cfx_string_pool_template_unittest.cpp", |
Tom Sepez | cc20513 | 2017-05-16 14:01:47 -0700 | [diff] [blame] | 1914 | "core/fxcrt/cfx_unowned_ptr_unittest.cpp", |
tsepez | 4ba37c6 | 2016-09-28 14:49:01 -0700 | [diff] [blame] | 1915 | "core/fxcrt/cfx_weak_ptr_unittest.cpp", |
Tom Sepez | fcdb2df | 2017-03-31 10:32:07 -0700 | [diff] [blame] | 1916 | "core/fxcrt/cfx_widestring_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1917 | "core/fxcrt/fx_basic_gcc_unittest.cpp", |
thestig | 1b99b2d | 2016-05-20 11:50:06 -0700 | [diff] [blame] | 1918 | "core/fxcrt/fx_basic_util_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1919 | "core/fxcrt/fx_bidi_unittest.cpp", |
Dan Sinclair | 233360e | 2017-04-25 15:08:04 -0400 | [diff] [blame] | 1920 | "core/fxcrt/fx_coordinates_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1921 | "core/fxcrt/fx_extension_unittest.cpp", |
Tom Sepez | a9deea9 | 2017-04-25 10:37:47 -0700 | [diff] [blame] | 1922 | "core/fxcrt/fx_memory_unittest.cpp", |
Dan Sinclair | 764ec51 | 2016-03-14 13:35:12 -0400 | [diff] [blame] | 1923 | "core/fxcrt/fx_system_unittest.cpp", |
Nicolas Pena | 236ce3b | 2017-04-04 17:47:50 -0400 | [diff] [blame] | 1924 | "core/fxge/dib/cstretchengine_unittest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1925 | "fpdfsdk/fpdfdoc_unittest.cpp", |
thestig | dc359b0 | 2016-08-09 15:46:20 -0700 | [diff] [blame] | 1926 | "fpdfsdk/fpdfeditimg_unittest.cpp", |
tsepez | 0275910 | 2016-12-01 08:29:25 -0800 | [diff] [blame] | 1927 | "fpdfsdk/fpdfview_unittest.cpp", |
Tom Sepez | 64ee2c3 | 2017-04-24 15:04:25 -0700 | [diff] [blame] | 1928 | "testing/unit_test_main.cpp", |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1929 | ] |
| 1930 | deps = [ |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 1931 | ":pdfium", |
| 1932 | ":test_support", |
Tom Sepez | 16b9d77 | 2017-04-17 09:07:48 -0700 | [diff] [blame] | 1933 | "//testing/gmock", |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 1934 | "//testing/gtest", |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1935 | ] |
Dan Sinclair | 30410ce | 2016-03-16 10:20:24 -0400 | [diff] [blame] | 1936 | include_dirs = [] |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 1937 | if (pdf_enable_xfa) { |
| 1938 | sources += [ |
Tom Sepez | 16b9d77 | 2017-04-17 09:07:48 -0700 | [diff] [blame] | 1939 | "core/fxcrt/xml/cfx_saxreader_unittest.cpp", |
Dan Sinclair | 0d86ecb | 2017-04-19 09:19:57 -0400 | [diff] [blame] | 1940 | "core/fxcrt/xml/cfx_xmlsyntaxparser_unittest.cpp", |
Lei Zhang | 3684a15 | 2017-04-24 16:22:54 -0700 | [diff] [blame] | 1941 | "fxbarcode/oned/BC_OnedCode128Writer_unittest.cpp", |
Dan Sinclair | e778668 | 2017-03-29 15:18:41 -0400 | [diff] [blame] | 1942 | "fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", |
dsinclair | 5e9066c | 2017-01-09 13:43:07 -0800 | [diff] [blame] | 1943 | "xfa/fde/cfde_txtedtbuf_unittest.cpp", |
Dan Sinclair | 95bec80 | 2017-01-19 10:27:58 -0500 | [diff] [blame] | 1944 | "xfa/fde/css/cfde_cssdeclaration_unittest.cpp", |
Dan Sinclair | 3285c56 | 2017-01-17 16:35:16 -0500 | [diff] [blame] | 1945 | "xfa/fde/css/cfde_cssstylesheet_unittest.cpp", |
Dan Sinclair | 36c18c8 | 2017-02-07 11:47:24 -0500 | [diff] [blame] | 1946 | "xfa/fde/css/cfde_cssvaluelistparser_unittest.cpp", |
Dan Sinclair | 6c5ea10 | 2017-06-05 09:53:06 -0400 | [diff] [blame^] | 1947 | "xfa/fgas/crt/cfgas_formatstring_unittest.cpp", |
Dan Sinclair | 994acdc | 2017-04-18 13:56:39 -0400 | [diff] [blame] | 1948 | "xfa/fgas/layout/cfx_rtfbreak_unittest.cpp", |
Tom Sepez | 5628fd7 | 2017-04-27 14:58:53 -0700 | [diff] [blame] | 1949 | "xfa/fwl/cfx_barcode_unittest.cpp", |
Dan Sinclair | 2eddb66 | 2017-05-25 16:49:51 -0400 | [diff] [blame] | 1950 | "xfa/fxfa/app/cxfa_ffbarcode_unittest.cpp", |
Dan Sinclair | 1f5d498 | 2017-01-10 16:37:32 -0500 | [diff] [blame] | 1951 | "xfa/fxfa/app/cxfa_textparser_unittest.cpp", |
Chris Palmer | 2b79729 | 2017-04-06 14:45:39 -0700 | [diff] [blame] | 1952 | "xfa/fxfa/cxfa_ffapp_unittest.cpp", |
Dan Sinclair | 2e9d47a | 2017-05-16 15:14:02 -0400 | [diff] [blame] | 1953 | "xfa/fxfa/fm2js/cxfa_fmlexer_unittest.cpp", |
Dan Sinclair | c559156 | 2017-05-17 09:39:04 -0400 | [diff] [blame] | 1954 | "xfa/fxfa/fm2js/cxfa_fmparse_unittest.cpp", |
Dan Sinclair | 2e9d47a | 2017-05-16 15:14:02 -0400 | [diff] [blame] | 1955 | "xfa/fxfa/fm2js/cxfa_fmsimpleexpression_unittest.cpp", |
dsinclair | 39fdfc3 | 2016-07-21 12:09:45 -0700 | [diff] [blame] | 1956 | "xfa/fxfa/parser/xfa_utils_unittest.cpp", |
Tom Sepez | d2e023b | 2015-12-08 14:36:16 -0800 | [diff] [blame] | 1957 | ] |
| 1958 | } |
caryclark | af177fe | 2016-11-16 10:10:03 -0800 | [diff] [blame] | 1959 | if (pdf_use_skia || pdf_use_skia_paths) { |
caryclark | e89391e | 2016-06-29 07:10:49 -0700 | [diff] [blame] | 1960 | sources += [ "core/fxge/skia/fx_skia_device_unittest.cpp" ] |
| 1961 | deps += [ "//skia" ] |
| 1962 | } |
Wei Li | 614d20a | 2016-03-15 13:55:12 -0700 | [diff] [blame] | 1963 | if (pdf_enable_v8) { |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 1964 | sources += [ "fpdfsdk/javascript/public_methods_unittest.cpp" ] |
Wei Li | 614d20a | 2016-03-15 13:55:12 -0700 | [diff] [blame] | 1965 | include_dirs += [ |
| 1966 | "//v8", |
| 1967 | "//v8/include", |
| 1968 | ] |
| 1969 | } |
weili | 0abe652 | 2016-06-06 14:41:22 -0700 | [diff] [blame] | 1970 | configs += [ ":pdfium_core_config" ] |
jbudorick | 7f3a15f | 2016-06-10 06:28:40 -0700 | [diff] [blame] | 1971 | if (is_android) { |
jbudorick | 7f3a15f | 2016-06-10 06:28:40 -0700 | [diff] [blame] | 1972 | use_raw_android_executable = true |
| 1973 | } |
Tom Sepez | 04681f3 | 2015-01-09 13:59:19 -0800 | [diff] [blame] | 1974 | } |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 1975 | |
| 1976 | test("pdfium_embeddertests") { |
| 1977 | sources = [ |
Dan Sinclair | 5acacd3 | 2017-05-25 14:04:59 -0400 | [diff] [blame] | 1978 | "core/fpdfapi/page/cpdf_stitchfunc_embeddertest.cpp", |
dsinclair | 488b7ad | 2016-10-04 11:55:50 -0700 | [diff] [blame] | 1979 | "core/fpdfapi/parser/cpdf_parser_embeddertest.cpp", |
| 1980 | "core/fpdfapi/parser/cpdf_security_handler_embeddertest.cpp", |
| 1981 | "core/fpdfapi/parser/fpdf_parser_decode_embeddertest.cpp", |
dsinclair | 69d9c68 | 2016-10-04 12:18:35 -0700 | [diff] [blame] | 1982 | "core/fpdfapi/render/fpdf_render_loadimage_embeddertest.cpp", |
| 1983 | "core/fpdfapi/render/fpdf_render_pattern_embeddertest.cpp", |
weili | 6faf9f9 | 2016-08-02 11:34:08 -0700 | [diff] [blame] | 1984 | "core/fxcodec/codec/fx_codec_embeddertest.cpp", |
ochang | b8627c9 | 2016-04-11 13:47:41 -0700 | [diff] [blame] | 1985 | "core/fxge/ge/fx_ge_text_embeddertest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1986 | "fpdfsdk/fpdf_dataavail_embeddertest.cpp", |
tsepez | d0ecd89 | 2016-11-08 17:30:04 -0800 | [diff] [blame] | 1987 | "fpdfsdk/fpdf_flatten_embeddertest.cpp", |
thestig | 9067fd6 | 2016-11-23 14:10:06 -0800 | [diff] [blame] | 1988 | "fpdfsdk/fpdf_structtree_embeddertest.cpp", |
Jane Liu | 4fd9a47 | 2017-06-01 18:56:09 -0400 | [diff] [blame] | 1989 | "fpdfsdk/fpdfannot_embeddertest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1990 | "fpdfsdk/fpdfdoc_embeddertest.cpp", |
| 1991 | "fpdfsdk/fpdfedit_embeddertest.cpp", |
| 1992 | "fpdfsdk/fpdfext_embeddertest.cpp", |
| 1993 | "fpdfsdk/fpdfformfill_embeddertest.cpp", |
tsepez | 211d4ed | 2016-11-11 17:23:48 -0800 | [diff] [blame] | 1994 | "fpdfsdk/fpdfppo_embeddertest.cpp", |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 1995 | "fpdfsdk/fpdfsave_embeddertest.cpp", |
| 1996 | "fpdfsdk/fpdftext_embeddertest.cpp", |
| 1997 | "fpdfsdk/fpdfview_c_api_test.c", |
| 1998 | "fpdfsdk/fpdfview_c_api_test.h", |
| 1999 | "fpdfsdk/fpdfview_embeddertest.cpp", |
| 2000 | "fpdfsdk/fsdk_baseform_embeddertest.cpp", |
Lei Zhang | af680b1 | 2017-06-02 16:42:59 -0700 | [diff] [blame] | 2001 | "fpdfsdk/pdfwindow/cpwl_edit_embeddertest.cpp", |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 2002 | "testing/embedder_test.cpp", |
| 2003 | "testing/embedder_test.h", |
Tom Sepez | a310e00 | 2015-02-27 13:03:07 -0800 | [diff] [blame] | 2004 | "testing/embedder_test_mock_delegate.h", |
Tom Sepez | 6efc0ad | 2015-06-02 17:11:18 -0700 | [diff] [blame] | 2005 | "testing/embedder_test_timer_handling_delegate.h", |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 2006 | ] |
| 2007 | deps = [ |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 2008 | ":pdfium", |
Tom Sepez | d831dc7 | 2015-10-19 16:04:22 -0700 | [diff] [blame] | 2009 | ":test_support", |
Dan Sinclair | fffc963 | 2016-03-08 08:57:05 -0500 | [diff] [blame] | 2010 | "//testing/gmock", |
| 2011 | "//testing/gtest", |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 2012 | ] |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 2013 | include_dirs = [ "testing/gmock/include" ] |
thestig | c65e11e | 2016-08-30 21:56:33 -0700 | [diff] [blame] | 2014 | configs += [ ":pdfium_core_config" ] |
| 2015 | |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 2016 | if (pdf_enable_v8) { |
Lei Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 2017 | sources += [ |
Dan Sinclair | f766ad2 | 2016-03-14 13:51:24 -0400 | [diff] [blame] | 2018 | "fpdfsdk/javascript/public_methods_embeddertest.cpp", |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 2019 | "fxjs/fxjs_v8_embeddertest.cpp", |
Lei Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 2020 | "testing/js_embedder_test.cpp", |
| 2021 | "testing/js_embedder_test.h", |
| 2022 | ] |
dsinclair | b3f2467 | 2016-07-12 10:42:14 -0700 | [diff] [blame] | 2023 | deps += [ ":fxjs" ] |
Jochen Eisinger | 7ed503d | 2015-12-10 14:38:06 +0100 | [diff] [blame] | 2024 | configs += [ "//v8:external_startup_data" ] |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 2025 | } |
Dan Sinclair | 14aacd5 | 2017-05-18 14:11:29 -0400 | [diff] [blame] | 2026 | if (pdf_enable_xfa) { |
| 2027 | sources += [ |
| 2028 | "testing/xfa_js_embedder_test.cpp", |
| 2029 | "testing/xfa_js_embedder_test.h", |
| 2030 | "xfa/fxfa/fm2js/cxfa_fm2jscontext_embeddertest.cpp", |
| 2031 | "xfa/fxfa/parser/cxfa_simple_parser_embeddertest.cpp", |
| 2032 | ] |
| 2033 | } |
jbudorick | 7f3a15f | 2016-06-10 06:28:40 -0700 | [diff] [blame] | 2034 | if (is_android) { |
| 2035 | ignore_all_data_deps = true |
| 2036 | use_raw_android_executable = true |
| 2037 | } |
Tom Sepez | 1b1bb49 | 2015-01-22 17:36:32 -0800 | [diff] [blame] | 2038 | } |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 2039 | |
| 2040 | if (pdf_is_standalone) { |
| 2041 | source_set("samples") { |
| 2042 | testonly = true |
| 2043 | deps = [ |
| 2044 | "//samples", |
| 2045 | ] |
| 2046 | } |
thestig | 62114cf | 2016-11-08 12:59:30 -0800 | [diff] [blame] | 2047 | group("fuzzers") { |
| 2048 | testonly = true |
| 2049 | deps = [ |
| 2050 | "//testing/libfuzzer", |
| 2051 | ] |
| 2052 | } |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 2053 | } |
Lei Zhang | f02c8bf | 2017-04-01 01:35:01 -0700 | [diff] [blame] | 2054 | |
| 2055 | group("pdfium_all") { |
| 2056 | testonly = true |
| 2057 | deps = [ |
| 2058 | ":pdfium_embeddertests", |
| 2059 | ":pdfium_unittests", |
| 2060 | ] |
| 2061 | if (pdf_is_standalone) { |
| 2062 | deps += [ |
| 2063 | ":fuzzers", |
| 2064 | ":samples", |
| 2065 | ] |
| 2066 | } |
| 2067 | } |