| OLD | NEW |
| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 }, | 64 }, |
| 65 ], | 65 ], |
| 66 'include_dirs': [ | 66 'include_dirs': [ |
| 67 '../experimental/PdfViewer', | 67 '../experimental/PdfViewer', |
| 68 '../experimental/PdfViewer/pdfparser', | 68 '../experimental/PdfViewer/pdfparser', |
| 69 '../experimental/PdfViewer/pdfparser/native', | 69 '../experimental/PdfViewer/pdfparser/native', |
| 70 '<(SHARED_INTERMEDIATE_DIR)/native/autogen', | 70 '<(SHARED_INTERMEDIATE_DIR)/native/autogen', |
| 71 ], | 71 ], |
| 72 'dependencies': [ | 72 'dependencies': [ |
| 73 'core.gyp:core', | 73 'core.gyp:core', |
| 74 'effects.gyp:effects', |
| 74 'images.gyp:images', | 75 'images.gyp:images', |
| 75 'zlib.gyp:zlib', | 76 'zlib.gyp:zlib', |
| 76 ], | 77 ], |
| 77 }, | 78 }, |
| 78 { | 79 { |
| 79 'target_name': 'pdfviewer', | 80 'target_name': 'pdfviewer', |
| 80 'type': 'executable', | 81 'type': 'executable', |
| 81 'cflags': ['-fexceptions'], | 82 'cflags': ['-fexceptions'], |
| 82 'cflags_cc': ['-fexceptions'], | 83 'cflags_cc': ['-fexceptions'], |
| 83 'cflags!': [ '-fno-exceptions' ], | 84 'cflags!': [ '-fno-exceptions' ], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 99 ], | 100 ], |
| 100 }, | 101 }, |
| 101 ], | 102 ], |
| 102 } | 103 } |
| 103 | 104 |
| 104 # Local Variables: | 105 # Local Variables: |
| 105 # tab-width:2 | 106 # tab-width:2 |
| 106 # indent-tabs-mode:nil | 107 # indent-tabs-mode:nil |
| 107 # End: | 108 # End: |
| 108 # vim: set expandtab tabstop=2 shiftwidth=2: | 109 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |