| 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/gpu', # needed by SkLua.cpp |
| 15 '../src/images', | 16 '../src/images', |
| 16 '../src/lazy', | 17 '../src/lazy', |
| 17 '../gm', # needed to pull gm.h | 18 '../gm', # needed to pull gm.h |
| 18 '../samplecode', # To pull SampleApp.h and SampleCode.h | 19 '../samplecode', # To pull SampleApp.h and SampleCode.h |
| 19 '../src/pipe/utils', # For TiledPipeController | 20 '../src/pipe/utils', # For TiledPipeController |
| 20 '../src/utils/debugger', | 21 '../src/utils/debugger', |
| 21 ], | 22 ], |
| 22 'includes': [ | 23 'includes': [ |
| 23 'gmslides.gypi', | 24 'gmslides.gypi', |
| 24 ], | 25 ], |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 }], | 305 }], |
| 305 ], | 306 ], |
| 306 'msvs_settings': { | 307 'msvs_settings': { |
| 307 'VCLinkerTool': { | 308 'VCLinkerTool': { |
| 308 'SubSystem': '2', | 309 'SubSystem': '2', |
| 309 }, | 310 }, |
| 310 }, | 311 }, |
| 311 }, | 312 }, |
| 312 ], | 313 ], |
| 313 } | 314 } |
| OLD | NEW |