| 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 '../src/core', | 9 '../src/core', |
| 9 '../src/effects', #needed for BlurMask.h | 10 '../src/effects', #needed for BlurMask.h |
| 10 '../gm', # needed to pull gm.h | 11 '../gm', # needed to pull gm.h |
| 11 '../samplecode', # To pull SampleApp.h and SampleCode.h | 12 '../samplecode', # To pull SampleApp.h and SampleCode.h |
| 12 '../src/pipe/utils', # For TiledPipeController | 13 '../src/pipe/utils', # For TiledPipeController |
| 13 ], | 14 ], |
| 14 'includes': [ | 15 'includes': [ |
| 15 'gmslides.gypi', | 16 'gmslides.gypi', |
| 16 ], | 17 ], |
| 17 'sources': [ | 18 'sources': [ |
| 19 '../debugger/SkDrawCommand.h', |
| 20 '../debugger/SkDrawCommand.cpp', |
| 21 '../debugger/SkDebugCanvas.h', |
| 22 '../debugger/SkDebugCanvas.cpp', |
| 23 '../debugger/SkObjectParser.h', |
| 24 '../debugger/SkObjectParser.cpp', |
| 25 |
| 18 '../gm/gm.cpp', | 26 '../gm/gm.cpp', |
| 19 '../gm/gm.h', | 27 '../gm/gm.h', |
| 20 | 28 |
| 21 '../samplecode/GMSampleView.h', | 29 '../samplecode/GMSampleView.h', |
| 22 '../samplecode/ClockFaceView.cpp', | 30 '../samplecode/ClockFaceView.cpp', |
| 23 '../samplecode/OverView.cpp', | 31 '../samplecode/OverView.cpp', |
| 24 '../samplecode/OverView.h', | 32 '../samplecode/OverView.h', |
| 25 '../samplecode/Sample2PtRadial.cpp', | 33 '../samplecode/Sample2PtRadial.cpp', |
| 26 '../samplecode/SampleAAClip.cpp', | 34 '../samplecode/SampleAAClip.cpp', |
| 27 '../samplecode/SampleAARects.cpp', | 35 '../samplecode/SampleAARects.cpp', |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 }, | 303 }, |
| 296 }, | 304 }, |
| 297 ], | 305 ], |
| 298 } | 306 } |
| 299 | 307 |
| 300 # Local Variables: | 308 # Local Variables: |
| 301 # tab-width:2 | 309 # tab-width:2 |
| 302 # indent-tabs-mode:nil | 310 # indent-tabs-mode:nil |
| 303 # End: | 311 # End: |
| 304 # vim: set expandtab tabstop=2 shiftwidth=2: | 312 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |