John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 1 | # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | pdf_use_skia = false |
| 6 | |
| 7 | config("pdfium_config") { |
| 8 | cflags = [] |
| 9 | defines = [ |
| 10 | "FOXIT_CHROME_BUILD", |
| 11 | "_FXFT_VERSION_=2501", |
| 12 | "_FPDFSDK_LIB", |
| 13 | "_NO_GDIPLUS_", # workaround text rendering issues on Windows |
| 14 | ] |
| 15 | |
| 16 | if (pdf_use_skia) { |
| 17 | defines += [ "_SKIA_SUPPORT_" ] |
| 18 | } |
| 19 | |
| 20 | if (is_linux) { |
| 21 | if (cpu_arch == "x64") { |
| 22 | defines += [ "_FX_CPU_=_FX_X64_" ] |
| 23 | cflags += [ "-fPIC" ] |
| 24 | } else if (cpu_arch == "x86") { |
| 25 | defines += [ "_FX_CPU_=_FX_X86_" ] |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | if (is_win) { |
| 30 | cflags += [ |
| 31 | "/wd4005", |
| 32 | "/wd4018", |
| 33 | "/wd4146", |
| 34 | "/wd4333", |
| 35 | "/wd4345", |
| 36 | ] |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | static_library("pdfium") { |
| 41 | sources = [ |
| 42 | "fpdfsdk/include/fpdfdoc.h", |
| 43 | "fpdfsdk/include/fpdfedit.h", |
| 44 | "fpdfsdk/include/fpdfformfill.h", |
| 45 | "fpdfsdk/include/fpdfoom.h", |
| 46 | "fpdfsdk/include/fpdftext.h", |
| 47 | "fpdfsdk/include/fpdfview.h", |
| 48 | "fpdfsdk/include/fpdf_dataavail.h", |
| 49 | "fpdfsdk/include/fpdf_flatten.h", |
| 50 | "fpdfsdk/include/fpdf_progressive.h", |
| 51 | "fpdfsdk/include/fpdf_searchex.h", |
| 52 | "fpdfsdk/include/fpdf_sysfontinfo.h", |
| 53 | "fpdfsdk/include/fpdf_ext.h", |
| 54 | "fpdfsdk/include/fpdf_sysfontinfo.h", |
| 55 | "fpdfsdk/include/fsdk_actionhandler.h", |
| 56 | "fpdfsdk/include/fsdk_annothandler.h", |
| 57 | "fpdfsdk/include/fsdk_baseannot.h", |
| 58 | "fpdfsdk/include/fsdk_baseform.h", |
| 59 | "fpdfsdk/src/fpdfdoc.cpp", |
| 60 | "fpdfsdk/src/fpdfeditimg.cpp", |
| 61 | "fpdfsdk/src/fpdfeditpage.cpp", |
| 62 | "fpdfsdk/src/fpdfformfill.cpp", |
| 63 | "fpdfsdk/src/fpdfoom.cpp", |
| 64 | "fpdfsdk/src/fpdfppo.cpp", |
| 65 | "fpdfsdk/src/fpdfsave.cpp", |
| 66 | "fpdfsdk/src/fpdftext.cpp", |
| 67 | "fpdfsdk/src/fpdfview.cpp", |
| 68 | "fpdfsdk/src/fpdf_dataavail.cpp", |
| 69 | "fpdfsdk/src/fpdf_ext.cpp", |
| 70 | "fpdfsdk/src/fpdf_flatten.cpp", |
| 71 | "fpdfsdk/src/fpdf_progressive.cpp", |
| 72 | "fpdfsdk/src/fpdf_searchex.cpp", |
| 73 | "fpdfsdk/src/fpdf_sysfontinfo.cpp", |
| 74 | "fpdfsdk/src/fsdk_actionhandler.cpp", |
| 75 | "fpdfsdk/src/fsdk_annothandler.cpp", |
| 76 | "fpdfsdk/src/fsdk_baseannot.cpp", |
| 77 | "fpdfsdk/src/fsdk_baseform.cpp", |
| 78 | "fpdfsdk/src/fsdk_mgr.cpp", |
| 79 | "fpdfsdk/src/fsdk_rendercontext.cpp", |
| 80 | "fpdfsdk/src/fpdfsdkdll.rc", |
| 81 | "fpdfsdk/src/resource.h", |
| 82 | "fpdfsdk/include/fpdf_transformpage.h", |
| 83 | "fpdfsdk/src/fpdf_transformpage.cpp", |
| 84 | ] |
| 85 | |
| 86 | libs = [] |
| 87 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 88 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 89 | |
| 90 | deps = [ |
Chris Palmer | 9108ad2 | 2014-06-26 16:01:46 -0700 | [diff] [blame] | 91 | ":safemath", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 92 | ":fdrm", |
| 93 | ":formfiller", |
| 94 | ":fpdfapi", |
| 95 | ":fpdfdoc", |
| 96 | ":fpdftext", |
| 97 | ":fxcodec", |
| 98 | ":fxcrt", |
| 99 | ":fxedit", |
| 100 | ":fxge", |
| 101 | ":javascript", |
| 102 | ":jsapi", |
| 103 | ":pdfwindow", |
| 104 | ] |
| 105 | |
| 106 | if (is_win) { |
| 107 | libs += [ "advapi32.lib", "gdi32.lib", "user32.lib" ] |
| 108 | } |
| 109 | |
| 110 | if (is_mac) { |
| 111 | libs += [ "AppKit.framework", "CoreFoundation.framework" ] |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | # Targets below this are only visible within this file. |
Brett Wilson | edbf8ac | 2014-09-08 16:36:48 -0700 | [diff] [blame] | 116 | visibility = [ ":*" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 117 | |
Chris Palmer | 9108ad2 | 2014-06-26 16:01:46 -0700 | [diff] [blame] | 118 | component("safemath") { |
| 119 | sources = [ |
| 120 | "third_party/logging.h", |
| 121 | "third_party/macros.h", |
| 122 | "third_party/template_util.h", |
| 123 | "third_party/numerics/safe_conversions.h", |
| 124 | "third_party/numerics/safe_conversions_impl.h", |
| 125 | "third_party/numerics/safe_math.h", |
| 126 | "third_party/numerics/safe_math_impl.h", |
John Abd-El-Malek | 9d319f0 | 2014-06-30 12:54:56 -0700 | [diff] [blame] | 127 | ] |
Chris Palmer | 9108ad2 | 2014-06-26 16:01:46 -0700 | [diff] [blame] | 128 | } |
| 129 | |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 130 | static_library("fdrm") { |
| 131 | sources = [ |
| 132 | "core/include/fdrm/fx_crypt.h", |
| 133 | "core/src/fdrm/crypto/fx_crypt.cpp", |
| 134 | "core/src/fdrm/crypto/fx_crypt_aes.cpp", |
| 135 | "core/src/fdrm/crypto/fx_crypt_sha.cpp", |
| 136 | ] |
| 137 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 138 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 139 | } |
| 140 | |
| 141 | static_library("fpdfdoc") { |
| 142 | sources = [ |
| 143 | "core/include/fpdfdoc/fpdf_ap.h", |
| 144 | "core/include/fpdfdoc/fpdf_doc.h", |
| 145 | "core/include/fpdfdoc/fpdf_tagged.h", |
| 146 | "core/include/fpdfdoc/fpdf_vt.h", |
| 147 | "core/src/fpdfdoc/doc_action.cpp", |
| 148 | "core/src/fpdfdoc/doc_annot.cpp", |
| 149 | "core/src/fpdfdoc/doc_ap.cpp", |
| 150 | "core/src/fpdfdoc/doc_basic.cpp", |
| 151 | "core/src/fpdfdoc/doc_bookmark.cpp", |
| 152 | "core/src/fpdfdoc/doc_form.cpp", |
| 153 | "core/src/fpdfdoc/doc_formcontrol.cpp", |
| 154 | "core/src/fpdfdoc/doc_formfield.cpp", |
| 155 | "core/src/fpdfdoc/doc_link.cpp", |
| 156 | "core/src/fpdfdoc/doc_metadata.cpp", |
| 157 | "core/src/fpdfdoc/doc_ocg.cpp", |
| 158 | "core/src/fpdfdoc/doc_tagged.cpp", |
| 159 | "core/src/fpdfdoc/doc_utils.cpp", |
| 160 | "core/src/fpdfdoc/doc_viewerPreferences.cpp", |
| 161 | "core/src/fpdfdoc/doc_vt.cpp", |
| 162 | "core/src/fpdfdoc/doc_vtmodule.cpp", |
| 163 | "core/src/fpdfdoc/pdf_vt.h", |
| 164 | "core/src/fpdfdoc/tagged_int.h", |
| 165 | ] |
| 166 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 167 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 168 | } |
| 169 | |
| 170 | |
| 171 | static_library("fpdfapi") { |
| 172 | sources = [ |
| 173 | "core/include/fpdfapi/fpdfapi.h", |
| 174 | "core/include/fpdfapi/fpdf_module.h", |
| 175 | "core/include/fpdfapi/fpdf_objects.h", |
| 176 | "core/include/fpdfapi/fpdf_page.h", |
| 177 | "core/include/fpdfapi/fpdf_pageobj.h", |
| 178 | "core/include/fpdfapi/fpdf_parser.h", |
| 179 | "core/include/fpdfapi/fpdf_render.h", |
| 180 | "core/include/fpdfapi/fpdf_resource.h", |
| 181 | "core/include/fpdfapi/fpdf_serial.h", |
| 182 | "core/src/fpdfapi/fpdf_basic_module.cpp", |
| 183 | "core/src/fpdfapi/fpdf_cmaps/cmap_int.h", |
| 184 | "core/src/fpdfapi/fpdf_cmaps/CNS1/Adobe-CNS1-UCS2_5.cpp", |
| 185 | "core/src/fpdfapi/fpdf_cmaps/CNS1/B5pc-H_0.cpp", |
| 186 | "core/src/fpdfapi/fpdf_cmaps/CNS1/B5pc-V_0.cpp", |
| 187 | "core/src/fpdfapi/fpdf_cmaps/CNS1/cmaps_cns1.cpp", |
| 188 | "core/src/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-H_0.cpp", |
| 189 | "core/src/fpdfapi/fpdf_cmaps/CNS1/CNS-EUC-V_0.cpp", |
| 190 | "core/src/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-H_0.cpp", |
| 191 | "core/src/fpdfapi/fpdf_cmaps/CNS1/ETen-B5-V_0.cpp", |
| 192 | "core/src/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-H_0.cpp", |
| 193 | "core/src/fpdfapi/fpdf_cmaps/CNS1/ETenms-B5-V_0.cpp", |
| 194 | "core/src/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-H_5.cpp", |
| 195 | "core/src/fpdfapi/fpdf_cmaps/CNS1/HKscs-B5-V_5.cpp", |
| 196 | "core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-H_3.cpp", |
| 197 | "core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UCS2-V_3.cpp", |
| 198 | "core/src/fpdfapi/fpdf_cmaps/CNS1/UniCNS-UTF16-H_0.cpp", |
| 199 | "core/src/fpdfapi/fpdf_cmaps/fpdf_cmaps.cpp", |
| 200 | "core/src/fpdfapi/fpdf_cmaps/GB1/Adobe-GB1-UCS2_5.cpp", |
| 201 | "core/src/fpdfapi/fpdf_cmaps/GB1/cmaps_gb1.cpp", |
| 202 | "core/src/fpdfapi/fpdf_cmaps/GB1/GB-EUC-H_0.cpp", |
| 203 | "core/src/fpdfapi/fpdf_cmaps/GB1/GB-EUC-V_0.cpp", |
| 204 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-H_2.cpp", |
| 205 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBK-EUC-V_2.cpp", |
| 206 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBK2K-H_5.cpp", |
| 207 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBK2K-V_5.cpp", |
| 208 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-H_2.cpp", |
| 209 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBKp-EUC-V_2.cpp", |
| 210 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-H_0.cpp", |
| 211 | "core/src/fpdfapi/fpdf_cmaps/GB1/GBpc-EUC-V_0.cpp", |
| 212 | "core/src/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-H_4.cpp", |
| 213 | "core/src/fpdfapi/fpdf_cmaps/GB1/UniGB-UCS2-V_4.cpp", |
| 214 | "core/src/fpdfapi/fpdf_cmaps/Japan1/83pv-RKSJ-H_1.cpp", |
| 215 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-H_2.cpp", |
| 216 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90ms-RKSJ-V_2.cpp", |
| 217 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-H_2.cpp", |
| 218 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90msp-RKSJ-V_2.cpp", |
| 219 | "core/src/fpdfapi/fpdf_cmaps/Japan1/90pv-RKSJ-H_1.cpp", |
| 220 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-H_1.cpp", |
| 221 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Add-RKSJ-V_1.cpp", |
| 222 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Adobe-Japan1-UCS2_4.cpp", |
| 223 | "core/src/fpdfapi/fpdf_cmaps/Japan1/cmaps_japan1.cpp", |
| 224 | "core/src/fpdfapi/fpdf_cmaps/Japan1/EUC-H_1.cpp", |
| 225 | "core/src/fpdfapi/fpdf_cmaps/Japan1/EUC-V_1.cpp", |
| 226 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-H_2.cpp", |
| 227 | "core/src/fpdfapi/fpdf_cmaps/Japan1/Ext-RKSJ-V_2.cpp", |
| 228 | "core/src/fpdfapi/fpdf_cmaps/Japan1/H_1.cpp", |
| 229 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-H_4.cpp", |
| 230 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-HW-V_4.cpp", |
| 231 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-H_4.cpp", |
| 232 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UCS2-V_4.cpp", |
| 233 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UTF16-H_5.cpp", |
| 234 | "core/src/fpdfapi/fpdf_cmaps/Japan1/UniJIS-UTF16-V_5.cpp", |
| 235 | "core/src/fpdfapi/fpdf_cmaps/Japan1/V_1.cpp", |
| 236 | "core/src/fpdfapi/fpdf_cmaps/Korea1/Adobe-Korea1-UCS2_2.cpp", |
| 237 | "core/src/fpdfapi/fpdf_cmaps/Korea1/cmaps_korea1.cpp", |
| 238 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-H_0.cpp", |
| 239 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSC-EUC-V_0.cpp", |
| 240 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-H_1.cpp", |
| 241 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-HW-V_1.cpp", |
| 242 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-H_1.cpp", |
| 243 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCms-UHC-V_1.cpp", |
| 244 | "core/src/fpdfapi/fpdf_cmaps/Korea1/KSCpc-EUC-H_0.cpp", |
| 245 | "core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-H_1.cpp", |
| 246 | "core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UCS2-V_1.cpp", |
| 247 | "core/src/fpdfapi/fpdf_cmaps/Korea1/UniKS-UTF16-H_0.cpp", |
| 248 | "core/src/fpdfapi/fpdf_edit/editint.h", |
| 249 | "core/src/fpdfapi/fpdf_edit/fpdf_edit_content.cpp", |
| 250 | "core/src/fpdfapi/fpdf_edit/fpdf_edit_create.cpp", |
| 251 | "core/src/fpdfapi/fpdf_edit/fpdf_edit_doc.cpp", |
| 252 | "core/src/fpdfapi/fpdf_edit/fpdf_edit_image.cpp", |
| 253 | "core/src/fpdfapi/fpdf_font/common.h", |
| 254 | "core/src/fpdfapi/fpdf_font/font_int.h", |
| 255 | "core/src/fpdfapi/fpdf_font/fpdf_font.cpp", |
| 256 | "core/src/fpdfapi/fpdf_font/fpdf_font_charset.cpp", |
| 257 | "core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp", |
| 258 | "core/src/fpdfapi/fpdf_font/fpdf_font_utility.cpp", |
| 259 | "core/src/fpdfapi/fpdf_font/ttgsubtable.cpp", |
| 260 | "core/src/fpdfapi/fpdf_font/ttgsubtable.h", |
| 261 | "core/src/fpdfapi/fpdf_page/fpdf_page.cpp", |
| 262 | "core/src/fpdfapi/fpdf_page/fpdf_page_colors.cpp", |
| 263 | "core/src/fpdfapi/fpdf_page/fpdf_page_doc.cpp", |
| 264 | "core/src/fpdfapi/fpdf_page/fpdf_page_func.cpp", |
| 265 | "core/src/fpdfapi/fpdf_page/fpdf_page_graph_state.cpp", |
| 266 | "core/src/fpdfapi/fpdf_page/fpdf_page_image.cpp", |
| 267 | "core/src/fpdfapi/fpdf_page/fpdf_page_parser.cpp", |
| 268 | "core/src/fpdfapi/fpdf_page/fpdf_page_parser_new.cpp", |
| 269 | "core/src/fpdfapi/fpdf_page/fpdf_page_parser_old.cpp", |
| 270 | "core/src/fpdfapi/fpdf_page/fpdf_page_path.cpp", |
| 271 | "core/src/fpdfapi/fpdf_page/fpdf_page_pattern.cpp", |
| 272 | "core/src/fpdfapi/fpdf_page/pageint.h", |
| 273 | "core/src/fpdfapi/fpdf_parser/filters_int.h", |
| 274 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_decode.cpp", |
| 275 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_document.cpp", |
| 276 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_encrypt.cpp", |
| 277 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_fdf.cpp", |
| 278 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_filters.cpp", |
| 279 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_objects.cpp", |
| 280 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_parser.cpp", |
| 281 | "core/src/fpdfapi/fpdf_parser/fpdf_parser_utility.cpp", |
| 282 | "core/src/fpdfapi/fpdf_render/fpdf_render.cpp", |
| 283 | "core/src/fpdfapi/fpdf_render/fpdf_render_cache.cpp", |
| 284 | "core/src/fpdfapi/fpdf_render/fpdf_render_image.cpp", |
| 285 | "core/src/fpdfapi/fpdf_render/fpdf_render_loadimage.cpp", |
| 286 | "core/src/fpdfapi/fpdf_render/fpdf_render_pattern.cpp", |
| 287 | "core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp", |
| 288 | "core/src/fpdfapi/fpdf_render/render_int.h", |
| 289 | ] |
| 290 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 291 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 292 | } |
| 293 | |
| 294 | static_library("fpdftext") { |
| 295 | sources = [ |
| 296 | "core/include/fpdftext/fpdf_text.h", |
| 297 | "core/src/fpdftext/fpdf_text.cpp", |
| 298 | "core/src/fpdftext/fpdf_text_int.cpp", |
| 299 | "core/src/fpdftext/fpdf_text_search.cpp", |
| 300 | "core/src/fpdftext/text_int.h", |
| 301 | "core/src/fpdftext/txtproc.h", |
| 302 | "core/src/fpdftext/unicodenormalization.cpp", |
| 303 | "core/src/fpdftext/unicodenormalizationdata.cpp", |
| 304 | ] |
| 305 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 306 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 307 | } |
| 308 | |
| 309 | static_library("fxcodec") { |
| 310 | sources = [ |
| 311 | "core/include/fxcodec/fx_codec.h", |
| 312 | "core/include/fxcodec/fx_codec_def.h", |
| 313 | "core/include/fxcodec/fx_codec_provider.h", |
| 314 | "core/src/fxcodec/codec/codec_int.h", |
| 315 | "core/src/fxcodec/codec/fx_codec.cpp", |
| 316 | "core/src/fxcodec/codec/fx_codec_fax.cpp", |
| 317 | "core/src/fxcodec/codec/fx_codec_flate.cpp", |
| 318 | "core/src/fxcodec/codec/fx_codec_icc.cpp", |
| 319 | "core/src/fxcodec/codec/fx_codec_jbig.cpp", |
| 320 | "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", |
| 321 | "core/src/fxcodec/codec/fx_codec_jpeg.cpp", |
| 322 | "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", |
| 323 | "core/src/fxcodec/fx_libopenjpeg/include/fx_openjpeg.h", |
| 324 | "core/src/fxcodec/fx_libopenjpeg/src/fx_bio.c", |
| 325 | "core/src/fxcodec/fx_libopenjpeg/src/fx_cio.c", |
| 326 | "core/src/fxcodec/fx_libopenjpeg/src/fx_dwt.c", |
| 327 | "core/src/fxcodec/fx_libopenjpeg/src/fx_event.c", |
| 328 | "core/src/fxcodec/fx_libopenjpeg/src/fx_function_list.c", |
| 329 | "core/src/fxcodec/fx_libopenjpeg/src/fx_image.c", |
| 330 | "core/src/fxcodec/fx_libopenjpeg/src/fx_invert.c", |
| 331 | "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k.c", |
| 332 | "core/src/fxcodec/fx_libopenjpeg/src/fx_j2k_lib.c", |
| 333 | "core/src/fxcodec/fx_libopenjpeg/src/fx_jpt.c", |
| 334 | "core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c", |
| 335 | "core/src/fxcodec/fx_libopenjpeg/src/fx_mqc.c", |
| 336 | "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg.c", |
| 337 | "core/src/fxcodec/fx_libopenjpeg/src/fx_openjpeg_jp2.c", |
| 338 | "core/src/fxcodec/fx_libopenjpeg/src/fx_opj_clock.c", |
| 339 | "core/src/fxcodec/fx_libopenjpeg/src/fx_pi.c", |
| 340 | "core/src/fxcodec/fx_libopenjpeg/src/fx_raw.c", |
| 341 | "core/src/fxcodec/fx_libopenjpeg/src/fx_t1.c", |
| 342 | "core/src/fxcodec/fx_libopenjpeg/src/fx_t1_generate_luts.c", |
| 343 | "core/src/fxcodec/fx_libopenjpeg/src/fx_t2.c", |
| 344 | "core/src/fxcodec/fx_libopenjpeg/src/fx_tcd.c", |
| 345 | "core/src/fxcodec/fx_libopenjpeg/src/fx_tgt.c", |
| 346 | "core/src/fxcodec/fx_zlib/include/fx_zlib.h", |
| 347 | "core/src/fxcodec/fx_zlib/src/fx_zlib_adler32.c", |
| 348 | "core/src/fxcodec/fx_zlib/src/fx_zlib_compress.c", |
| 349 | "core/src/fxcodec/fx_zlib/src/fx_zlib_crc32.c", |
| 350 | "core/src/fxcodec/fx_zlib/src/fx_zlib_deflate.c", |
| 351 | "core/src/fxcodec/fx_zlib/src/fx_zlib_gzclose.c", |
| 352 | "core/src/fxcodec/fx_zlib/src/fx_zlib_gzlib.c", |
| 353 | "core/src/fxcodec/fx_zlib/src/fx_zlib_gzread.c", |
| 354 | "core/src/fxcodec/fx_zlib/src/fx_zlib_gzwrite.c", |
| 355 | "core/src/fxcodec/fx_zlib/src/fx_zlib_infback.c", |
| 356 | "core/src/fxcodec/fx_zlib/src/fx_zlib_inffast.c", |
| 357 | "core/src/fxcodec/fx_zlib/src/fx_zlib_inflate.c", |
| 358 | "core/src/fxcodec/fx_zlib/src/fx_zlib_inftrees.c", |
| 359 | "core/src/fxcodec/fx_zlib/src/fx_zlib_trees.c", |
| 360 | "core/src/fxcodec/fx_zlib/src/fx_zlib_uncompr.c", |
| 361 | "core/src/fxcodec/fx_zlib/src/fx_zlib_zutil.c", |
| 362 | "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", |
| 363 | "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", |
| 364 | "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", |
| 365 | "core/src/fxcodec/jbig2/JBig2_ArithQe.h", |
| 366 | "core/src/fxcodec/jbig2/JBig2_BitStream.h", |
| 367 | "core/src/fxcodec/jbig2/JBig2_Context.cpp", |
| 368 | "core/src/fxcodec/jbig2/JBig2_Context.h", |
| 369 | "core/src/fxcodec/jbig2/JBig2_Define.h", |
| 370 | "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.cpp", |
| 371 | "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h", |
| 372 | "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp", |
| 373 | "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.h", |
| 374 | "core/src/fxcodec/jbig2/JBig2_HuffmanTable.cpp", |
| 375 | "core/src/fxcodec/jbig2/JBig2_HuffmanTable.h", |
| 376 | "core/src/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h", |
| 377 | "core/src/fxcodec/jbig2/JBig2_Image.cpp", |
| 378 | "core/src/fxcodec/jbig2/JBig2_Image.h", |
| 379 | "core/src/fxcodec/jbig2/JBig2_List.h", |
| 380 | "core/src/fxcodec/jbig2/JBig2_Module.h", |
| 381 | "core/src/fxcodec/jbig2/JBig2_Object.cpp", |
| 382 | "core/src/fxcodec/jbig2/JBig2_Object.h", |
| 383 | "core/src/fxcodec/jbig2/JBig2_Page.h", |
| 384 | "core/src/fxcodec/jbig2/JBig2_PatternDict.cpp", |
| 385 | "core/src/fxcodec/jbig2/JBig2_PatternDict.h", |
| 386 | "core/src/fxcodec/jbig2/JBig2_Segment.cpp", |
| 387 | "core/src/fxcodec/jbig2/JBig2_Segment.h", |
| 388 | "core/src/fxcodec/jbig2/JBig2_SymbolDict.cpp", |
| 389 | "core/src/fxcodec/jbig2/JBig2_SymbolDict.h", |
| 390 | "core/src/fxcodec/lcms2/src/fx_cmscam02.c", |
| 391 | "core/src/fxcodec/lcms2/src/fx_cmscgats.c", |
| 392 | "core/src/fxcodec/lcms2/src/fx_cmscnvrt.c", |
| 393 | "core/src/fxcodec/lcms2/src/fx_cmserr.c", |
| 394 | "core/src/fxcodec/lcms2/src/fx_cmsgamma.c", |
| 395 | "core/src/fxcodec/lcms2/src/fx_cmsgmt.c", |
| 396 | "core/src/fxcodec/lcms2/src/fx_cmshalf.c", |
| 397 | "core/src/fxcodec/lcms2/src/fx_cmsintrp.c", |
| 398 | "core/src/fxcodec/lcms2/src/fx_cmsio0.c", |
| 399 | "core/src/fxcodec/lcms2/src/fx_cmsio1.c", |
| 400 | "core/src/fxcodec/lcms2/src/fx_cmslut.c", |
| 401 | "core/src/fxcodec/lcms2/src/fx_cmsmd5.c", |
| 402 | "core/src/fxcodec/lcms2/src/fx_cmsmtrx.c", |
| 403 | "core/src/fxcodec/lcms2/src/fx_cmsnamed.c", |
| 404 | "core/src/fxcodec/lcms2/src/fx_cmsopt.c", |
| 405 | "core/src/fxcodec/lcms2/src/fx_cmspack.c", |
| 406 | "core/src/fxcodec/lcms2/src/fx_cmspcs.c", |
| 407 | "core/src/fxcodec/lcms2/src/fx_cmsplugin.c", |
| 408 | "core/src/fxcodec/lcms2/src/fx_cmsps2.c", |
| 409 | "core/src/fxcodec/lcms2/src/fx_cmssamp.c", |
| 410 | "core/src/fxcodec/lcms2/src/fx_cmssm.c", |
| 411 | "core/src/fxcodec/lcms2/src/fx_cmstypes.c", |
| 412 | "core/src/fxcodec/lcms2/src/fx_cmsvirt.c", |
| 413 | "core/src/fxcodec/lcms2/src/fx_cmswtpnt.c", |
| 414 | "core/src/fxcodec/lcms2/src/fx_cmsxform.c", |
| 415 | "core/src/fxcodec/libjpeg/cderror.h", |
| 416 | "core/src/fxcodec/libjpeg/cdjpeg.h", |
| 417 | "core/src/fxcodec/libjpeg/fpdfapi_jcapimin.c", |
| 418 | "core/src/fxcodec/libjpeg/fpdfapi_jcapistd.c", |
| 419 | "core/src/fxcodec/libjpeg/fpdfapi_jccoefct.c", |
| 420 | "core/src/fxcodec/libjpeg/fpdfapi_jccolor.c", |
| 421 | "core/src/fxcodec/libjpeg/fpdfapi_jcdctmgr.c", |
| 422 | "core/src/fxcodec/libjpeg/fpdfapi_jchuff.c", |
| 423 | "core/src/fxcodec/libjpeg/fpdfapi_jcinit.c", |
| 424 | "core/src/fxcodec/libjpeg/fpdfapi_jcmainct.c", |
| 425 | "core/src/fxcodec/libjpeg/fpdfapi_jcmarker.c", |
| 426 | "core/src/fxcodec/libjpeg/fpdfapi_jcmaster.c", |
| 427 | "core/src/fxcodec/libjpeg/fpdfapi_jcomapi.c", |
| 428 | "core/src/fxcodec/libjpeg/fpdfapi_jcparam.c", |
| 429 | "core/src/fxcodec/libjpeg/fpdfapi_jcphuff.c", |
| 430 | "core/src/fxcodec/libjpeg/fpdfapi_jcprepct.c", |
| 431 | "core/src/fxcodec/libjpeg/fpdfapi_jcsample.c", |
| 432 | "core/src/fxcodec/libjpeg/fpdfapi_jctrans.c", |
| 433 | "core/src/fxcodec/libjpeg/fpdfapi_jdapimin.c", |
| 434 | "core/src/fxcodec/libjpeg/fpdfapi_jdapistd.c", |
| 435 | "core/src/fxcodec/libjpeg/fpdfapi_jdcoefct.c", |
| 436 | "core/src/fxcodec/libjpeg/fpdfapi_jdcolor.c", |
| 437 | "core/src/fxcodec/libjpeg/fpdfapi_jddctmgr.c", |
| 438 | "core/src/fxcodec/libjpeg/fpdfapi_jdhuff.c", |
| 439 | "core/src/fxcodec/libjpeg/fpdfapi_jdinput.c", |
| 440 | "core/src/fxcodec/libjpeg/fpdfapi_jdmainct.c", |
| 441 | "core/src/fxcodec/libjpeg/fpdfapi_jdmarker.c", |
| 442 | "core/src/fxcodec/libjpeg/fpdfapi_jdmaster.c", |
| 443 | "core/src/fxcodec/libjpeg/fpdfapi_jdmerge.c", |
| 444 | "core/src/fxcodec/libjpeg/fpdfapi_jdphuff.c", |
| 445 | "core/src/fxcodec/libjpeg/fpdfapi_jdpostct.c", |
| 446 | "core/src/fxcodec/libjpeg/fpdfapi_jdsample.c", |
| 447 | "core/src/fxcodec/libjpeg/fpdfapi_jdtrans.c", |
| 448 | "core/src/fxcodec/libjpeg/fpdfapi_jerror.c", |
| 449 | "core/src/fxcodec/libjpeg/fpdfapi_jfdctfst.c", |
| 450 | "core/src/fxcodec/libjpeg/fpdfapi_jfdctint.c", |
| 451 | "core/src/fxcodec/libjpeg/fpdfapi_jidctfst.c", |
| 452 | "core/src/fxcodec/libjpeg/fpdfapi_jidctint.c", |
| 453 | "core/src/fxcodec/libjpeg/fpdfapi_jidctred.c", |
| 454 | "core/src/fxcodec/libjpeg/fpdfapi_jmemmgr.c", |
| 455 | "core/src/fxcodec/libjpeg/fpdfapi_jmemnobs.c", |
| 456 | "core/src/fxcodec/libjpeg/fpdfapi_jutils.c", |
| 457 | "core/src/fxcodec/libjpeg/jchuff.h", |
| 458 | "core/src/fxcodec/libjpeg/jconfig.h", |
| 459 | "core/src/fxcodec/libjpeg/jdct.h", |
| 460 | "core/src/fxcodec/libjpeg/jdhuff.h", |
| 461 | "core/src/fxcodec/libjpeg/jerror.h", |
| 462 | "core/src/fxcodec/libjpeg/jinclude.h", |
| 463 | "core/src/fxcodec/libjpeg/jmemsys.h", |
| 464 | "core/src/fxcodec/libjpeg/jmorecfg.h", |
| 465 | "core/src/fxcodec/libjpeg/jpegint.h", |
| 466 | "core/src/fxcodec/libjpeg/jpeglib.h", |
| 467 | "core/src/fxcodec/libjpeg/jversion.h", |
| 468 | "core/src/fxcodec/libjpeg/makefile", |
| 469 | "core/src/fxcodec/libjpeg/transupp.h", |
| 470 | ] |
| 471 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | def5c7d | 2014-06-09 16:07:18 -0700 | [diff] [blame] | 472 | |
| 473 | if (is_posix) { |
| 474 | # core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c does an pointer-to-int |
| 475 | # conversion to check that an address is 16-bit aligned (benign). |
| 476 | cflags_c = [ "-Wno-pointer-to-int-cast" ] |
| 477 | } |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 478 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 479 | } |
| 480 | |
| 481 | static_library("fxcrt") { |
| 482 | sources = [ |
| 483 | "core/include/fxcrt/fx_arb.h", |
| 484 | "core/include/fxcrt/fx_basic.h", |
| 485 | "core/include/fxcrt/fx_coordinates.h", |
| 486 | "core/include/fxcrt/fx_ext.h", |
| 487 | "core/include/fxcrt/fx_memory.h", |
| 488 | "core/include/fxcrt/fx_stream.h", |
| 489 | "core/include/fxcrt/fx_string.h", |
| 490 | "core/include/fxcrt/fx_system.h", |
| 491 | "core/include/fxcrt/fx_ucd.h", |
| 492 | "core/include/fxcrt/fx_xml.h", |
| 493 | "core/src/fxcrt/extension.h", |
| 494 | "core/src/fxcrt/fxcrt_platforms.cpp", |
| 495 | "core/src/fxcrt/fxcrt_platforms.h", |
| 496 | "core/src/fxcrt/fxcrt_posix.cpp", |
| 497 | "core/src/fxcrt/fxcrt_posix.h", |
| 498 | "core/src/fxcrt/fxcrt_windows.cpp", |
| 499 | "core/src/fxcrt/fxcrt_windows.h", |
| 500 | "core/src/fxcrt/fx_arabic.cpp", |
| 501 | "core/src/fxcrt/fx_arabic.h", |
| 502 | "core/src/fxcrt/fx_basic_array.cpp", |
| 503 | "core/src/fxcrt/fx_basic_bstring.cpp", |
| 504 | "core/src/fxcrt/fx_basic_buffer.cpp", |
| 505 | "core/src/fxcrt/fx_basic_coords.cpp", |
| 506 | "core/src/fxcrt/fx_basic_gcc.cpp", |
| 507 | "core/src/fxcrt/fx_basic_list.cpp", |
| 508 | "core/src/fxcrt/fx_basic_maps.cpp", |
| 509 | "core/src/fxcrt/fx_basic_memmgr.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 510 | "core/src/fxcrt/fx_basic_plex.cpp", |
| 511 | "core/src/fxcrt/fx_basic_utf.cpp", |
| 512 | "core/src/fxcrt/fx_basic_util.cpp", |
| 513 | "core/src/fxcrt/fx_basic_wstring.cpp", |
| 514 | "core/src/fxcrt/fx_extension.cpp", |
| 515 | "core/src/fxcrt/fx_ucddata.cpp", |
| 516 | "core/src/fxcrt/fx_unicode.cpp", |
| 517 | "core/src/fxcrt/fx_xml_composer.cpp", |
| 518 | "core/src/fxcrt/fx_xml_parser.cpp", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 519 | "core/src/fxcrt/plex.h", |
| 520 | "core/src/fxcrt/xml_int.h", |
| 521 | ] |
| 522 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 523 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 524 | } |
| 525 | |
| 526 | static_library("fxge") { |
| 527 | sources = [ |
| 528 | "core/include/fxge/fpf.h", |
| 529 | "core/include/fxge/fx_dib.h", |
| 530 | "core/include/fxge/fx_font.h", |
| 531 | "core/include/fxge/fx_freetype.h", |
| 532 | "core/include/fxge/fx_ge.h", |
| 533 | "core/include/fxge/fx_ge_apple.h", |
| 534 | "core/include/fxge/fx_ge_win32.h", |
| 535 | "core/src/fxge/agg/include/fxfx_agg_basics.h", |
| 536 | "core/src/fxge/agg/include/fxfx_agg_clip_liang_barsky.h", |
| 537 | "core/src/fxge/agg/include/fxfx_agg_conv_dash.h", |
| 538 | "core/src/fxge/agg/include/fxfx_agg_conv_stroke.h", |
| 539 | "core/src/fxge/agg/include/fxfx_agg_curves.h", |
| 540 | "core/src/fxge/agg/include/fxfx_agg_path_storage.h", |
| 541 | "core/src/fxge/agg/include/fxfx_agg_rasterizer_scanline_aa.h", |
| 542 | "core/src/fxge/agg/include/fxfx_agg_renderer_scanline.h", |
| 543 | "core/src/fxge/agg/include/fxfx_agg_rendering_buffer.h", |
| 544 | "core/src/fxge/agg/include/fxfx_agg_scanline_u.h", |
| 545 | "core/src/fxge/agg/include/fx_agg_driver.h", |
| 546 | "core/src/fxge/agg/src/fxfx_agg_curves.cpp", |
| 547 | "core/src/fxge/agg/src/fxfx_agg_driver.cpp", |
| 548 | "core/src/fxge/agg/src/fxfx_agg_path_storage.cpp", |
| 549 | "core/src/fxge/agg/src/fxfx_agg_rasterizer_scanline_aa.cpp", |
| 550 | "core/src/fxge/agg/src/fxfx_agg_vcgen_dash.cpp", |
| 551 | "core/src/fxge/agg/src/fxfx_agg_vcgen_stroke.cpp", |
| 552 | "core/src/fxge/android/fpf_skiafont.cpp", |
| 553 | "core/src/fxge/android/fpf_skiafont.h", |
| 554 | "core/src/fxge/android/fpf_skiafontmgr.cpp", |
| 555 | "core/src/fxge/android/fpf_skiafontmgr.h", |
| 556 | "core/src/fxge/android/fpf_skiamodule.cpp", |
| 557 | "core/src/fxge/android/fpf_skiamodule.h", |
| 558 | "core/src/fxge/android/fx_android_font.cpp", |
| 559 | "core/src/fxge/android/fx_android_font.h", |
| 560 | "core/src/fxge/android/fx_android_imp.cpp", |
| 561 | "core/src/fxge/android/fx_fpf.h", |
| 562 | "core/src/fxge/apple/apple_int.h", |
| 563 | "core/src/fxge/apple/fx_apple_platform.cpp", |
| 564 | "core/src/fxge/apple/fx_mac_imp.cpp", |
| 565 | "core/src/fxge/apple/fx_quartz_device.cpp", |
| 566 | "core/src/fxge/dib/dib_int.h", |
| 567 | "core/src/fxge/dib/fx_dib_composite.cpp", |
| 568 | "core/src/fxge/dib/fx_dib_convert.cpp", |
| 569 | "core/src/fxge/dib/fx_dib_engine.cpp", |
| 570 | "core/src/fxge/dib/fx_dib_main.cpp", |
| 571 | "core/src/fxge/dib/fx_dib_transform.cpp", |
| 572 | "core/src/fxge/fontdata/chromefontdata/FoxitDingbats.c", |
| 573 | "core/src/fxge/fontdata/chromefontdata/FoxitFixed.c", |
| 574 | "core/src/fxge/fontdata/chromefontdata/FoxitFixedBold.c", |
| 575 | "core/src/fxge/fontdata/chromefontdata/FoxitFixedBoldItalic.c", |
| 576 | "core/src/fxge/fontdata/chromefontdata/FoxitFixedItalic.c", |
| 577 | "core/src/fxge/fontdata/chromefontdata/FoxitSans.c", |
| 578 | "core/src/fxge/fontdata/chromefontdata/FoxitSansBold.c", |
| 579 | "core/src/fxge/fontdata/chromefontdata/FoxitSansBoldItalic.c", |
| 580 | "core/src/fxge/fontdata/chromefontdata/FoxitSansItalic.c", |
| 581 | "core/src/fxge/fontdata/chromefontdata/FoxitSansMM.c", |
| 582 | "core/src/fxge/fontdata/chromefontdata/FoxitSerif.c", |
| 583 | "core/src/fxge/fontdata/chromefontdata/FoxitSerifBold.c", |
| 584 | "core/src/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.c", |
| 585 | "core/src/fxge/fontdata/chromefontdata/FoxitSerifItalic.c", |
| 586 | "core/src/fxge/fontdata/chromefontdata/FoxitSerifMM.c", |
| 587 | "core/src/fxge/fontdata/chromefontdata/FoxitSymbol.c", |
| 588 | "core/src/fxge/fx_freetype/include/fxft_cffobjs.h", |
| 589 | "core/src/fxge/fx_freetype/include/fxft_cfftypes.h", |
| 590 | "core/src/fxge/fx_freetype/include/fxft_freetype.h", |
| 591 | "core/src/fxge/fx_freetype/include/fxft_ft2build.h", |
| 592 | "core/src/fxge/fx_freetype/include/fxft_ftmm.h", |
| 593 | "core/src/fxge/fx_freetype/include/fxft_ftobjs.h", |
| 594 | "core/src/fxge/fx_freetype/include/fxft_ftotval.h", |
| 595 | "core/src/fxge/fx_freetype/include/fxft_ftoutln.h", |
| 596 | "core/src/fxge/fx_freetype/include/fxft_ftstream.h", |
| 597 | "core/src/fxge/fx_freetype/include/fxft_tttables.h", |
| 598 | "core/src/fxge/fx_freetype/include/fxft_tttypes.h", |
| 599 | "core/src/fxge/fx_freetype/src/fxft_cff.c", |
| 600 | "core/src/fxge/fx_freetype/src/fxft_ftbase.c", |
| 601 | "core/src/fxge/fx_freetype/src/fxft_ftbitmap.c", |
| 602 | "core/src/fxge/fx_freetype/src/fxft_ftglyph.c", |
| 603 | "core/src/fxge/fx_freetype/src/fxft_ftinit.c", |
| 604 | "core/src/fxge/fx_freetype/src/fxft_ftlcdfil.c", |
| 605 | "core/src/fxge/fx_freetype/src/fxft_ftmm.c", |
| 606 | "core/src/fxge/fx_freetype/src/fxft_ftsystem.c", |
| 607 | "core/src/fxge/fx_freetype/src/fxft_psaux.c", |
| 608 | "core/src/fxge/fx_freetype/src/fxft_pshinter.c", |
| 609 | "core/src/fxge/fx_freetype/src/fxft_psmodule.c", |
| 610 | "core/src/fxge/fx_freetype/src/fxft_raster.c", |
| 611 | "core/src/fxge/fx_freetype/src/fxft_sfnt.c", |
| 612 | "core/src/fxge/fx_freetype/src/fxft_smooth.c", |
| 613 | "core/src/fxge/fx_freetype/src/fxft_truetype.c", |
| 614 | "core/src/fxge/fx_freetype/src/fxft_type1.c", |
| 615 | "core/src/fxge/fx_freetype/src/fxft_type1cid.c", |
| 616 | "core/src/fxge/ge/fx_ge.cpp", |
| 617 | "core/src/fxge/ge/fx_ge_device.cpp", |
| 618 | "core/src/fxge/ge/fx_ge_font.cpp", |
| 619 | "core/src/fxge/ge/fx_ge_fontmap.cpp", |
| 620 | "core/src/fxge/ge/fx_ge_linux.cpp", |
| 621 | "core/src/fxge/ge/fx_ge_path.cpp", |
| 622 | "core/src/fxge/ge/fx_ge_ps.cpp", |
| 623 | "core/src/fxge/ge/fx_ge_text.cpp", |
| 624 | "core/src/fxge/ge/text_int.h", |
| 625 | ] |
| 626 | |
| 627 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 628 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 629 | |
| 630 | if (pdf_use_skia) { |
| 631 | sources = [ |
| 632 | "core/src/fxge/skia/fx_skia_blitter_new.cpp", |
| 633 | "core/src/fxge/skia/fx_skia_device.cpp", |
| 634 | ] |
| 635 | include_dirs = [ |
| 636 | "//third_party/skia/include/config", |
| 637 | "//third_party/skia/include/core", |
| 638 | "//third_party/skia/include/effects", |
| 639 | "//third_party/skia/include/images", |
| 640 | "//third_party/skia/include/lazy", |
| 641 | "//third_party/skia/include/pathops", |
| 642 | "//third_party/skia/include/utils", |
| 643 | "//third_party/skia/src/core", |
| 644 | ] |
| 645 | deps = [ "//skia" ] |
| 646 | } |
| 647 | |
| 648 | if (is_win) { |
| 649 | sources += [ |
| 650 | "core/src/fxge/win32/dwrite_int.h", |
| 651 | "core/src/fxge/win32/fx_win32_device.cpp", |
| 652 | "core/src/fxge/win32/fx_win32_dib.cpp", |
| 653 | "core/src/fxge/win32/fx_win32_dwrite.cpp", |
| 654 | "core/src/fxge/win32/fx_win32_gdipext.cpp", |
| 655 | "core/src/fxge/win32/fx_win32_print.cpp", |
| 656 | "core/src/fxge/win32/win32_int.h", |
| 657 | ] |
| 658 | configs -= [ |
| 659 | "//build/config/win:lean_and_mean", |
| 660 | "//build/config/win:nominmax", |
| 661 | ] |
| 662 | } |
| 663 | } |
| 664 | |
| 665 | static_library("fxedit") { |
| 666 | sources = [ |
| 667 | "fpdfsdk/include/fxedit/fx_edit.h", |
| 668 | "fpdfsdk/include/fxedit/fxet_edit.h", |
| 669 | "fpdfsdk/include/fxedit/fxet_list.h", |
| 670 | "fpdfsdk/include/fxedit/fxet_stub.h", |
| 671 | "fpdfsdk/src/fxedit/fxet_ap.cpp", |
| 672 | "fpdfsdk/src/fxedit/fxet_edit.cpp", |
| 673 | "fpdfsdk/src/fxedit/fxet_list.cpp", |
| 674 | "fpdfsdk/src/fxedit/fxet_module.cpp", |
| 675 | "fpdfsdk/src/fxedit/fxet_pageobjs.cpp", |
| 676 | ] |
| 677 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 678 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 679 | } |
| 680 | |
| 681 | static_library("pdfwindow") { |
| 682 | sources = [ |
| 683 | "fpdfsdk/include/pdfwindow/IPDFWindow.h", |
| 684 | "fpdfsdk/include/pdfwindow/PDFWindow.h", |
| 685 | "fpdfsdk/include/pdfwindow/PWL_Button.h", |
| 686 | "fpdfsdk/include/pdfwindow/PWL_Caret.h", |
| 687 | "fpdfsdk/include/pdfwindow/PWL_ComboBox.h", |
| 688 | "fpdfsdk/include/pdfwindow/PWL_Edit.h", |
| 689 | "fpdfsdk/include/pdfwindow/PWL_EditCtrl.h", |
| 690 | "fpdfsdk/include/pdfwindow/PWL_FontMap.h", |
| 691 | "fpdfsdk/include/pdfwindow/PWL_Icon.h", |
| 692 | "fpdfsdk/include/pdfwindow/PWL_IconList.h", |
| 693 | "fpdfsdk/include/pdfwindow/PWL_Label.h", |
| 694 | "fpdfsdk/include/pdfwindow/PWL_ListBox.h", |
| 695 | "fpdfsdk/include/pdfwindow/PWL_ListCtrl.h", |
| 696 | "fpdfsdk/include/pdfwindow/PWL_Note.h", |
| 697 | "fpdfsdk/include/pdfwindow/PWL_ScrollBar.h", |
| 698 | "fpdfsdk/include/pdfwindow/PWL_Signature.h", |
| 699 | "fpdfsdk/include/pdfwindow/PWL_SpecialButton.h", |
| 700 | "fpdfsdk/include/pdfwindow/PWL_Utils.h", |
| 701 | "fpdfsdk/include/pdfwindow/PWL_Wnd.h", |
| 702 | "fpdfsdk/src/pdfwindow/PWL_Button.cpp", |
| 703 | "fpdfsdk/src/pdfwindow/PWL_Caret.cpp", |
| 704 | "fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp", |
| 705 | "fpdfsdk/src/pdfwindow/PWL_Edit.cpp", |
| 706 | "fpdfsdk/src/pdfwindow/PWL_EditCtrl.cpp", |
| 707 | "fpdfsdk/src/pdfwindow/PWL_FontMap.cpp", |
| 708 | "fpdfsdk/src/pdfwindow/PWL_Icon.cpp", |
| 709 | "fpdfsdk/src/pdfwindow/PWL_IconList.cpp", |
| 710 | "fpdfsdk/src/pdfwindow/PWL_Label.cpp", |
| 711 | "fpdfsdk/src/pdfwindow/PWL_ListBox.cpp", |
| 712 | "fpdfsdk/src/pdfwindow/PWL_ListCtrl.cpp", |
| 713 | "fpdfsdk/src/pdfwindow/PWL_Note.cpp", |
| 714 | "fpdfsdk/src/pdfwindow/PWL_ScrollBar.cpp", |
| 715 | "fpdfsdk/src/pdfwindow/PWL_Signature.cpp", |
| 716 | "fpdfsdk/src/pdfwindow/PWL_SpecialButton.cpp", |
| 717 | "fpdfsdk/src/pdfwindow/PWL_Utils.cpp", |
| 718 | "fpdfsdk/src/pdfwindow/PWL_Wnd.cpp", |
| 719 | ] |
| 720 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 721 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 722 | } |
| 723 | |
| 724 | static_library("javascript") { |
| 725 | sources = [ |
| 726 | "fpdfsdk/include/javascript/app.h", |
| 727 | "fpdfsdk/include/javascript/color.h", |
| 728 | "fpdfsdk/include/javascript/console.h", |
| 729 | "fpdfsdk/include/javascript/Consts.h", |
| 730 | "fpdfsdk/include/javascript/Document.h", |
| 731 | "fpdfsdk/include/javascript/event.h", |
| 732 | "fpdfsdk/include/javascript/Field.h", |
| 733 | "fpdfsdk/include/javascript/global.h", |
| 734 | "fpdfsdk/include/javascript/Icon.h", |
| 735 | "fpdfsdk/include/javascript/IJavaScript.h", |
| 736 | "fpdfsdk/include/javascript/JavaScript.h", |
| 737 | "fpdfsdk/include/javascript/JS_Console.h", |
| 738 | "fpdfsdk/include/javascript/JS_Context.h", |
| 739 | "fpdfsdk/include/javascript/JS_Define.h", |
| 740 | "fpdfsdk/include/javascript/JS_EventHandler.h", |
| 741 | "fpdfsdk/include/javascript/JS_GlobalData.h", |
| 742 | "fpdfsdk/include/javascript/JS_Module.h", |
| 743 | "fpdfsdk/include/javascript/JS_Object.h", |
| 744 | "fpdfsdk/include/javascript/JS_Runtime.h", |
| 745 | "fpdfsdk/include/javascript/JS_Value.h", |
| 746 | "fpdfsdk/include/javascript/PublicMethods.h", |
| 747 | "fpdfsdk/include/javascript/report.h", |
| 748 | "fpdfsdk/include/javascript/resource.h", |
| 749 | "fpdfsdk/include/javascript/util.h", |
| 750 | "fpdfsdk/src/javascript/app.cpp", |
| 751 | "fpdfsdk/src/javascript/color.cpp", |
| 752 | "fpdfsdk/src/javascript/console.cpp", |
| 753 | "fpdfsdk/src/javascript/Consts.cpp", |
| 754 | "fpdfsdk/src/javascript/Document.cpp", |
| 755 | "fpdfsdk/src/javascript/event.cpp", |
| 756 | "fpdfsdk/src/javascript/Field.cpp", |
| 757 | "fpdfsdk/src/javascript/global.cpp", |
| 758 | "fpdfsdk/src/javascript/Icon.cpp", |
| 759 | "fpdfsdk/src/javascript/JS_Context.cpp", |
| 760 | "fpdfsdk/src/javascript/JS_EventHandler.cpp", |
| 761 | "fpdfsdk/src/javascript/JS_GlobalData.cpp", |
| 762 | "fpdfsdk/src/javascript/JS_Object.cpp", |
| 763 | "fpdfsdk/src/javascript/JS_Runtime.cpp", |
| 764 | "fpdfsdk/src/javascript/JS_Value.cpp", |
| 765 | "fpdfsdk/src/javascript/PublicMethods.cpp", |
| 766 | "fpdfsdk/src/javascript/report.cpp", |
| 767 | "fpdfsdk/src/javascript/util.cpp", |
| 768 | ] |
| 769 | |
| 770 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 771 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 772 | include_dirs = [ |
Jochen Eisinger | 3fb18f4 | 2014-07-17 08:46:45 +0200 | [diff] [blame] | 773 | "//v8", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 774 | "//v8/include", |
| 775 | ] |
Brett Wilson | 7a649fe | 2014-09-24 15:32:49 -0700 | [diff] [blame] | 776 | |
| 777 | public_deps = [ |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 778 | "//v8", |
Brett Wilson | 7a649fe | 2014-09-24 15:32:49 -0700 | [diff] [blame] | 779 | ] |
| 780 | deps = [ |
Brett Wilson | e6e40ab | 2014-09-04 13:48:16 -0700 | [diff] [blame] | 781 | "//v8:v8_libplatform", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 782 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 783 | } |
| 784 | |
| 785 | static_library("jsapi") { |
| 786 | sources = [ |
| 787 | "fpdfsdk/include/jsapi/fxjs_v8.h", |
| 788 | "fpdfsdk/src/jsapi/fxjs_v8.cpp", |
| 789 | ] |
| 790 | |
| 791 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 792 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 793 | include_dirs = [ |
Jochen Eisinger | 3fb18f4 | 2014-07-17 08:46:45 +0200 | [diff] [blame] | 794 | "//v8", |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 795 | "//v8/include", |
| 796 | ] |
Brett Wilson | 7a649fe | 2014-09-24 15:32:49 -0700 | [diff] [blame] | 797 | |
| 798 | public_deps = [ |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 799 | "//v8", |
| 800 | ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | static_library("formfiller") { |
| 804 | sources = [ |
| 805 | "fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h", |
| 806 | "fpdfsdk/include/formfiller/FFL_CheckBox.h", |
| 807 | "fpdfsdk/include/formfiller/FFL_ComboBox.h", |
| 808 | "fpdfsdk/include/formfiller/FFL_FormFiller.h", |
| 809 | "fpdfsdk/include/formfiller/FFL_IFormFiller.h", |
| 810 | "fpdfsdk/include/formfiller/FFL_ListBox.h", |
| 811 | "fpdfsdk/include/formfiller/FFL_Notify.h", |
| 812 | "fpdfsdk/include/formfiller/FFL_PushButton.h", |
| 813 | "fpdfsdk/include/formfiller/FFL_RadioButton.h", |
| 814 | "fpdfsdk/include/formfiller/FFL_TextField.h", |
| 815 | "fpdfsdk/include/formfiller/FFL_Utils.h", |
| 816 | "fpdfsdk/include/formfiller/FormFiller.h", |
| 817 | "fpdfsdk/src/formfiller/FFL_CBA_Fontmap.cpp", |
| 818 | "fpdfsdk/src/formfiller/FFL_CheckBox.cpp", |
| 819 | "fpdfsdk/src/formfiller/FFL_ComboBox.cpp", |
| 820 | "fpdfsdk/src/formfiller/FFL_FormFiller.cpp", |
| 821 | "fpdfsdk/src/formfiller/FFL_IFormFiller.cpp", |
| 822 | "fpdfsdk/src/formfiller/FFL_ListBox.cpp", |
| 823 | "fpdfsdk/src/formfiller/FFL_Notify.cpp", |
| 824 | "fpdfsdk/src/formfiller/FFL_PushButton.cpp", |
| 825 | "fpdfsdk/src/formfiller/FFL_RadioButton.cpp", |
| 826 | "fpdfsdk/src/formfiller/FFL_TextField.cpp", |
| 827 | "fpdfsdk/src/formfiller/FFL_Utils.cpp", |
| 828 | ] |
| 829 | configs -= [ "//build/config/compiler:chromium_code" ] |
John Abd-El-Malek | d68f9a3 | 2014-06-05 12:45:33 -0700 | [diff] [blame] | 830 | configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 831 | } |