Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 1 | { |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 2 | "variables": { |
| 3 | "pdf_enable_v8%": 1, |
| 4 | }, |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 5 | "target_defaults": { |
| 6 | "defines": [ |
| 7 | "PDF_ENABLE_XFA", |
| 8 | ], |
Tom Sepez | 1a87cc3 | 2016-03-04 11:58:02 -0800 | [diff] [blame] | 9 | 'msvs_disabled_warnings': [ |
| 10 | 4005, 4018, 4146, 4333, 4345, 4267, |
| 11 | # TODO(thestig): Fix all instances, remove this, pdfium:29 |
| 12 | 4245, 4310, 4389, 4701, 4702, 4706, 4800, |
| 13 | ], |
Tom Sepez | c91f42a | 2016-03-04 13:23:40 -0800 | [diff] [blame] | 14 | 'variables': { |
| 15 | 'clang_warning_flags': [ |
| 16 | # TODO(thestig): Fix all instances, remove this, pdfium:29 |
| 17 | '-Wno-sign-compare', |
| 18 | ], |
| 19 | # Make sure Chromium's build/common.gypi doesn't re-add the flag on linux. |
| 20 | 'cflags_cc!': [ '-Wsign-compare' ], |
| 21 | }, |
Tom Sepez | a8a39e2 | 2015-10-12 15:47:07 -0700 | [diff] [blame] | 22 | }, |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 23 | "targets":[ |
| 24 | { |
| 25 | "target_name":"xfa", |
| 26 | "type":"static_library", |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 27 | 'include_dirs': [ |
Lei Zhang | 8241df7 | 2015-11-06 14:38:48 -0800 | [diff] [blame] | 28 | # This is implicit in GN. |
| 29 | '<(DEPTH)', |
| 30 | '.', |
Bo Xu | d66f592 | 2014-12-19 15:42:10 -0800 | [diff] [blame] | 31 | 'third_party/freetype/include', |
Oliver Chang | cec3f68 | 2015-11-05 16:00:40 -0800 | [diff] [blame] | 32 | 'third_party/freetype/include/freetype', |
Bo Xu | d66f592 | 2014-12-19 15:42:10 -0800 | [diff] [blame] | 33 | ], |
| 34 | 'defines' : [ |
| 35 | 'FT2_BUILD_LIBRARY', |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 36 | ], |
| 37 | "sources":[ |
dsinclair | 7222ea6 | 2016-04-06 14:33:07 -0700 | [diff] [blame] | 38 | "xfa/fxfa/include/fxfa.h", |
| 39 | "xfa/fxfa/include/fxfa_basic.h", |
| 40 | "xfa/fxfa/include/fxfa_widget.h", |
| 41 | "xfa/fxfa/include/xfa_checksum.h", |
| 42 | "xfa/fxfa/include/xfa_ffapp.h", |
| 43 | "xfa/fxfa/include/xfa_ffdoc.h", |
| 44 | "xfa/fxfa/include/xfa_ffdochandler.h", |
| 45 | "xfa/fxfa/include/xfa_ffdocview.h", |
| 46 | "xfa/fxfa/include/xfa_ffpageview.h", |
| 47 | "xfa/fxfa/include/xfa_ffwidget.h", |
| 48 | "xfa/fxfa/include/xfa_ffwidgethandler.h", |
| 49 | "xfa/fxfa/include/xfa_fontmgr.h", |
| 50 | "xfa/fxfa/include/xfa_rendercontext.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 51 | "xfa/fde/css/fde_css.h", |
| 52 | "xfa/fde/css/fde_csscache.cpp", |
| 53 | "xfa/fde/css/fde_csscache.h", |
| 54 | "xfa/fde/css/fde_cssdatatable.cpp", |
| 55 | "xfa/fde/css/fde_cssdatatable.h", |
| 56 | "xfa/fde/css/fde_cssdeclaration.cpp", |
| 57 | "xfa/fde/css/fde_cssdeclaration.h", |
| 58 | "xfa/fde/css/fde_cssstyleselector.cpp", |
| 59 | "xfa/fde/css/fde_cssstyleselector.h", |
| 60 | "xfa/fde/css/fde_cssstylesheet.cpp", |
| 61 | "xfa/fde/css/fde_cssstylesheet.h", |
| 62 | "xfa/fde/css/fde_csssyntax.cpp", |
| 63 | "xfa/fde/css/fde_csssyntax.h", |
| 64 | "xfa/fde/fde_brush.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 65 | "xfa/fde/fde_renderdevice.h", |
| 66 | "xfa/fde/fde_gedevice.cpp", |
| 67 | "xfa/fde/fde_gedevice.h", |
| 68 | "xfa/fde/fde_geobject.cpp", |
| 69 | "xfa/fde/fde_geobject.h", |
| 70 | "xfa/fde/fde_image.h", |
| 71 | "xfa/fde/fde_iterator.cpp", |
| 72 | "xfa/fde/fde_iterator.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 73 | "xfa/fde/fde_object.h", |
| 74 | "xfa/fde/fde_path.h", |
| 75 | "xfa/fde/fde_pen.h", |
| 76 | "xfa/fde/fde_render.cpp", |
| 77 | "xfa/fde/fde_render.h", |
| 78 | "xfa/fde/tto/fde_textout.cpp", |
| 79 | "xfa/fde/tto/fde_textout.h", |
| 80 | "xfa/fde/xml/fde_xml.h", |
| 81 | "xfa/fde/xml/fde_xml_imp.cpp", |
| 82 | "xfa/fde/xml/fde_xml_imp.h", |
| 83 | "xfa/fee/fde_txtedtbuf.cpp", |
| 84 | "xfa/fee/fde_txtedtbuf.h", |
| 85 | "xfa/fee/fde_txtedtengine.cpp", |
| 86 | "xfa/fee/fde_txtedtengine.h", |
| 87 | "xfa/fee/fde_txtedtpage.cpp", |
| 88 | "xfa/fee/fde_txtedtpage.h", |
| 89 | "xfa/fee/fde_txtedtparag.cpp", |
| 90 | "xfa/fee/fde_txtedtparag.h", |
| 91 | "xfa/fee/fx_wordbreak/fx_wordbreak.h", |
| 92 | "xfa/fee/fx_wordbreak/fx_wordbreakdata.cpp", |
| 93 | "xfa/fee/fx_wordbreak/fx_wordbreak_impl.cpp", |
| 94 | "xfa/fee/fx_wordbreak/fx_wordbreak_impl.h", |
| 95 | "xfa/fee/ifde_txtedtbuf.h", |
| 96 | "xfa/fee/ifde_txtedtengine.h", |
| 97 | "xfa/fee/ifde_txtedtpage.h", |
| 98 | "xfa/fgas/crt/fgas_algorithm.cpp", |
| 99 | "xfa/fgas/crt/fgas_algorithm.h", |
| 100 | "xfa/fgas/crt/fgas_codepage.cpp", |
| 101 | "xfa/fgas/crt/fgas_codepage.h", |
| 102 | "xfa/fgas/crt/fgas_encode.cpp", |
| 103 | "xfa/fgas/crt/fgas_language.h", |
| 104 | "xfa/fgas/crt/fgas_memory.cpp", |
| 105 | "xfa/fgas/crt/fgas_memory.h", |
| 106 | "xfa/fgas/crt/fgas_stream.cpp", |
| 107 | "xfa/fgas/crt/fgas_stream.h", |
| 108 | "xfa/fgas/crt/fgas_system.cpp", |
| 109 | "xfa/fgas/crt/fgas_system.h", |
| 110 | "xfa/fgas/crt/fgas_utils.cpp", |
| 111 | "xfa/fgas/crt/fgas_utils.h", |
| 112 | "xfa/fgas/font/fgas_font.h", |
| 113 | "xfa/fgas/font/fgas_fontutils.cpp", |
| 114 | "xfa/fgas/font/fgas_fontutils.h", |
| 115 | "xfa/fgas/font/fgas_gefont.cpp", |
| 116 | "xfa/fgas/font/fgas_gefont.h", |
| 117 | "xfa/fgas/font/fgas_stdfontmgr.cpp", |
| 118 | "xfa/fgas/font/fgas_stdfontmgr.h", |
| 119 | "xfa/fgas/layout/fgas_linebreak.cpp", |
| 120 | "xfa/fgas/layout/fgas_linebreak.h", |
| 121 | "xfa/fgas/layout/fgas_rtfbreak.cpp", |
| 122 | "xfa/fgas/layout/fgas_rtfbreak.h", |
| 123 | "xfa/fgas/layout/fgas_textbreak.cpp", |
| 124 | "xfa/fgas/layout/fgas_textbreak.h", |
| 125 | "xfa/fgas/layout/fgas_unicode.cpp", |
| 126 | "xfa/fgas/layout/fgas_unicode.h", |
| 127 | "xfa/fgas/localization/fgas_datetime.cpp", |
| 128 | "xfa/fgas/localization/fgas_datetime.h", |
| 129 | "xfa/fgas/localization/fgas_locale.cpp", |
| 130 | "xfa/fgas/localization/fgas_locale.h", |
| 131 | "xfa/fgas/localization/fgas_localeimp.h", |
| 132 | "xfa/fgas/localization/fgas_localemgr.cpp", |
| 133 | "xfa/fgas/localization/fgas_localemgr.h", |
| 134 | "xfa/fgas/xml/fgas_sax.h", |
| 135 | "xfa/fgas/xml/fgas_sax_imp.cpp", |
| 136 | "xfa/fgas/xml/fgas_sax_imp.h", |
| 137 | "xfa/fwl/basewidget/fwl_barcodeimp.cpp", |
| 138 | "xfa/fwl/basewidget/fwl_barcodeimp.h", |
| 139 | "xfa/fwl/basewidget/fwl_caretimp.cpp", |
| 140 | "xfa/fwl/basewidget/fwl_caretimp.h", |
| 141 | "xfa/fwl/basewidget/fwl_checkboximp.cpp", |
| 142 | "xfa/fwl/basewidget/fwl_checkboximp.h", |
| 143 | "xfa/fwl/basewidget/fwl_comboboximp.cpp", |
| 144 | "xfa/fwl/basewidget/fwl_comboboximp.h", |
| 145 | "xfa/fwl/basewidget/fwl_datetimepickerimp.cpp", |
| 146 | "xfa/fwl/basewidget/fwl_datetimepickerimp.h", |
| 147 | "xfa/fwl/basewidget/fwl_editimp.cpp", |
| 148 | "xfa/fwl/basewidget/fwl_editimp.h", |
| 149 | "xfa/fwl/basewidget/fwl_formproxyimp.cpp", |
| 150 | "xfa/fwl/basewidget/fwl_formproxyimp.h", |
| 151 | "xfa/fwl/basewidget/fwl_listboximp.cpp", |
| 152 | "xfa/fwl/basewidget/fwl_listboximp.h", |
| 153 | "xfa/fwl/basewidget/fwl_monthcalendarimp.cpp", |
| 154 | "xfa/fwl/basewidget/fwl_monthcalendarimp.h", |
| 155 | "xfa/fwl/basewidget/fwl_pictureboximp.cpp", |
| 156 | "xfa/fwl/basewidget/fwl_pictureboximp.h", |
| 157 | "xfa/fwl/basewidget/fwl_pushbuttonimp.cpp", |
| 158 | "xfa/fwl/basewidget/fwl_pushbuttonimp.h", |
| 159 | "xfa/fwl/basewidget/fwl_scrollbarimp.cpp", |
| 160 | "xfa/fwl/basewidget/fwl_scrollbarimp.h", |
| 161 | "xfa/fwl/basewidget/fwl_spinbuttonimp.cpp", |
| 162 | "xfa/fwl/basewidget/fwl_spinbuttonimp.h", |
| 163 | "xfa/fwl/basewidget/fwl_tooltipctrlimp.cpp", |
| 164 | "xfa/fwl/basewidget/fwl_tooltipctrlimp.h", |
| 165 | "xfa/fwl/basewidget/fxmath_barcodeimp.cpp", |
| 166 | "xfa/fwl/basewidget/fxmath_barcodeimp.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 167 | "xfa/fwl/basewidget/ifwl_barcode.h", |
| 168 | "xfa/fwl/basewidget/ifwl_caret.h", |
| 169 | "xfa/fwl/basewidget/ifwl_checkbox.h", |
| 170 | "xfa/fwl/basewidget/ifwl_combobox.h", |
| 171 | "xfa/fwl/basewidget/ifwl_datetimepicker.h", |
| 172 | "xfa/fwl/basewidget/ifwl_edit.h", |
| 173 | "xfa/fwl/basewidget/ifwl_listbox.h", |
| 174 | "xfa/fwl/basewidget/ifwl_monthcalendar.h", |
| 175 | "xfa/fwl/basewidget/ifwl_picturebox.h", |
| 176 | "xfa/fwl/basewidget/ifwl_pushbutton.h", |
| 177 | "xfa/fwl/basewidget/ifwl_scrollbar.h", |
| 178 | "xfa/fwl/basewidget/ifwl_spinbutton.h", |
| 179 | "xfa/fwl/basewidget/ifwl_tooltip.h", |
| 180 | "xfa/fwl/basewidget/ifx_barcode.h", |
| 181 | "xfa/fwl/core/cfwl_event.h", |
| 182 | "xfa/fwl/core/cfwl_note.h", |
| 183 | "xfa/fwl/core/cfwl_message.h", |
| 184 | "xfa/fwl/core/cfwl_themebackground.h", |
| 185 | "xfa/fwl/core/cfwl_themepart.h", |
| 186 | "xfa/fwl/core/cfwl_themetext.h", |
| 187 | "xfa/fwl/core/cfwl_widgetimpproperties.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 188 | "xfa/fwl/core/fwl_appimp.cpp", |
| 189 | "xfa/fwl/core/fwl_appimp.h", |
| 190 | "xfa/fwl/core/fwl_contentimp.cpp", |
| 191 | "xfa/fwl/core/fwl_contentimp.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 192 | "xfa/fwl/core/fwl_error.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 193 | "xfa/fwl/core/fwl_formimp.cpp", |
| 194 | "xfa/fwl/core/fwl_formimp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 195 | "xfa/fwl/core/fwl_noteimp.cpp", |
| 196 | "xfa/fwl/core/fwl_noteimp.h", |
| 197 | "xfa/fwl/core/fwl_panelimp.cpp", |
| 198 | "xfa/fwl/core/fwl_panelimp.h", |
| 199 | "xfa/fwl/core/fwl_sdadapterimp.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 200 | "xfa/fwl/core/fwl_sdadapterimp.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 201 | "xfa/fwl/core/fwl_targetimp.cpp", |
| 202 | "xfa/fwl/core/fwl_targetimp.h", |
| 203 | "xfa/fwl/core/fwl_threadimp.cpp", |
| 204 | "xfa/fwl/core/fwl_threadimp.h", |
| 205 | "xfa/fwl/core/fwl_timerimp.cpp", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 206 | "xfa/fwl/core/fwl_widgetdef.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 207 | "xfa/fwl/core/fwl_widgetimp.cpp", |
| 208 | "xfa/fwl/core/fwl_widgetimp.h", |
| 209 | "xfa/fwl/core/fwl_widgetmgrimp.cpp", |
| 210 | "xfa/fwl/core/fwl_widgetmgrimp.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 211 | "xfa/fwl/core/ifwl_adapternative.h", |
| 212 | "xfa/fwl/core/ifwl_adapterthreadmgr.h", |
| 213 | "xfa/fwl/core/ifwl_adapterwidgetmgr.h", |
| 214 | "xfa/fwl/core/ifwl_app.h", |
| 215 | "xfa/fwl/core/ifwl_content.h", |
| 216 | "xfa/fwl/core/ifwl_custom.h", |
| 217 | "xfa/fwl/core/ifwl_custompanel.h", |
| 218 | "xfa/fwl/core/ifwl_dataprovider.h", |
| 219 | "xfa/fwl/core/ifwl_form.h", |
Dan Sinclair | 398a43d | 2016-03-23 15:51:01 -0400 | [diff] [blame] | 220 | "xfa/fwl/core/ifwl_notedriver.h", |
| 221 | "xfa/fwl/core/ifwl_noteloop.h", |
| 222 | "xfa/fwl/core/ifwl_notethread.h", |
| 223 | "xfa/fwl/core/ifwl_panel.h", |
| 224 | "xfa/fwl/core/ifwl_proxy.h", |
| 225 | "xfa/fwl/core/ifwl_target.h", |
| 226 | "xfa/fwl/core/ifwl_themeprovider.h", |
| 227 | "xfa/fwl/core/ifwl_thread.h", |
| 228 | "xfa/fwl/core/ifwl_timer.h", |
| 229 | "xfa/fwl/core/ifwl_tooltiptarget.h", |
| 230 | "xfa/fwl/core/ifwl_widget.h", |
| 231 | "xfa/fwl/core/ifwl_widgetdelegate.h", |
| 232 | "xfa/fwl/core/ifwl_widgetmgr.h", |
| 233 | "xfa/fwl/core/ifwl_widgetmgrdelegate.h", |
| 234 | "xfa/fwl/core/include/ifwl_adaptertimermgr.h", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 235 | "xfa/fwl/lightwidget/cfwl_app.cpp", |
| 236 | "xfa/fwl/lightwidget/cfwl_app.h", |
| 237 | "xfa/fwl/lightwidget/cfwl_barcode.cpp", |
| 238 | "xfa/fwl/lightwidget/cfwl_barcode.h", |
| 239 | "xfa/fwl/lightwidget/cfwl_caret.cpp", |
| 240 | "xfa/fwl/lightwidget/cfwl_caret.h", |
| 241 | "xfa/fwl/lightwidget/cfwl_checkbox.cpp", |
| 242 | "xfa/fwl/lightwidget/cfwl_checkbox.h", |
| 243 | "xfa/fwl/lightwidget/cfwl_combobox.cpp", |
| 244 | "xfa/fwl/lightwidget/cfwl_combobox.h", |
| 245 | "xfa/fwl/lightwidget/cfwl_datetimepicker.cpp", |
| 246 | "xfa/fwl/lightwidget/cfwl_datetimepicker.h", |
| 247 | "xfa/fwl/lightwidget/cfwl_edit.cpp", |
| 248 | "xfa/fwl/lightwidget/cfwl_edit.h", |
| 249 | "xfa/fwl/lightwidget/cfwl_listbox.cpp", |
| 250 | "xfa/fwl/lightwidget/cfwl_listbox.h", |
| 251 | "xfa/fwl/lightwidget/cfwl_picturebox.cpp", |
| 252 | "xfa/fwl/lightwidget/cfwl_picturebox.h", |
| 253 | "xfa/fwl/lightwidget/cfwl_pushbutton.cpp", |
| 254 | "xfa/fwl/lightwidget/cfwl_pushbutton.h", |
| 255 | "xfa/fwl/lightwidget/cfwl_scrollbar.cpp", |
| 256 | "xfa/fwl/lightwidget/cfwl_scrollbar.h", |
| 257 | "xfa/fwl/lightwidget/cfwl_theme.cpp", |
| 258 | "xfa/fwl/lightwidget/cfwl_theme.h", |
| 259 | "xfa/fwl/lightwidget/cfwl_tooltip.cpp", |
| 260 | "xfa/fwl/lightwidget/cfwl_tooltip.h", |
| 261 | "xfa/fwl/lightwidget/cfwl_widget.cpp", |
| 262 | "xfa/fwl/lightwidget/cfwl_widget.h", |
| 263 | "xfa/fwl/lightwidget/cfwl_widgetdelegate.cpp", |
| 264 | "xfa/fwl/lightwidget/cfwl_widgetdelegate.h", |
| 265 | "xfa/fwl/lightwidget/cfwl_widgetproperties.cpp", |
caryclark | 5838dbd | 2016-04-04 10:00:54 -0700 | [diff] [blame] | 266 | "xfa/fwl/lightwidget/cfwl_widgetproperties.h", |
dsinclair | 7f432a1 | 2016-03-29 12:38:01 -0700 | [diff] [blame] | 267 | "xfa/fwl/theme/cfwl_barcodetp.cpp", |
| 268 | "xfa/fwl/theme/cfwl_barcodetp.h", |
| 269 | "xfa/fwl/theme/cfwl_carettp.cpp", |
| 270 | "xfa/fwl/theme/cfwl_carettp.h", |
| 271 | "xfa/fwl/theme/cfwl_checkboxtp.cpp", |
| 272 | "xfa/fwl/theme/cfwl_checkboxtp.h", |
| 273 | "xfa/fwl/theme/cfwl_comboboxtp.cpp", |
| 274 | "xfa/fwl/theme/cfwl_comboboxtp.h", |
| 275 | "xfa/fwl/theme/cfwl_datetimepickedtp.cpp", |
| 276 | "xfa/fwl/theme/cfwl_datetimepickertp.h", |
| 277 | "xfa/fwl/theme/cfwl_edittp.cpp", |
| 278 | "xfa/fwl/theme/cfwl_edittp.h", |
| 279 | "xfa/fwl/theme/cfwl_formtp.cpp", |
| 280 | "xfa/fwl/theme/cfwl_formtp.h", |
| 281 | "xfa/fwl/theme/cfwl_listboxtp.cpp", |
| 282 | "xfa/fwl/theme/cfwl_listboxtp.h", |
| 283 | "xfa/fwl/theme/cfwl_monthcalendartp.cpp", |
| 284 | "xfa/fwl/theme/cfwl_monthcalendartp.h", |
| 285 | "xfa/fwl/theme/cfwl_pictureboxtp.cpp", |
| 286 | "xfa/fwl/theme/cfwl_pictureboxtp.h", |
| 287 | "xfa/fwl/theme/cfwl_pushbuttontp.cpp", |
| 288 | "xfa/fwl/theme/cfwl_pushbuttontp.h", |
| 289 | "xfa/fwl/theme/cfwl_scrollbartp.cpp", |
| 290 | "xfa/fwl/theme/cfwl_scrollbartp.h", |
| 291 | "xfa/fwl/theme/cfwl_utils.h", |
| 292 | "xfa/fwl/theme/cfwl_widgettp.cpp", |
| 293 | "xfa/fwl/theme/cfwl_widgettp.h", |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 294 | "xfa/fxbarcode/cbc_code128.cpp", |
| 295 | "xfa/fxbarcode/cbc_code128.h", |
| 296 | "xfa/fxbarcode/cbc_code39.cpp", |
| 297 | "xfa/fxbarcode/cbc_code39.h", |
| 298 | "xfa/fxbarcode/cbc_codabar.cpp", |
| 299 | "xfa/fxbarcode/cbc_codabar.h", |
| 300 | "xfa/fxbarcode/cbc_codebase.cpp", |
| 301 | "xfa/fxbarcode/cbc_codebase.h", |
| 302 | "xfa/fxbarcode/cbc_datamatrix.cpp", |
| 303 | "xfa/fxbarcode/cbc_datamatrix.h", |
| 304 | "xfa/fxbarcode/cbc_ean8.cpp", |
dan sinclair | 2e8798f | 2016-03-24 12:56:07 -0400 | [diff] [blame] | 305 | "xfa/fxbarcode/cbc_ean8.h", |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 306 | "xfa/fxbarcode/cbc_ean13.cpp", |
| 307 | "xfa/fxbarcode/cbc_ean13.h", |
| 308 | "xfa/fxbarcode/cbc_onecode.cpp", |
| 309 | "xfa/fxbarcode/cbc_onecode.h", |
| 310 | "xfa/fxbarcode/cbc_pdf417i.cpp", |
| 311 | "xfa/fxbarcode/cbc_pdf417i.h", |
| 312 | "xfa/fxbarcode/cbc_qrcode.cpp", |
| 313 | "xfa/fxbarcode/cbc_qrcode.h", |
| 314 | "xfa/fxbarcode/cbc_upca.cpp", |
| 315 | "xfa/fxbarcode/cbc_upca.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 316 | "xfa/fxbarcode/common/BC_CommonBitArray.cpp", |
| 317 | "xfa/fxbarcode/common/BC_CommonBitMatrix.cpp", |
| 318 | "xfa/fxbarcode/common/BC_CommonBitSource.cpp", |
| 319 | "xfa/fxbarcode/common/BC_CommonByteArray.cpp", |
| 320 | "xfa/fxbarcode/common/BC_CommonByteMatrix.cpp", |
| 321 | "xfa/fxbarcode/common/BC_CommonCharacterSetECI.cpp", |
| 322 | "xfa/fxbarcode/common/BC_CommonDecoderResult.cpp", |
| 323 | "xfa/fxbarcode/common/BC_CommonECI.cpp", |
| 324 | "xfa/fxbarcode/common/BC_CommonPerspectiveTransform.cpp", |
| 325 | "xfa/fxbarcode/common/BC_CommonBitArray.h", |
| 326 | "xfa/fxbarcode/common/BC_CommonBitMatrix.h", |
| 327 | "xfa/fxbarcode/common/BC_CommonBitSource.h", |
| 328 | "xfa/fxbarcode/common/BC_CommonByteArray.h", |
| 329 | "xfa/fxbarcode/common/BC_CommonByteMatrix.h", |
| 330 | "xfa/fxbarcode/common/BC_CommonCharacterSetECI.h", |
| 331 | "xfa/fxbarcode/common/BC_CommonDecoderResult.h", |
| 332 | "xfa/fxbarcode/common/BC_CommonECI.h", |
| 333 | "xfa/fxbarcode/common/BC_CommonPerspectiveTransform.h", |
| 334 | "xfa/fxbarcode/common/BC_WhiteRectangleDetector.cpp", |
| 335 | "xfa/fxbarcode/common/BC_WhiteRectangleDetector.h", |
| 336 | "xfa/fxbarcode/common/BC_GlobalHistogramBinarizer.cpp", |
| 337 | "xfa/fxbarcode/common/BC_GlobalHistogramBinarizer.h", |
| 338 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.cpp", |
| 339 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonDecoder.cpp", |
| 340 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.cpp", |
| 341 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.cpp", |
| 342 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h", |
| 343 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonDecoder.h", |
| 344 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256.h", |
| 345 | "xfa/fxbarcode/common/reedsolomon/BC_ReedSolomonGF256Poly.h", |
| 346 | "xfa/fxbarcode/datamatrix/BC_DataMatrixBitMatrixParser.cpp", |
| 347 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDataBlock.cpp", |
| 348 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDecodedBitStreamParser.cpp", |
| 349 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDecoder.cpp", |
| 350 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.cpp", |
| 351 | "xfa/fxbarcode/datamatrix/BC_DataMatrixReader.cpp", |
| 352 | "xfa/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.cpp", |
| 353 | "xfa/fxbarcode/datamatrix/BC_DataMatrixVersion.cpp", |
| 354 | "xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.cpp", |
| 355 | "xfa/fxbarcode/datamatrix/BC_DataMatrixBitMatrixParser.h", |
| 356 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDataBlock.h", |
| 357 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDecodedBitStreamParser.h", |
| 358 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDecoder.h", |
| 359 | "xfa/fxbarcode/datamatrix/BC_DataMatrixDetector.h", |
| 360 | "xfa/fxbarcode/datamatrix/BC_DataMatrixReader.h", |
| 361 | "xfa/fxbarcode/datamatrix/BC_DataMatrixSymbolInfo144.h", |
| 362 | "xfa/fxbarcode/datamatrix/BC_DataMatrixVersion.h", |
| 363 | "xfa/fxbarcode/datamatrix/BC_DataMatrixWriter.h", |
| 364 | "xfa/fxbarcode/datamatrix/BC_ASCIIEncoder.cpp", |
| 365 | "xfa/fxbarcode/datamatrix/BC_Base256Encoder.cpp", |
| 366 | "xfa/fxbarcode/datamatrix/BC_C40Encoder.cpp", |
| 367 | "xfa/fxbarcode/datamatrix/BC_EdifactEncoder.cpp", |
| 368 | "xfa/fxbarcode/datamatrix/BC_EncoderContext.cpp", |
| 369 | "xfa/fxbarcode/datamatrix/BC_ErrorCorrection.cpp", |
| 370 | "xfa/fxbarcode/datamatrix/BC_SymbolInfo.cpp", |
| 371 | "xfa/fxbarcode/datamatrix/BC_SymbolShapeHint.cpp", |
| 372 | "xfa/fxbarcode/datamatrix/BC_TextEncoder.cpp", |
| 373 | "xfa/fxbarcode/datamatrix/BC_X12Encoder.cpp", |
| 374 | "xfa/fxbarcode/datamatrix/BC_DefaultPlacement.cpp", |
| 375 | "xfa/fxbarcode/datamatrix/BC_Encoder.cpp", |
| 376 | "xfa/fxbarcode/datamatrix/BC_HighLevelEncoder.cpp", |
| 377 | "xfa/fxbarcode/datamatrix/BC_ASCIIEncoder.h", |
| 378 | "xfa/fxbarcode/datamatrix/BC_Base256Encoder.h", |
| 379 | "xfa/fxbarcode/datamatrix/BC_C40Encoder.h", |
| 380 | "xfa/fxbarcode/datamatrix/BC_EdifactEncoder.h", |
| 381 | "xfa/fxbarcode/datamatrix/BC_EncoderContext.h", |
| 382 | "xfa/fxbarcode/datamatrix/BC_ErrorCorrection.h", |
| 383 | "xfa/fxbarcode/datamatrix/BC_SymbolInfo.h", |
| 384 | "xfa/fxbarcode/datamatrix/BC_SymbolShapeHint.h", |
| 385 | "xfa/fxbarcode/datamatrix/BC_TextEncoder.h", |
| 386 | "xfa/fxbarcode/datamatrix/BC_X12Encoder.h", |
| 387 | "xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h", |
| 388 | "xfa/fxbarcode/datamatrix/BC_Encoder.h", |
| 389 | "xfa/fxbarcode/datamatrix/BC_HighLevelEncoder.h", |
Dan Sinclair | a98600a | 2016-03-21 15:15:56 -0400 | [diff] [blame] | 390 | "xfa/fxbarcode/include/BC_Library.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 391 | "xfa/fxbarcode/oned/BC_OnedCodaBarReader.cpp", |
| 392 | "xfa/fxbarcode/oned/BC_OnedCodaBarWriter.cpp", |
| 393 | "xfa/fxbarcode/oned/BC_OnedCode128Reader.cpp", |
| 394 | "xfa/fxbarcode/oned/BC_OnedCode128Writer.cpp", |
| 395 | "xfa/fxbarcode/oned/BC_OnedCode39Reader.cpp", |
| 396 | "xfa/fxbarcode/oned/BC_OnedCode39Writer.cpp", |
| 397 | "xfa/fxbarcode/oned/BC_OnedEAN13Reader.cpp", |
| 398 | "xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp", |
| 399 | "xfa/fxbarcode/oned/BC_OnedEAN8Reader.cpp", |
| 400 | "xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp", |
| 401 | "xfa/fxbarcode/oned/BC_OneDimReader.cpp", |
| 402 | "xfa/fxbarcode/oned/BC_OneDimWriter.cpp", |
| 403 | "xfa/fxbarcode/oned/BC_OneDReader.cpp", |
| 404 | "xfa/fxbarcode/oned/BC_OnedUPCAReader.cpp", |
| 405 | "xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp", |
| 406 | "xfa/fxbarcode/oned/BC_OnedCodaBarReader.h", |
| 407 | "xfa/fxbarcode/oned/BC_OnedCodaBarWriter.h", |
| 408 | "xfa/fxbarcode/oned/BC_OnedCode128Reader.h", |
| 409 | "xfa/fxbarcode/oned/BC_OnedCode128Writer.h", |
| 410 | "xfa/fxbarcode/oned/BC_OnedCode39Reader.h", |
| 411 | "xfa/fxbarcode/oned/BC_OnedCode39Writer.h", |
| 412 | "xfa/fxbarcode/oned/BC_OnedEAN13Reader.h", |
| 413 | "xfa/fxbarcode/oned/BC_OnedEAN13Writer.h", |
| 414 | "xfa/fxbarcode/oned/BC_OnedEAN8Reader.h", |
| 415 | "xfa/fxbarcode/oned/BC_OnedEAN8Writer.h", |
| 416 | "xfa/fxbarcode/oned/BC_OneDimReader.h", |
| 417 | "xfa/fxbarcode/oned/BC_OneDimWriter.h", |
| 418 | "xfa/fxbarcode/oned/BC_OneDReader.h", |
| 419 | "xfa/fxbarcode/oned/BC_OnedUPCAReader.h", |
| 420 | "xfa/fxbarcode/oned/BC_OnedUPCAWriter.h", |
| 421 | "xfa/fxbarcode/pdf417/BC_PDF417.cpp", |
| 422 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp", |
| 423 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp", |
| 424 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.cpp", |
| 425 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.cpp", |
| 426 | "xfa/fxbarcode/pdf417/BC_PDF417BoundingBox.cpp", |
| 427 | "xfa/fxbarcode/pdf417/BC_PDF417Codeword.cpp", |
| 428 | "xfa/fxbarcode/pdf417/BC_PDF417CodewordDecoder.cpp", |
| 429 | "xfa/fxbarcode/pdf417/BC_PDF417Common.cpp", |
| 430 | "xfa/fxbarcode/pdf417/BC_PDF417Compaction.cpp", |
| 431 | "xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp", |
| 432 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResult.cpp", |
| 433 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.cpp", |
| 434 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.cpp", |
| 435 | "xfa/fxbarcode/pdf417/BC_PDF417Detector.cpp", |
| 436 | "xfa/fxbarcode/pdf417/BC_PDF417DetectorResult.cpp", |
| 437 | "xfa/fxbarcode/pdf417/BC_PDF417Dimensions.cpp", |
| 438 | "xfa/fxbarcode/pdf417/BC_PDF417ECErrorCorrection.cpp", |
| 439 | "xfa/fxbarcode/pdf417/BC_PDF417ECModulusGF.cpp", |
| 440 | "xfa/fxbarcode/pdf417/BC_PDF417ECModulusPoly.cpp", |
| 441 | "xfa/fxbarcode/pdf417/BC_PDF417ErrorCorrection.cpp", |
| 442 | "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.cpp", |
| 443 | "xfa/fxbarcode/pdf417/BC_PDF417Reader.cpp", |
| 444 | "xfa/fxbarcode/pdf417/BC_PDF417ResultMetadata.cpp", |
| 445 | "xfa/fxbarcode/pdf417/BC_PDF417ScanningDecoder.cpp", |
| 446 | "xfa/fxbarcode/pdf417/BC_PDF417Writer.cpp", |
| 447 | "xfa/fxbarcode/pdf417/BC_PDF417.h", |
| 448 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h", |
| 449 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.h", |
| 450 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h", |
| 451 | "xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.h", |
| 452 | "xfa/fxbarcode/pdf417/BC_PDF417BoundingBox.h", |
| 453 | "xfa/fxbarcode/pdf417/BC_PDF417Codeword.h", |
| 454 | "xfa/fxbarcode/pdf417/BC_PDF417CodewordDecoder.h", |
| 455 | "xfa/fxbarcode/pdf417/BC_PDF417Common.h", |
| 456 | "xfa/fxbarcode/pdf417/BC_PDF417Compaction.h", |
| 457 | "xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.h", |
| 458 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResult.h", |
| 459 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultColumn.h", |
| 460 | "xfa/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.h", |
| 461 | "xfa/fxbarcode/pdf417/BC_PDF417Detector.h", |
| 462 | "xfa/fxbarcode/pdf417/BC_PDF417DetectorResult.h", |
| 463 | "xfa/fxbarcode/pdf417/BC_PDF417Dimensions.h", |
| 464 | "xfa/fxbarcode/pdf417/BC_PDF417ECErrorCorrection.h", |
| 465 | "xfa/fxbarcode/pdf417/BC_PDF417ECModulusGF.h", |
| 466 | "xfa/fxbarcode/pdf417/BC_PDF417ECModulusPoly.h", |
| 467 | "xfa/fxbarcode/pdf417/BC_PDF417ErrorCorrection.h", |
| 468 | "xfa/fxbarcode/pdf417/BC_PDF417HighLevelEncoder.h", |
| 469 | "xfa/fxbarcode/pdf417/BC_PDF417Reader.h", |
| 470 | "xfa/fxbarcode/pdf417/BC_PDF417ResultMetadata.h", |
| 471 | "xfa/fxbarcode/pdf417/BC_PDF417ScanningDecoder.h", |
| 472 | "xfa/fxbarcode/pdf417/BC_PDF417Writer.h", |
| 473 | "xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.cpp", |
| 474 | "xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.cpp", |
| 475 | "xfa/fxbarcode/qrcode/BC_QRBitMatrixParser.cpp", |
| 476 | "xfa/fxbarcode/qrcode/BC_QRCoder.cpp", |
| 477 | "xfa/fxbarcode/qrcode/BC_QRCoderBitVector.cpp", |
| 478 | "xfa/fxbarcode/qrcode/BC_QRCoderBlockPair.cpp", |
| 479 | "xfa/fxbarcode/qrcode/BC_QRCoderDecoder.cpp", |
| 480 | "xfa/fxbarcode/qrcode/BC_QRCodeReader.cpp", |
| 481 | "xfa/fxbarcode/qrcode/BC_QRCoderECB.cpp", |
| 482 | "xfa/fxbarcode/qrcode/BC_QRCoderECBlocks.cpp", |
| 483 | "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.cpp", |
| 484 | "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.cpp", |
| 485 | "xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.cpp", |
| 486 | "xfa/fxbarcode/qrcode/BC_QRCoderMaskUtil.cpp", |
| 487 | "xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp", |
| 488 | "xfa/fxbarcode/qrcode/BC_QRCoderMode.cpp", |
| 489 | "xfa/fxbarcode/qrcode/BC_QRCoderVersion.cpp", |
| 490 | "xfa/fxbarcode/qrcode/BC_QRCodeWriter.cpp", |
| 491 | "xfa/fxbarcode/qrcode/BC_QRDataBlock.cpp", |
| 492 | "xfa/fxbarcode/qrcode/BC_QRDataMask.cpp", |
| 493 | "xfa/fxbarcode/qrcode/BC_QRDecodedBitStreamParser.cpp", |
| 494 | "xfa/fxbarcode/qrcode/BC_QRDetector.cpp", |
| 495 | "xfa/fxbarcode/qrcode/BC_QRDetectorResult.cpp", |
| 496 | "xfa/fxbarcode/qrcode/BC_QRFinderPattern.cpp", |
| 497 | "xfa/fxbarcode/qrcode/BC_QRFinderPatternFinder.cpp", |
| 498 | "xfa/fxbarcode/qrcode/BC_QRGridSampler.cpp", |
| 499 | "xfa/fxbarcode/qrcode/BC_QRAlignmentPattern.h", |
| 500 | "xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.h", |
| 501 | "xfa/fxbarcode/qrcode/BC_QRBitMatrixParser.h", |
| 502 | "xfa/fxbarcode/qrcode/BC_QRCoder.h", |
| 503 | "xfa/fxbarcode/qrcode/BC_QRCoderBitVector.h", |
| 504 | "xfa/fxbarcode/qrcode/BC_QRCoderBlockPair.h", |
| 505 | "xfa/fxbarcode/qrcode/BC_QRCoderDecoder.h", |
| 506 | "xfa/fxbarcode/qrcode/BC_QRCodeReader.h", |
| 507 | "xfa/fxbarcode/qrcode/BC_QRCoderECB.h", |
| 508 | "xfa/fxbarcode/qrcode/BC_QRCoderECBlocks.h", |
| 509 | "xfa/fxbarcode/qrcode/BC_QRCoderEncoder.h", |
| 510 | "xfa/fxbarcode/qrcode/BC_QRCoderErrorCorrectionLevel.h", |
| 511 | "xfa/fxbarcode/qrcode/BC_QRCoderFormatInformation.h", |
| 512 | "xfa/fxbarcode/qrcode/BC_QRCoderMaskUtil.h", |
| 513 | "xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.h", |
| 514 | "xfa/fxbarcode/qrcode/BC_QRCoderMode.h", |
| 515 | "xfa/fxbarcode/qrcode/BC_QRCoderVersion.h", |
| 516 | "xfa/fxbarcode/qrcode/BC_QRCodeWriter.h", |
| 517 | "xfa/fxbarcode/qrcode/BC_QRDataBlock.h", |
| 518 | "xfa/fxbarcode/qrcode/BC_QRDataMask.h", |
| 519 | "xfa/fxbarcode/qrcode/BC_QRDecodedBitStreamParser.h", |
| 520 | "xfa/fxbarcode/qrcode/BC_QRDetector.h", |
| 521 | "xfa/fxbarcode/qrcode/BC_QRDetectorResult.h", |
| 522 | "xfa/fxbarcode/qrcode/BC_QRFinderPattern.h", |
| 523 | "xfa/fxbarcode/qrcode/BC_QRFinderPatternFinder.h", |
| 524 | "xfa/fxbarcode/qrcode/BC_QRGridSampler.h", |
| 525 | "xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp", |
| 526 | "xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 527 | "xfa/fxbarcode/BC_Binarizer.cpp", |
| 528 | "xfa/fxbarcode/BC_BinaryBitmap.cpp", |
| 529 | "xfa/fxbarcode/BC_BufferedImageLuminanceSource.cpp", |
| 530 | "xfa/fxbarcode/BC_Dimension.cpp", |
| 531 | "xfa/fxbarcode/BC_Library.cpp", |
| 532 | "xfa/fxbarcode/BC_LuminanceSource.cpp", |
| 533 | "xfa/fxbarcode/BC_Reader.cpp", |
| 534 | "xfa/fxbarcode/BC_ResultPoint.cpp", |
| 535 | "xfa/fxbarcode/BC_TwoDimWriter.cpp", |
| 536 | "xfa/fxbarcode/BC_UtilCodingConvert.cpp", |
| 537 | "xfa/fxbarcode/BC_UtilRSS.cpp", |
| 538 | "xfa/fxbarcode/BC_Utils.cpp", |
| 539 | "xfa/fxbarcode/BC_Writer.cpp", |
| 540 | "xfa/fxbarcode/BC_Binarizer.h", |
| 541 | "xfa/fxbarcode/BC_BinaryBitmap.h", |
| 542 | "xfa/fxbarcode/BC_BufferedImageLuminanceSource.h", |
| 543 | "xfa/fxbarcode/BC_DecoderResult.h", |
| 544 | "xfa/fxbarcode/BC_Dimension.h", |
| 545 | "xfa/fxbarcode/BC_LuminanceSource.h", |
| 546 | "xfa/fxbarcode/BC_Reader.h", |
| 547 | "xfa/fxbarcode/BC_ResultPoint.h", |
| 548 | "xfa/fxbarcode/BC_TwoDimWriter.h", |
| 549 | "xfa/fxbarcode/BC_UtilCodingConvert.h", |
| 550 | "xfa/fxbarcode/BC_UtilRSS.h", |
| 551 | "xfa/fxbarcode/BC_Writer.h", |
| 552 | "xfa/fxbarcode/utils.h", |
| 553 | "xfa/fxfa/app/xfa_checksum.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 554 | "xfa/fxfa/app/xfa_ffapp.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 555 | "xfa/fxfa/app/xfa_ffbarcode.cpp", |
| 556 | "xfa/fxfa/app/xfa_ffbarcode.h", |
| 557 | "xfa/fxfa/app/xfa_ffcheckbutton.cpp", |
| 558 | "xfa/fxfa/app/xfa_ffcheckbutton.h", |
| 559 | "xfa/fxfa/app/xfa_ffchoicelist.cpp", |
| 560 | "xfa/fxfa/app/xfa_ffchoicelist.h", |
| 561 | "xfa/fxfa/app/xfa_ffdoc.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 562 | "xfa/fxfa/app/xfa_ffdochandler.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 563 | "xfa/fxfa/app/xfa_ffdocview.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 564 | "xfa/fxfa/app/xfa_ffdraw.cpp", |
| 565 | "xfa/fxfa/app/xfa_ffdraw.h", |
| 566 | "xfa/fxfa/app/xfa_ffexclgroup.cpp", |
| 567 | "xfa/fxfa/app/xfa_ffexclgroup.h", |
| 568 | "xfa/fxfa/app/xfa_fffield.cpp", |
| 569 | "xfa/fxfa/app/xfa_fffield.h", |
| 570 | "xfa/fxfa/app/xfa_ffimage.cpp", |
| 571 | "xfa/fxfa/app/xfa_ffimage.h", |
| 572 | "xfa/fxfa/app/xfa_ffimageedit.cpp", |
| 573 | "xfa/fxfa/app/xfa_ffimageedit.h", |
| 574 | "xfa/fxfa/app/xfa_ffnotify.cpp", |
| 575 | "xfa/fxfa/app/xfa_ffnotify.h", |
| 576 | "xfa/fxfa/app/xfa_ffpageview.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 577 | "xfa/fxfa/app/xfa_ffpath.cpp", |
| 578 | "xfa/fxfa/app/xfa_ffpath.h", |
| 579 | "xfa/fxfa/app/xfa_ffpushbutton.cpp", |
| 580 | "xfa/fxfa/app/xfa_ffpushbutton.h", |
| 581 | "xfa/fxfa/app/xfa_ffsignature.cpp", |
| 582 | "xfa/fxfa/app/xfa_ffsignature.h", |
| 583 | "xfa/fxfa/app/xfa_ffsubform.cpp", |
| 584 | "xfa/fxfa/app/xfa_ffsubform.h", |
| 585 | "xfa/fxfa/app/xfa_fftext.cpp", |
| 586 | "xfa/fxfa/app/xfa_fftext.h", |
| 587 | "xfa/fxfa/app/xfa_fftextedit.cpp", |
| 588 | "xfa/fxfa/app/xfa_fftextedit.h", |
| 589 | "xfa/fxfa/app/xfa_ffwidget.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 590 | "xfa/fxfa/app/xfa_ffwidgetacc.cpp", |
| 591 | "xfa/fxfa/app/xfa_ffwidgetacc.h", |
| 592 | "xfa/fxfa/app/xfa_ffwidgethandler.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 593 | "xfa/fxfa/app/xfa_fontmgr.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 594 | "xfa/fxfa/app/xfa_fwladapter.cpp", |
| 595 | "xfa/fxfa/app/xfa_fwladapter.h", |
| 596 | "xfa/fxfa/app/xfa_fwltheme.cpp", |
| 597 | "xfa/fxfa/app/xfa_fwltheme.h", |
| 598 | "xfa/fxfa/app/xfa_rendercontext.cpp", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 599 | "xfa/fxfa/app/xfa_textlayout.cpp", |
| 600 | "xfa/fxfa/app/xfa_textlayout.h", |
| 601 | "xfa/fxfa/fm2js/xfa_error.cpp", |
| 602 | "xfa/fxfa/fm2js/xfa_error.h", |
| 603 | "xfa/fxfa/fm2js/xfa_expression.cpp", |
| 604 | "xfa/fxfa/fm2js/xfa_expression.h", |
| 605 | "xfa/fxfa/fm2js/xfa_fm2jsapi.cpp", |
| 606 | "xfa/fxfa/fm2js/xfa_fm2jsapi.h", |
| 607 | "xfa/fxfa/fm2js/xfa_fm2jscontext.cpp", |
| 608 | "xfa/fxfa/fm2js/xfa_fm2jscontext.h", |
| 609 | "xfa/fxfa/fm2js/xfa_fmparse.cpp", |
| 610 | "xfa/fxfa/fm2js/xfa_fmparse.h", |
| 611 | "xfa/fxfa/fm2js/xfa_lexer.cpp", |
| 612 | "xfa/fxfa/fm2js/xfa_lexer.h", |
| 613 | "xfa/fxfa/fm2js/xfa_program.cpp", |
| 614 | "xfa/fxfa/fm2js/xfa_program.h", |
| 615 | "xfa/fxfa/fm2js/xfa_simpleexpression.cpp", |
| 616 | "xfa/fxfa/fm2js/xfa_simpleexpression.h", |
dsinclair | 44d054c | 2016-04-06 10:23:46 -0700 | [diff] [blame] | 617 | "xfa/fxfa/parser/cxfa_arc.h", |
| 618 | "xfa/fxfa/parser/cxfa_assist.cpp", |
| 619 | "xfa/fxfa/parser/cxfa_assist.h", |
| 620 | "xfa/fxfa/parser/cxfa_bind.cpp", |
| 621 | "xfa/fxfa/parser/cxfa_bind.h", |
| 622 | "xfa/fxfa/parser/cxfa_binditems.cpp", |
| 623 | "xfa/fxfa/parser/cxfa_binditems.h", |
| 624 | "xfa/fxfa/parser/cxfa_border.h", |
| 625 | "xfa/fxfa/parser/cxfa_box.cpp", |
| 626 | "xfa/fxfa/parser/cxfa_box.h", |
| 627 | "xfa/fxfa/parser/cxfa_calculate.cpp", |
| 628 | "xfa/fxfa/parser/cxfa_calculate.h", |
| 629 | "xfa/fxfa/parser/cxfa_caption.cpp", |
| 630 | "xfa/fxfa/parser/cxfa_caption.h", |
| 631 | "xfa/fxfa/parser/cxfa_corner.h", |
| 632 | "xfa/fxfa/parser/cxfa_data.cpp", |
| 633 | "xfa/fxfa/parser/cxfa_data.h", |
| 634 | "xfa/fxfa/parser/cxfa_edge.h", |
| 635 | "xfa/fxfa/parser/cxfa_event.cpp", |
| 636 | "xfa/fxfa/parser/cxfa_event.h", |
| 637 | "xfa/fxfa/parser/cxfa_exdata.cpp", |
| 638 | "xfa/fxfa/parser/cxfa_exdata.h", |
| 639 | "xfa/fxfa/parser/cxfa_fill.cpp", |
| 640 | "xfa/fxfa/parser/cxfa_fill.h", |
| 641 | "xfa/fxfa/parser/cxfa_font.cpp", |
| 642 | "xfa/fxfa/parser/cxfa_font.h", |
| 643 | "xfa/fxfa/parser/cxfa_image.cpp", |
| 644 | "xfa/fxfa/parser/cxfa_image.h", |
| 645 | "xfa/fxfa/parser/cxfa_line.cpp", |
| 646 | "xfa/fxfa/parser/cxfa_line.h", |
| 647 | "xfa/fxfa/parser/cxfa_margin.cpp", |
| 648 | "xfa/fxfa/parser/cxfa_margin.h", |
| 649 | "xfa/fxfa/parser/cxfa_occur.cpp", |
| 650 | "xfa/fxfa/parser/cxfa_occur.h", |
| 651 | "xfa/fxfa/parser/cxfa_para.cpp", |
| 652 | "xfa/fxfa/parser/cxfa_para.h", |
| 653 | "xfa/fxfa/parser/cxfa_rectangle.h", |
| 654 | "xfa/fxfa/parser/cxfa_script.cpp", |
| 655 | "xfa/fxfa/parser/cxfa_script.h", |
| 656 | "xfa/fxfa/parser/cxfa_stroke.cpp", |
| 657 | "xfa/fxfa/parser/cxfa_stroke.h", |
| 658 | "xfa/fxfa/parser/cxfa_submit.cpp", |
| 659 | "xfa/fxfa/parser/cxfa_submit.h", |
| 660 | "xfa/fxfa/parser/cxfa_text.cpp", |
| 661 | "xfa/fxfa/parser/cxfa_text.h", |
| 662 | "xfa/fxfa/parser/cxfa_tooltip.cpp", |
| 663 | "xfa/fxfa/parser/cxfa_tooltip.h", |
| 664 | "xfa/fxfa/parser/cxfa_validate.cpp", |
| 665 | "xfa/fxfa/parser/cxfa_validate.h", |
| 666 | "xfa/fxfa/parser/cxfa_value.cpp", |
| 667 | "xfa/fxfa/parser/cxfa_value.h", |
| 668 | "xfa/fxfa/parser/cxfa_widgetdata.cpp", |
| 669 | "xfa/fxfa/parser/cxfa_widgetdata.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 670 | "xfa/fxfa/parser/xfa_basic_data.cpp", |
| 671 | "xfa/fxfa/parser/xfa_basic_data.h", |
| 672 | "xfa/fxfa/parser/xfa_basic_imp.cpp", |
| 673 | "xfa/fxfa/parser/xfa_basic_imp.h", |
| 674 | "xfa/fxfa/parser/xfa_docdata.h", |
| 675 | "xfa/fxfa/parser/xfa_doclayout.h", |
| 676 | "xfa/fxfa/parser/xfa_document.h", |
| 677 | "xfa/fxfa/parser/xfa_document_datadescription_imp.cpp", |
| 678 | "xfa/fxfa/parser/xfa_document_datadescription_imp.h", |
| 679 | "xfa/fxfa/parser/xfa_document_datamerger_imp.cpp", |
| 680 | "xfa/fxfa/parser/xfa_document_datamerger_imp.h", |
| 681 | "xfa/fxfa/parser/xfa_document_imp.cpp", |
| 682 | "xfa/fxfa/parser/xfa_document_layout_imp.cpp", |
| 683 | "xfa/fxfa/parser/xfa_document_layout_imp.h", |
| 684 | "xfa/fxfa/parser/xfa_document_serialize.cpp", |
| 685 | "xfa/fxfa/parser/xfa_document_serialize.h", |
| 686 | "xfa/fxfa/parser/xfa_layout_appadapter.cpp", |
| 687 | "xfa/fxfa/parser/xfa_layout_appadapter.h", |
| 688 | "xfa/fxfa/parser/xfa_layout_itemlayout.cpp", |
| 689 | "xfa/fxfa/parser/xfa_layout_itemlayout.h", |
| 690 | "xfa/fxfa/parser/xfa_layout_pagemgr_new.cpp", |
| 691 | "xfa/fxfa/parser/xfa_layout_pagemgr_new.h", |
| 692 | "xfa/fxfa/parser/xfa_locale.cpp", |
| 693 | "xfa/fxfa/parser/xfa_locale.h", |
| 694 | "xfa/fxfa/parser/xfa_localemgr.cpp", |
| 695 | "xfa/fxfa/parser/xfa_localemgr.h", |
| 696 | "xfa/fxfa/parser/xfa_localevalue.cpp", |
| 697 | "xfa/fxfa/parser/xfa_localevalue.h", |
| 698 | "xfa/fxfa/parser/xfa_object.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 699 | "xfa/fxfa/parser/xfa_object_imp.cpp", |
| 700 | "xfa/fxfa/parser/xfa_parser.h", |
| 701 | "xfa/fxfa/parser/xfa_parser_imp.cpp", |
| 702 | "xfa/fxfa/parser/xfa_parser_imp.h", |
| 703 | "xfa/fxfa/parser/xfa_script.h", |
| 704 | "xfa/fxfa/parser/xfa_script_datawindow.cpp", |
| 705 | "xfa/fxfa/parser/xfa_script_datawindow.h", |
| 706 | "xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp", |
| 707 | "xfa/fxfa/parser/xfa_script_eventpseudomodel.h", |
| 708 | "xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp", |
| 709 | "xfa/fxfa/parser/xfa_script_hostpseudomodel.h", |
| 710 | "xfa/fxfa/parser/xfa_script_imp.cpp", |
| 711 | "xfa/fxfa/parser/xfa_script_imp.h", |
| 712 | "xfa/fxfa/parser/xfa_script_layoutpseudomodel.cpp", |
| 713 | "xfa/fxfa/parser/xfa_script_layoutpseudomodel.h", |
| 714 | "xfa/fxfa/parser/xfa_script_logpseudomodel.cpp", |
| 715 | "xfa/fxfa/parser/xfa_script_logpseudomodel.h", |
| 716 | "xfa/fxfa/parser/xfa_script_nodehelper.cpp", |
| 717 | "xfa/fxfa/parser/xfa_script_nodehelper.h", |
| 718 | "xfa/fxfa/parser/xfa_script_resolveprocessor.cpp", |
| 719 | "xfa/fxfa/parser/xfa_script_resolveprocessor.h", |
| 720 | "xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp", |
| 721 | "xfa/fxfa/parser/xfa_script_signaturepseudomodel.h", |
| 722 | "xfa/fxfa/parser/xfa_utils.h", |
| 723 | "xfa/fxfa/parser/xfa_utils_imp.cpp", |
Dan Sinclair | 811b8a4 | 2016-03-17 08:59:42 -0400 | [diff] [blame] | 724 | "xfa/fxgraphics/cagg_graphics.cpp", |
| 725 | "xfa/fxgraphics/cagg_graphics.h", |
| 726 | "xfa/fxgraphics/cfx_color.cpp", |
| 727 | "xfa/fxgraphics/cfx_color.h", |
| 728 | "xfa/fxgraphics/cfx_graphics.cpp", |
| 729 | "xfa/fxgraphics/cfx_path.cpp", |
| 730 | "xfa/fxgraphics/cfx_path.h", |
| 731 | "xfa/fxgraphics/cfx_path_generator.cpp", |
| 732 | "xfa/fxgraphics/cfx_path_generator.h", |
| 733 | "xfa/fxgraphics/cfx_pattern.cpp", |
| 734 | "xfa/fxgraphics/cfx_pattern.h", |
| 735 | "xfa/fxgraphics/cfx_shading.cpp", |
| 736 | "xfa/fxgraphics/cfx_shading.h", |
| 737 | "xfa/fxgraphics/include/cfx_graphics.h", |
Dan Sinclair | 3a8051c | 2016-03-15 15:42:31 -0400 | [diff] [blame] | 738 | "xfa/fxjse/include/fxjse.h", |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 739 | ], |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 740 | "conditions": [ |
Tom Sepez | 88aa3a7 | 2016-03-03 13:10:20 -0800 | [diff] [blame] | 741 | ["clang==1" , { |
Tom Sepez | 88aa3a7 | 2016-03-03 13:10:20 -0800 | [diff] [blame] | 742 | }], |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 743 | ["pdf_enable_v8==1", { |
| 744 | 'dependencies': [ |
| 745 | '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', |
| 746 | ], |
| 747 | 'export_dependent_settings': [ |
| 748 | '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', |
| 749 | ], |
| 750 | 'include_dirs': [ |
| 751 | '<(DEPTH)/v8', |
| 752 | '<(DEPTH)/v8/include', |
| 753 | ], |
| 754 | 'sources': [ |
Dan Sinclair | 3a8051c | 2016-03-15 15:42:31 -0400 | [diff] [blame] | 755 | "xfa/fxjse/cfxjse_arguments.h", |
Dan Sinclair | 1770c02 | 2016-03-14 14:14:16 -0400 | [diff] [blame] | 756 | "xfa/fxjse/class.cpp", |
| 757 | "xfa/fxjse/class.h", |
| 758 | "xfa/fxjse/context.cpp", |
| 759 | "xfa/fxjse/context.h", |
| 760 | "xfa/fxjse/dynprop.cpp", |
| 761 | "xfa/fxjse/runtime.cpp", |
| 762 | "xfa/fxjse/runtime.h", |
| 763 | "xfa/fxjse/scope_inline.h", |
| 764 | "xfa/fxjse/util_inline.h", |
| 765 | "xfa/fxjse/value.cpp", |
| 766 | "xfa/fxjse/value.h" |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 767 | ], |
| 768 | }], |
| 769 | ["OS == 'win'", { |
| 770 | "configurations": { |
| 771 | "Debug": { |
| 772 | "msvs_configuration_attributes": {}, |
| 773 | "msvs_settings": { |
| 774 | "VCCLCompilerTool": {}, |
| 775 | "VCLibrarianTool": {}, |
| 776 | "VCLinkerTool": {}, |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 777 | } |
| 778 | }, |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 779 | "Release": { |
| 780 | "msvs_configuration_attributes": {}, |
| 781 | "msvs_settings": { |
| 782 | "VCCLCompilerTool": {}, |
| 783 | "VCLibrarianTool": {}, |
| 784 | "VCLinkerTool": {}, |
| 785 | } |
| 786 | } |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 787 | }, |
Tom Sepez | 452b4f3 | 2015-10-13 09:27:27 -0700 | [diff] [blame] | 788 | "sources": [], |
| 789 | }], |
| 790 | ["OS == 'mac'", { |
| 791 | "configurations": {}, |
| 792 | "sources": [], |
| 793 | }], |
Bo Xu | fdc00a7 | 2014-10-28 23:03:33 -0700 | [diff] [blame] | 794 | ] |
| 795 | } |
| 796 | ] |
| 797 | } |