| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp | 3 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp |
| 4 'sample_pdf_file_viewer%': 0, | 4 'sample_pdf_file_viewer%': 0, |
| 5 }, | 5 }, |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'SampleApp', | 8 'target_name': 'SampleApp', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'mac_bundle' : 1, | 10 'mac_bundle' : 1, |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 'pdf.gyp:pdf', | 154 'pdf.gyp:pdf', |
| 155 'views_animated.gyp:views_animated', | 155 'views_animated.gyp:views_animated', |
| 156 'lua.gyp:lua', | 156 'lua.gyp:lua', |
| 157 ], | 157 ], |
| 158 'conditions' : [ | 158 'conditions' : [ |
| 159 [ 'sample_pdf_file_viewer == 1', { | 159 [ 'sample_pdf_file_viewer == 1', { |
| 160 'defines': [ | 160 'defines': [ |
| 161 'SAMPLE_PDF_FILE_VIEWER', | 161 'SAMPLE_PDF_FILE_VIEWER', |
| 162 ], | 162 ], |
| 163 'dependencies': [ | 163 'dependencies': [ |
| 164 'pdfviewer_lib.gyp:libpdfviewer_lib', | 164 'pdfviewer_lib.gyp:pdfviewer_lib', |
| 165 ], | 165 ], |
| 166 'include_dirs' : [ | 166 'include_dirs' : [ |
| 167 '../experimental/PdfViewer/', | 167 '../experimental/PdfViewer/', |
| 168 ], | 168 ], |
| 169 'sources': [ | 169 'sources': [ |
| 170 '../samplecode/SamplePdfFileViewer.cpp', | 170 '../samplecode/SamplePdfFileViewer.cpp', |
| 171 ] | 171 ] |
| 172 }], | 172 }], |
| 173 [ 'skia_os == "win"', { | 173 [ 'skia_os == "win"', { |
| 174 'sources!': [ | 174 'sources!': [ |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 }, | 317 }, |
| 318 }, | 318 }, |
| 319 ], | 319 ], |
| 320 } | 320 } |
| 321 | 321 |
| 322 # Local Variables: | 322 # Local Variables: |
| 323 # tab-width:2 | 323 # tab-width:2 |
| 324 # indent-tabs-mode:nil | 324 # indent-tabs-mode:nil |
| 325 # End: | 325 # End: |
| 326 # vim: set expandtab tabstop=2 shiftwidth=2: | 326 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |