| 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 '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 Loading... |
| 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: |
| OLD | NEW |