| OLD | NEW |
| 1 # | 1 # |
| 2 { | 2 { |
| 3 'variables': { | 3 'variables': { |
| 4 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp | 4 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp |
| 5 'sample_pdf_file_viewer%': 0, | 5 'sample_pdf_file_viewer%': 0, |
| 6 }, | 6 }, |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'SampleApp', | 9 'target_name': 'SampleApp', |
| 10 'type': 'executable', | 10 'type': 'executable', |
| 11 'mac_bundle' : 1, | 11 'mac_bundle' : 1, |
| 12 'include_dirs' : [ | 12 'include_dirs' : [ |
| 13 '../src/core', | 13 '../src/core', |
| 14 '../src/effects', #needed for BlurMask.h | 14 '../src/effects', #needed for BlurMask.h |
| 15 '../src/images', |
| 16 '../src/lazy', |
| 15 '../gm', # needed to pull gm.h | 17 '../gm', # needed to pull gm.h |
| 16 '../samplecode', # To pull SampleApp.h and SampleCode.h | 18 '../samplecode', # To pull SampleApp.h and SampleCode.h |
| 17 '../src/pipe/utils', # For TiledPipeController | 19 '../src/pipe/utils', # For TiledPipeController |
| 18 '../src/utils/debugger', | 20 '../src/utils/debugger', |
| 19 ], | 21 ], |
| 20 'includes': [ | 22 'includes': [ |
| 21 'gmslides.gypi', | 23 'gmslides.gypi', |
| 22 ], | 24 ], |
| 23 'sources': [ | 25 'sources': [ |
| 24 '../src/utils/debugger/SkDrawCommand.h', | 26 '../src/utils/debugger/SkDrawCommand.h', |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 }], | 317 }], |
| 316 ], | 318 ], |
| 317 'msvs_settings': { | 319 'msvs_settings': { |
| 318 'VCLinkerTool': { | 320 'VCLinkerTool': { |
| 319 'SubSystem': '2', | 321 'SubSystem': '2', |
| 320 }, | 322 }, |
| 321 }, | 323 }, |
| 322 }, | 324 }, |
| 323 ], | 325 ], |
| 324 } | 326 } |
| OLD | NEW |