| 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', | |
| 9 '../src/core', | 8 '../src/core', |
| 10 '../src/effects', #needed for BlurMask.h | 9 '../src/effects', #needed for BlurMask.h |
| 11 '../gm', # needed to pull gm.h | 10 '../gm', # needed to pull gm.h |
| 12 '../samplecode', # To pull SampleApp.h and SampleCode.h | 11 '../samplecode', # To pull SampleApp.h and SampleCode.h |
| 13 '../src/pipe/utils', # For TiledPipeController | 12 '../src/pipe/utils', # For TiledPipeController |
| 13 '../src/utils/debugger', |
| 14 ], | 14 ], |
| 15 'includes': [ | 15 'includes': [ |
| 16 'gmslides.gypi', | 16 'gmslides.gypi', |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 '../src/utils/debugger/SkDrawCommand.h', | 19 '../src/utils/debugger/SkDrawCommand.h', |
| 20 '../src/utils/debugger/SkDrawCommand.cpp', | 20 '../src/utils/debugger/SkDrawCommand.cpp', |
| 21 '../src/utils/debugger/SkDebugCanvas.h', | 21 '../src/utils/debugger/SkDebugCanvas.h', |
| 22 '../src/utils/debugger/SkDebugCanvas.cpp', | 22 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 23 '../src/utils/debugger/SkObjectParser.h', | 23 '../src/utils/debugger/SkObjectParser.h', |
| (...skipping 283 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 |