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

Unified Diff: gyp/pdfviewer.gyp

Issue 16295031: simple podofo and skia based pdf viewer (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gyp/most.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/pdfviewer.gyp
===================================================================
--- gyp/pdfviewer.gyp (revision 0)
+++ gyp/pdfviewer.gyp (revision 0)
@@ -0,0 +1,70 @@
+# GYP file to build pdfviewer.
+#
+# To build on Linux:
+# ./gyp_skia pdfviewer.gyp && make pdfviewer
+#
+{
+ 'variables': {
+ 'skia_warnings_as_errors': 0,
+ },
+ 'includes': [
+ 'apptype_console.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'pdfviewer',
+ 'type': 'executable',
+ 'cflags': ['-fexceptions'],
+ 'cflags_cc': ['-fexceptions'],
+ 'cflags!': [ '-fno-exceptions' ],
+ 'cflags_cc!': [ '-fno-exceptions' ],
+ 'sources': [
+ '../experimental/PdfViewer/pdf_viewer_main.cpp',
+ ],
+ 'include_dirs': [
+ '../third_party/externals/podofo/src/base',
+ '../third_party/externals/podofo/src',
+ '../third_party/externals/podofo',
+ '../tools',
+ '../experimental/PdfViewer',
+ ],
+ 'dependencies': [
+ 'core.gyp:core',
+ 'effects.gyp:effects',
+ 'images.gyp:images',
+ 'pdf.gyp:pdf',
+ 'ports.gyp:ports',
+ 'tools.gyp:picture_utils',
+ '../third_party/externals/podofo/podofo.gyp:podofo',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ ],
+ },
+ 'defines': [
+ 'BUILDING_PODOFO',
+ ],
+ },
+ ],
+ 'conditions': [
+ ['skia_os == "win"',
+ {
+ 'targets': [
+ {
+ 'target_name': 'win_lcid',
+ 'type': 'executable',
+ 'sources': [
+ '../tools/win_lcid.cpp',
+ ],
+ },
+ ],
+ },
+ ],
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2:
« no previous file with comments | « gyp/most.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698