| 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', | 15 '../src/images', |
| 16 '../src/lazy', | 16 '../src/lazy', |
| 17 '../gm', # needed to pull gm.h | 17 '../gm', # needed to pull gm.h |
| 18 '../samplecode', # To pull SampleApp.h and SampleCode.h | 18 '../samplecode', # To pull SampleApp.h and SampleCode.h |
| 19 '../src/pipe/utils', # For TiledPipeController | 19 '../src/pipe/utils', # For TiledPipeController |
| 20 '../src/utils/debugger', | 20 '../src/utils/debugger', |
| 21 ], | 21 ], |
| 22 'includes': [ | 22 'includes': [ |
| 23 'gmslides.gypi', | 23 'gmslides.gypi', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 '../src/utils/debugger/SkDrawCommand.h', | |
| 27 '../src/utils/debugger/SkDrawCommand.cpp', | |
| 28 '../src/utils/debugger/SkDebugCanvas.h', | |
| 29 '../src/utils/debugger/SkDebugCanvas.cpp', | |
| 30 '../src/utils/debugger/SkObjectParser.h', | |
| 31 '../src/utils/debugger/SkObjectParser.cpp', | |
| 32 | |
| 33 '../gm/gm.cpp', | |
| 34 '../gm/gm.h', | |
| 35 | |
| 36 '../samplecode/GMSampleView.h', | 26 '../samplecode/GMSampleView.h', |
| 37 '../samplecode/ClockFaceView.cpp', | 27 '../samplecode/ClockFaceView.cpp', |
| 38 '../samplecode/OverView.cpp', | 28 '../samplecode/OverView.cpp', |
| 39 '../samplecode/OverView.h', | 29 '../samplecode/OverView.h', |
| 40 '../samplecode/Sample2PtRadial.cpp', | 30 '../samplecode/Sample2PtRadial.cpp', |
| 41 '../samplecode/SampleAAClip.cpp', | 31 '../samplecode/SampleAAClip.cpp', |
| 42 '../samplecode/SampleAARects.cpp', | 32 '../samplecode/SampleAARects.cpp', |
| 43 '../samplecode/SampleAARectModes.cpp', | 33 '../samplecode/SampleAARectModes.cpp', |
| 44 '../samplecode/SampleAll.cpp', | 34 '../samplecode/SampleAll.cpp', |
| 45 '../samplecode/SampleAnimator.cpp', | 35 '../samplecode/SampleAnimator.cpp', |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 }], | 304 }], |
| 315 ], | 305 ], |
| 316 'msvs_settings': { | 306 'msvs_settings': { |
| 317 'VCLinkerTool': { | 307 'VCLinkerTool': { |
| 318 'SubSystem': '2', | 308 'SubSystem': '2', |
| 319 }, | 309 }, |
| 320 }, | 310 }, |
| 321 }, | 311 }, |
| 322 ], | 312 ], |
| 323 } | 313 } |
| OLD | NEW |