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

Side by Side Diff: gyp/pdfviewer.gyp

Issue 21981008: pdfviewer: set backdround to transparent, and add an app to chop transparent content in png files. (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/pdf_viewer_main.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': [
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 '../experimental/PdfViewer', 92 '../experimental/PdfViewer',
93 '../experimental/PdfViewer/pdfparser', 93 '../experimental/PdfViewer/pdfparser',
94 '../experimental/PdfViewer/pdfparser/autogen', 94 '../experimental/PdfViewer/pdfparser/autogen',
95 '../experimental/PdfViewer/pdfparser/native', 95 '../experimental/PdfViewer/pdfparser/native',
96 '../experimental/PdfViewer/pdfparser/native/autogen', 96 '../experimental/PdfViewer/pdfparser/native/autogen',
97 ], 97 ],
98 'dependencies': [ 98 'dependencies': [
99 'core.gyp:core', 99 'core.gyp:core',
100 'flags.gyp:flags', 100 'flags.gyp:flags',
101 'libpdfviewer', 101 'libpdfviewer',
102 'chop_transparency',
103 ],
104 },
105 {
106 'target_name': 'chop_transparency',
107 'type': 'executable',
108 'sources': [
109 '../experimental/PdfViewer/chop_transparency_main.cpp',
110 ],
111 'include_dirs': [
112 # For SkBitmapHasher.h
113 '../src/utils/',
114 ],
115 'dependencies': [
116 'skia_lib.gyp:skia_lib',
117 'flags.gyp:flags',
102 ], 118 ],
103 }, 119 },
104 ], 120 ],
105 } 121 }
106 122
107 # Local Variables: 123 # Local Variables:
108 # tab-width:2 124 # tab-width:2
109 # indent-tabs-mode:nil 125 # indent-tabs-mode:nil
110 # End: 126 # End:
111 # vim: set expandtab tabstop=2 shiftwidth=2: 127 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « experimental/PdfViewer/pdf_viewer_main.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698