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

Side by Side Diff: pdfium.gyp

Issue 2243623002: Split fpdfsdk/fsdk_annothandler.h into individual classes. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Split fpdfsdk/fsdk_annothandler.h into individual classes. 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/include/ipdfsdk_annothandler.h ('k') | no next file » | 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'fxcrt', 80 'fxcrt',
81 'fxedit', 81 'fxedit',
82 'fxge', 82 'fxge',
83 'javascript', 83 'javascript',
84 'pdfwindow', 84 'pdfwindow',
85 ], 85 ],
86 'sources': [ 86 'sources': [
87 'fpdfsdk/cfx_systemhandler.cpp', 87 'fpdfsdk/cfx_systemhandler.cpp',
88 'fpdfsdk/cfx_systemhandler.h', 88 'fpdfsdk/cfx_systemhandler.h',
89 'fpdfsdk/include/cpdfsdk_annot.h', 89 'fpdfsdk/include/cpdfsdk_annot.h',
90 'fpdfsdk/include/cpdfsdk_annothandlermgr.h',
91 'fpdfsdk/include/cpdfsdk_annotiterator.h',
90 'fpdfsdk/include/cpdfsdk_baannot.h', 92 'fpdfsdk/include/cpdfsdk_baannot.h',
93 'fpdfsdk/include/cpdfsdk_bfannothandler.h',
91 'fpdfsdk/include/cpdfsdk_datetime.h', 94 'fpdfsdk/include/cpdfsdk_datetime.h',
95 'fpdfsdk/include/cpdfsdk_xfaannothandler.h',
92 'fpdfsdk/include/fsdk_actionhandler.h', 96 'fpdfsdk/include/fsdk_actionhandler.h',
93 'fpdfsdk/include/fsdk_annothandler.h',
94 'fpdfsdk/include/fsdk_baseform.h', 97 'fpdfsdk/include/fsdk_baseform.h',
95 'fpdfsdk/include/fsdk_pauseadapter.h', 98 'fpdfsdk/include/fsdk_pauseadapter.h',
99 'fpdfsdk/include/ipdfsdk_annothandler.h',
96 'fpdfsdk/cpdfsdk_annot.cpp', 100 'fpdfsdk/cpdfsdk_annot.cpp',
101 'fpdfsdk/cpdfsdk_annothandlermgr.cpp',
102 'fpdfsdk/cpdfsdk_annotiterator.cpp',
97 'fpdfsdk/cpdfsdk_baannot.cpp', 103 'fpdfsdk/cpdfsdk_baannot.cpp',
104 'fpdfsdk/cpdfsdk_bfannothandler.cpp',
98 'fpdfsdk/cpdfsdk_datetime.cpp', 105 'fpdfsdk/cpdfsdk_datetime.cpp',
106 'fpdfsdk/cpdfsdk_xfaannothandler.cpp',
99 'fpdfsdk/fpdfdoc.cpp', 107 'fpdfsdk/fpdfdoc.cpp',
100 'fpdfsdk/fpdfeditimg.cpp', 108 'fpdfsdk/fpdfeditimg.cpp',
101 'fpdfsdk/fpdfeditpage.cpp', 109 'fpdfsdk/fpdfeditpage.cpp',
102 'fpdfsdk/fpdfformfill.cpp', 110 'fpdfsdk/fpdfformfill.cpp',
103 'fpdfsdk/fpdfppo.cpp', 111 'fpdfsdk/fpdfppo.cpp',
104 'fpdfsdk/fpdfsave.cpp', 112 'fpdfsdk/fpdfsave.cpp',
105 'fpdfsdk/fpdftext.cpp', 113 'fpdfsdk/fpdftext.cpp',
106 'fpdfsdk/fpdfview.cpp', 114 'fpdfsdk/fpdfview.cpp',
107 'fpdfsdk/fpdf_dataavail.cpp', 115 'fpdfsdk/fpdf_dataavail.cpp',
108 'fpdfsdk/fpdf_ext.cpp', 116 'fpdfsdk/fpdf_ext.cpp',
109 'fpdfsdk/fpdf_flatten.cpp', 117 'fpdfsdk/fpdf_flatten.cpp',
110 'fpdfsdk/fpdf_progressive.cpp', 118 'fpdfsdk/fpdf_progressive.cpp',
111 'fpdfsdk/fpdf_searchex.cpp', 119 'fpdfsdk/fpdf_searchex.cpp',
112 'fpdfsdk/fpdf_sysfontinfo.cpp', 120 'fpdfsdk/fpdf_sysfontinfo.cpp',
113 'fpdfsdk/fpdf_transformpage.cpp', 121 'fpdfsdk/fpdf_transformpage.cpp',
114 'fpdfsdk/fsdk_actionhandler.cpp', 122 'fpdfsdk/fsdk_actionhandler.cpp',
115 'fpdfsdk/fsdk_annothandler.cpp',
116 'fpdfsdk/fsdk_baseform.cpp', 123 'fpdfsdk/fsdk_baseform.cpp',
117 'fpdfsdk/fsdk_mgr.cpp', 124 'fpdfsdk/fsdk_mgr.cpp',
118 'fpdfsdk/fsdk_pauseadapter.cpp', 125 'fpdfsdk/fsdk_pauseadapter.cpp',
119 'public/fpdf_dataavail.h', 126 'public/fpdf_dataavail.h',
120 'public/fpdf_doc.h', 127 'public/fpdf_doc.h',
121 'public/fpdf_edit.h', 128 'public/fpdf_edit.h',
122 'public/fpdf_ext.h', 129 'public/fpdf_ext.h',
123 'public/fpdf_flatten.h', 130 'public/fpdf_flatten.h',
124 'public/fpdf_formfill.h', 131 'public/fpdf_formfill.h',
125 'public/fpdf_fwlevent.h', 132 'public/fpdf_fwlevent.h',
(...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 'fpdfsdk/fpdfxfa/include/fpdfxfa_app.h', 1138 'fpdfsdk/fpdfxfa/include/fpdfxfa_app.h',
1132 'fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h', 1139 'fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h',
1133 'fpdfsdk/fpdfxfa/include/fpdfxfa_page.h', 1140 'fpdfsdk/fpdfxfa/include/fpdfxfa_page.h',
1134 'fpdfsdk/fpdfxfa/include/fpdfxfa_util.h', 1141 'fpdfsdk/fpdfxfa/include/fpdfxfa_util.h',
1135 ], 1142 ],
1136 }, 1143 },
1137 ] 1144 ]
1138 }], 1145 }],
1139 ] 1146 ]
1140 } 1147 }
OLDNEW
« no previous file with comments | « fpdfsdk/include/ipdfsdk_annothandler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698