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, |
11 'include_dirs' : [ | 11 'include_dirs' : [ |
12 '../src/core', | 12 '../src/core', |
| 13 '../src/opts', |
13 '../src/effects', #needed for BlurMask.h | 14 '../src/effects', #needed for BlurMask.h |
14 '../gm', # needed to pull gm.h | 15 '../gm', # needed to pull gm.h |
15 '../samplecode', # To pull SampleApp.h and SampleCode.h | 16 '../samplecode', # To pull SampleApp.h and SampleCode.h |
16 '../src/pipe/utils', # For TiledPipeController | 17 '../src/pipe/utils', # For TiledPipeController |
17 '../src/utils/debugger', | 18 '../src/utils/debugger', |
18 ], | 19 ], |
19 'includes': [ | 20 'includes': [ |
20 'gmslides.gypi', | 21 'gmslides.gypi', |
21 ], | 22 ], |
22 'sources': [ | 23 'sources': [ |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 }, | 318 }, |
318 }, | 319 }, |
319 ], | 320 ], |
320 } | 321 } |
321 | 322 |
322 # Local Variables: | 323 # Local Variables: |
323 # tab-width:2 | 324 # tab-width:2 |
324 # indent-tabs-mode:nil | 325 # indent-tabs-mode:nil |
325 # End: | 326 # End: |
326 # vim: set expandtab tabstop=2 shiftwidth=2: | 327 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |