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

Side by Side Diff: gyp/SampleApp.gyp

Issue 18507004: sample app: fix break in pdf viewer (podofo was replaced by native parser) (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | samplecode/SamplePdfFileViewer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 #manaully set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp 3 #manaully set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp
4 'sample_pdf_file_viewer%': 0, 4 'sample_pdf_file_viewer%': 0,
5 }, 5 },
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'SampleApp', 8 'target_name': 'SampleApp',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle' : 1, 10 'mac_bundle' : 1,
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 ], 158 ],
159 'conditions' : [ 159 'conditions' : [
160 [ 'sample_pdf_file_viewer == 1', { 160 [ 'sample_pdf_file_viewer == 1', {
161 'defines': [ 161 'defines': [
162 'SAMPLE_PDF_FILE_VIEWER', 162 'SAMPLE_PDF_FILE_VIEWER',
163 ], 163 ],
164 'dependencies': [ 164 'dependencies': [
165 'pdfviewer.gyp:libpdfviewer', 165 'pdfviewer.gyp:libpdfviewer',
166 ], 166 ],
167 'include_dirs' : [ 167 'include_dirs' : [
168 '../experimental/PdfViewer/pdfparser/podofo', 168 '../experimental/PdfViewer/',
169 ], 169 ],
170 'sources': [ 170 'sources': [
171 '../samplecode/SamplePdfFileViewer.cpp', 171 '../samplecode/SamplePdfFileViewer.cpp',
172 ] 172 ]
173 }], 173 }],
174 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { 174 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
175 'sources!': [ 175 'sources!': [
176 '../samplecode/SampleDecode.cpp', 176 '../samplecode/SampleDecode.cpp',
177 ], 177 ],
178 }], 178 }],
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 }, 326 },
327 }, 327 },
328 ], 328 ],
329 } 329 }
330 330
331 # Local Variables: 331 # Local Variables:
332 # tab-width:2 332 # tab-width:2
333 # indent-tabs-mode:nil 333 # indent-tabs-mode:nil
334 # End: 334 # End:
335 # vim: set expandtab tabstop=2 shiftwidth=2: 335 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | samplecode/SamplePdfFileViewer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698