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

Side by Side Diff: gyp/pdfviewer.gyp

Issue 23020003: pdfviewer: debug code for drawText (show magenta background for text, to show text even when we fai… (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « experimental/PdfViewer/pdfparser/native/SkPdfObject.cpp ('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 # GYP file to build pdfviewer. 1 # GYP file to build pdfviewer.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia pdfviewer.gyp && make pdfviewer 4 # ./gyp_skia pdfviewer.gyp && make pdfviewer
5 # 5 #
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'libpdfviewer', 12 'target_name': 'libpdfviewer',
13 'type': 'static_library', 13 'type': 'static_library',
14 'sources': [ 14 'sources': [
15 '../experimental/PdfViewer/SkPdfBasics.cpp', 15 '../experimental/PdfViewer/SkPdfGraphicsState.cpp',
16 '../experimental/PdfViewer/SkPdfFont.cpp', 16 '../experimental/PdfViewer/SkPdfFont.cpp',
17 '../experimental/PdfViewer/SkPdfRenderer.cpp', 17 '../experimental/PdfViewer/SkPdfRenderer.cpp',
18 '../experimental/PdfViewer/SkPdfUtils.cpp', 18 '../experimental/PdfViewer/SkPdfUtils.cpp',
19 #'../experimental/PdfViewer/SkPdfNYI.cpp', 19 #'../experimental/PdfViewer/SkPdfNYI.cpp',
20 '../experimental/PdfViewer/SkTrackDevice.cpp', 20 '../experimental/PdfViewer/SkTrackDevice.cpp',
21 '../experimental/PdfViewer/SkTracker.cpp', 21 '../experimental/PdfViewer/SkTracker.cpp',
22 '../experimental/PdfViewer/pdfparser/native/SkPdfObject.cpp', 22 '../experimental/PdfViewer/pdfparser/native/SkPdfNativeObject.cpp',
23 '../experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.cpp', 23 '../experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.cpp',
24 '../experimental/PdfViewer/pdfparser/native/SkNativeParsedPDF.cpp', 24 '../experimental/PdfViewer/pdfparser/native/SkPdfNativeDoc.cpp',
25 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp', 25 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp',
26 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp', 26 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp',
27 ], 27 ],
28 'copies': [ 28 'copies': [
29 { 29 {
30 'files': [ 30 'files': [
31 '../experimental/PdfViewer/datatypes.py', 31 '../experimental/PdfViewer/datatypes.py',
32 '../experimental/PdfViewer/generate_code.py', 32 '../experimental/PdfViewer/generate_code.py',
33 ], 33 ],
34 'destination': '<(SHARED_INTERMEDIATE_DIR)', 34 'destination': '<(SHARED_INTERMEDIATE_DIR)',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 ], 116 ],
117 }, 117 },
118 ], 118 ],
119 } 119 }
120 120
121 # Local Variables: 121 # Local Variables:
122 # tab-width:2 122 # tab-width:2
123 # indent-tabs-mode:nil 123 # indent-tabs-mode:nil
124 # End: 124 # End:
125 # vim: set expandtab tabstop=2 shiftwidth=2: 125 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « experimental/PdfViewer/pdfparser/native/SkPdfObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698