| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 #manaully set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp | 3 #manaully 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 ], | 158 ], |
| 159 'conditions' : [ | 159 'conditions' : [ |
| 160 [ 'sample_pdf_file_viewer == 1', { | 160 [ 'sample_pdf_file_viewer == 1', { |
| 161 'defines': [ | 161 'defines': [ |
| 162 'SAMPLE_PDF_FILE_VIEWER', | 162 'SAMPLE_PDF_FILE_VIEWER', |
| 163 ], | 163 ], |
| 164 'dependencies': [ | 164 'dependencies': [ |
| 165 'pdfviewer.gyp:libpdfviewer', | 165 'pdfviewer.gyp:libpdfviewer', |
| 166 ], | 166 ], |
| 167 'include_dirs' : [ | 167 'include_dirs' : [ |
| 168 '../experimental/PdfViewer/pdfparser/podofo', | 168 '../experimental/PdfViewer/', |
| 169 ], | 169 ], |
| 170 'sources': [ | 170 'sources': [ |
| 171 '../samplecode/SamplePdfFileViewer.cpp', | 171 '../samplecode/SamplePdfFileViewer.cpp', |
| 172 ] | 172 ] |
| 173 }], | 173 }], |
| 174 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { | 174 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { |
| 175 'sources!': [ | 175 'sources!': [ |
| 176 '../samplecode/SampleDecode.cpp', | 176 '../samplecode/SampleDecode.cpp', |
| 177 ], | 177 ], |
| 178 }], | 178 }], |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 }, | 326 }, |
| 327 }, | 327 }, |
| 328 ], | 328 ], |
| 329 } | 329 } |
| 330 | 330 |
| 331 # Local Variables: | 331 # Local Variables: |
| 332 # tab-width:2 | 332 # tab-width:2 |
| 333 # indent-tabs-mode:nil | 333 # indent-tabs-mode:nil |
| 334 # End: | 334 # End: |
| 335 # vim: set expandtab tabstop=2 shiftwidth=2: | 335 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |