Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(358)

Side by Side Diff: pdfium.gyp

Issue 2183313004: Split fpdfdoc/include/fpdf_doc.h into individual classes. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: review feedback Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/pdfwindow/PWL_Wnd.h ('k') | public/fpdf_formfill.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 PDFium Authors. All rights reserved. 1 # Copyright 2015 PDFium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'pdf_use_skia%': 0, 8 'pdf_use_skia%': 0,
9 'pdf_enable_v8%': 1, 9 'pdf_enable_v8%': 1,
10 'pdf_enable_xfa%': 0, # Set to 1 by standalone.gypi in a standalone build. 10 'pdf_enable_xfa%': 0, # Set to 1 by standalone.gypi in a standalone build.
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 'core/fdrm/crypto/fx_crypt_aes.cpp', 173 'core/fdrm/crypto/fx_crypt_aes.cpp',
174 'core/fdrm/crypto/fx_crypt_sha.cpp', 174 'core/fdrm/crypto/fx_crypt_sha.cpp',
175 ], 175 ],
176 }, 176 },
177 { 177 {
178 'target_name': 'fpdfdoc', 178 'target_name': 'fpdfdoc',
179 'type': 'static_library', 179 'type': 'static_library',
180 'sources': [ 180 'sources': [
181 'core/fpdfdoc/clines.cpp', 181 'core/fpdfdoc/clines.cpp',
182 'core/fpdfdoc/clines.h', 182 'core/fpdfdoc/clines.h',
183 'core/fpdfdoc/include/fpdf_doc.h', 183 'core/fpdfdoc/cpdf_apsettings.h',
184 'core/fpdfdoc/include/fpdf_tagged.h', 184 'core/fpdfdoc/cpdf_annot.cpp',
185 'core/fpdfdoc/cpdf_annotlist.cpp',
186 'core/fpdfdoc/cpdf_pagelabel.h',
185 'core/fpdfdoc/cpdf_variabletext.cpp', 187 'core/fpdfdoc/cpdf_variabletext.cpp',
186 'core/fpdfdoc/cpdf_annot.cpp',
187 'core/fpdfdoc/cpdf_annot.h',
188 'core/fpdfdoc/cpdf_annotlist.cpp',
189 'core/fpdfdoc/cpdf_annotlist.h',
190 'core/fpdfdoc/cpvt_color.cpp', 188 'core/fpdfdoc/cpvt_color.cpp',
191 'core/fpdfdoc/cpvt_color.h', 189 'core/fpdfdoc/cpvt_color.h',
192 'core/fpdfdoc/cpvt_dash.h', 190 'core/fpdfdoc/cpvt_dash.h',
193 'core/fpdfdoc/cpvt_floatrect.h', 191 'core/fpdfdoc/cpvt_floatrect.h',
194 'core/fpdfdoc/cpvt_fontmap.cpp', 192 'core/fpdfdoc/cpvt_fontmap.cpp',
195 'core/fpdfdoc/cpvt_fontmap.h', 193 'core/fpdfdoc/cpvt_fontmap.h',
196 'core/fpdfdoc/cpvt_generateap.cpp', 194 'core/fpdfdoc/cpvt_generateap.cpp',
197 'core/fpdfdoc/cpvt_generateap.h', 195 'core/fpdfdoc/cpvt_generateap.h',
198 'core/fpdfdoc/cpvt_lineinfo.h', 196 'core/fpdfdoc/cpvt_lineinfo.h',
199 'core/fpdfdoc/cpvt_sectioninfo.cpp', 197 'core/fpdfdoc/cpvt_sectioninfo.cpp',
(...skipping 11 matching lines...) Expand all
211 'core/fpdfdoc/doc_formcontrol.cpp', 209 'core/fpdfdoc/doc_formcontrol.cpp',
212 'core/fpdfdoc/doc_formfield.cpp', 210 'core/fpdfdoc/doc_formfield.cpp',
213 'core/fpdfdoc/doc_link.cpp', 211 'core/fpdfdoc/doc_link.cpp',
214 'core/fpdfdoc/doc_metadata.cpp', 212 'core/fpdfdoc/doc_metadata.cpp',
215 'core/fpdfdoc/doc_ocg.cpp', 213 'core/fpdfdoc/doc_ocg.cpp',
216 'core/fpdfdoc/doc_tagged.cpp', 214 'core/fpdfdoc/doc_tagged.cpp',
217 'core/fpdfdoc/doc_utils.cpp', 215 'core/fpdfdoc/doc_utils.cpp',
218 'core/fpdfdoc/doc_utils.h', 216 'core/fpdfdoc/doc_utils.h',
219 'core/fpdfdoc/doc_viewerPreferences.cpp', 217 'core/fpdfdoc/doc_viewerPreferences.cpp',
220 'core/fpdfdoc/doc_vt.cpp', 218 'core/fpdfdoc/doc_vt.cpp',
219 'core/fpdfdoc/include/cpdf_aaction.h',
220 'core/fpdfdoc/include/cpdf_action.h',
221 'core/fpdfdoc/include/cpdf_actionfields.h',
222 'core/fpdfdoc/include/cpdf_annot.h',
223 'core/fpdfdoc/include/cpdf_annotlist.h',
224 'core/fpdfdoc/include/cpdf_bookmark.h',
225 'core/fpdfdoc/include/cpdf_bookmarktree.h',
226 'core/fpdfdoc/include/cpdf_defaultappearance.h',
227 'core/fpdfdoc/include/cpdf_dest.h',
228 'core/fpdfdoc/include/cpdf_docjsactions.h',
229 'core/fpdfdoc/include/cpdf_filespec.h',
230 'core/fpdfdoc/include/cpdf_formcontrol.h',
231 'core/fpdfdoc/include/cpdf_formfield.h',
232 'core/fpdfdoc/include/cpdf_iconfit.h',
233 'core/fpdfdoc/include/cpdf_interform.h',
234 'core/fpdfdoc/include/cpdf_link.h',
235 'core/fpdfdoc/include/cpdf_linklist.h',
236 'core/fpdfdoc/include/cpdf_metadata.h',
237 'core/fpdfdoc/include/cpdf_nametree.h',
238 'core/fpdfdoc/include/cpdf_occontext.h',
221 'core/fpdfdoc/include/cpdf_variabletext.h', 239 'core/fpdfdoc/include/cpdf_variabletext.h',
240 'core/fpdfdoc/include/cpdf_viewerpreferences.h',
222 'core/fpdfdoc/include/cpvt_line.h', 241 'core/fpdfdoc/include/cpvt_line.h',
223 'core/fpdfdoc/include/cpvt_secprops.h', 242 'core/fpdfdoc/include/cpvt_secprops.h',
224 'core/fpdfdoc/include/cpvt_section.h', 243 'core/fpdfdoc/include/cpvt_section.h',
225 'core/fpdfdoc/include/cpvt_word.h', 244 'core/fpdfdoc/include/cpvt_word.h',
226 'core/fpdfdoc/include/cpvt_wordplace.h', 245 'core/fpdfdoc/include/cpvt_wordplace.h',
227 'core/fpdfdoc/include/cpvt_wordprops.h', 246 'core/fpdfdoc/include/cpvt_wordprops.h',
228 'core/fpdfdoc/include/cpvt_wordrange.h', 247 'core/fpdfdoc/include/cpvt_wordrange.h',
248 'core/fpdfdoc/include/fpdf_tagged.h',
229 'core/fpdfdoc/include/ipvt_fontmap.h', 249 'core/fpdfdoc/include/ipvt_fontmap.h',
250 'core/fpdfdoc/include/ipdf_formnotify.h',
230 'core/fpdfdoc/pdf_vt.h', 251 'core/fpdfdoc/pdf_vt.h',
231 'core/fpdfdoc/tagged_int.h', 252 'core/fpdfdoc/tagged_int.h',
232 ], 253 ],
233 }, 254 },
234 { 255 {
235 'target_name': 'fpdfapi', 256 'target_name': 'fpdfapi',
236 'type': 'static_library', 257 'type': 'static_library',
237 'sources': [ 258 'sources': [
238 'core/fpdfapi/cpdf_modulemgr.cpp', 259 'core/fpdfapi/cpdf_modulemgr.cpp',
239 'core/fpdfapi/cpdf_pagerendercontext.cpp', 260 'core/fpdfapi/cpdf_pagerendercontext.cpp',
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 'fpdfsdk/fpdfxfa/include/fpdfxfa_app.h', 1101 'fpdfsdk/fpdfxfa/include/fpdfxfa_app.h',
1081 'fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h', 1102 'fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h',
1082 'fpdfsdk/fpdfxfa/include/fpdfxfa_page.h', 1103 'fpdfsdk/fpdfxfa/include/fpdfxfa_page.h',
1083 'fpdfsdk/fpdfxfa/include/fpdfxfa_util.h', 1104 'fpdfsdk/fpdfxfa/include/fpdfxfa_util.h',
1084 ], 1105 ],
1085 }, 1106 },
1086 ] 1107 ]
1087 }], 1108 }],
1088 ] 1109 ]
1089 } 1110 }
OLDNEW
« no previous file with comments | « fpdfsdk/pdfwindow/PWL_Wnd.h ('k') | public/fpdf_formfill.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698