| OLD | NEW |
| 1 { | 1 { |
| 2 'targets': [ | 2 'targets': [ |
| 3 { | 3 { |
| 4 'target_name': 'SampleApp', | 4 'target_name': 'SampleApp', |
| 5 'type': 'executable', | 5 'type': 'executable', |
| 6 'mac_bundle' : 1, | 6 'mac_bundle' : 1, |
| 7 'include_dirs' : [ | 7 'include_dirs' : [ |
| 8 '../debugger', | 8 '../debugger', |
| 9 '../src/core', | 9 '../src/core', |
| 10 '../src/effects', #needed for BlurMask.h | 10 '../src/effects', #needed for BlurMask.h |
| 11 '../gm', # needed to pull gm.h | 11 '../gm', # needed to pull gm.h |
| 12 '../samplecode', # To pull SampleApp.h and SampleCode.h | 12 '../samplecode', # To pull SampleApp.h and SampleCode.h |
| 13 '../src/pipe/utils', # For TiledPipeController | 13 '../src/pipe/utils', # For TiledPipeController |
| 14 ], | 14 ], |
| 15 'includes': [ | 15 'includes': [ |
| 16 'gmslides.gypi', | 16 'gmslides.gypi', |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 '../debugger/SkDrawCommand.h', | 19 '../src/utils/debugger/SkDrawCommand.h', |
| 20 '../debugger/SkDrawCommand.cpp', | 20 '../src/utils/debugger/SkDrawCommand.cpp', |
| 21 '../debugger/SkDebugCanvas.h', | 21 '../src/utils/debugger/SkDebugCanvas.h', |
| 22 '../debugger/SkDebugCanvas.cpp', | 22 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 23 '../debugger/SkObjectParser.h', | 23 '../src/utils/debugger/SkObjectParser.h', |
| 24 '../debugger/SkObjectParser.cpp', | 24 '../src/utils/debugger/SkObjectParser.cpp', |
| 25 | 25 |
| 26 '../gm/gm.cpp', | 26 '../gm/gm.cpp', |
| 27 '../gm/gm.h', | 27 '../gm/gm.h', |
| 28 | 28 |
| 29 '../samplecode/GMSampleView.h', | 29 '../samplecode/GMSampleView.h', |
| 30 '../samplecode/ClockFaceView.cpp', | 30 '../samplecode/ClockFaceView.cpp', |
| 31 '../samplecode/OverView.cpp', | 31 '../samplecode/OverView.cpp', |
| 32 '../samplecode/OverView.h', | 32 '../samplecode/OverView.h', |
| 33 '../samplecode/Sample2PtRadial.cpp', | 33 '../samplecode/Sample2PtRadial.cpp', |
| 34 '../samplecode/SampleAAClip.cpp', | 34 '../samplecode/SampleAAClip.cpp', |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 }, | 307 }, |
| 308 }, | 308 }, |
| 309 ], | 309 ], |
| 310 } | 310 } |
| 311 | 311 |
| 312 # Local Variables: | 312 # Local Variables: |
| 313 # tab-width:2 | 313 # tab-width:2 |
| 314 # indent-tabs-mode:nil | 314 # indent-tabs-mode:nil |
| 315 # End: | 315 # End: |
| 316 # vim: set expandtab tabstop=2 shiftwidth=2: | 316 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |