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

Side by Side Diff: gyp/pdfviewer.gyp

Issue 18293012: pdf viewer: fix a few warnings, and enable warning as errors (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 | « experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.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 'variables': {
8 'skia_warnings_as_errors': 0,
9 },
10 'includes': [ 7 'includes': [
11 'apptype_console.gypi', 8 'apptype_console.gypi',
12 ], 9 ],
13 'targets': [ 10 'targets': [
14 { 11 {
15 'target_name': 'libpdfviewer', 12 'target_name': 'libpdfviewer',
16 'type': 'static_library', 13 'type': 'static_library',
17 'cflags': ['-fexceptions'], 14 'cflags': ['-fexceptions'],
18 'cflags_cc': ['-fexceptions'], 15 'cflags_cc': ['-fexceptions'],
19 'cflags!': [ '-fno-exceptions' ], 16 'cflags!': [ '-fno-exceptions' ],
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 ], 101 ],
105 }, 102 },
106 ], 103 ],
107 } 104 }
108 105
109 # Local Variables: 106 # Local Variables:
110 # tab-width:2 107 # tab-width:2
111 # indent-tabs-mode:nil 108 # indent-tabs-mode:nil
112 # End: 109 # End:
113 # vim: set expandtab tabstop=2 shiftwidth=2: 110 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698