| 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 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 '../src/utils/SkLua.cpp', | 136 '../src/utils/SkLua.cpp', |
| 137 ], | 137 ], |
| 138 'sources!': [ | 138 'sources!': [ |
| 139 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c
ompile | 139 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c
ompile |
| 140 '../samplecode/SampleTests.cpp', #includes unknown file SkShaderExtras
.h | 140 '../samplecode/SampleTests.cpp', #includes unknown file SkShaderExtras
.h |
| 141 '../samplecode/SampleWarp.cpp', | 141 '../samplecode/SampleWarp.cpp', |
| 142 '../samplecode/SampleFontCache.cpp', | 142 '../samplecode/SampleFontCache.cpp', |
| 143 ], | 143 ], |
| 144 'dependencies': [ | 144 'dependencies': [ |
| 145 'skia_base_libs.gyp:skia_base_libs', | 145 'skia_base_libs.gyp:skia_base_libs', |
| 146 'effects.gyp:effects', | |
| 147 'images.gyp:images', | |
| 148 'views.gyp:views', | 146 'views.gyp:views', |
| 149 'animator.gyp:animator', | 147 'animator.gyp:animator', |
| 150 'xml.gyp:xml', | 148 'xml.gyp:xml', |
| 151 'experimental.gyp:experimental', | 149 'experimental.gyp:experimental', |
| 152 'pdf.gyp:pdf', | 150 'pdf.gyp:pdf', |
| 153 'views_animated.gyp:views_animated', | 151 'views_animated.gyp:views_animated', |
| 154 'lua.gyp:lua', | 152 'lua.gyp:lua', |
| 155 ], | 153 ], |
| 156 'conditions' : [ | 154 'conditions' : [ |
| 157 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { | 155 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 }, | 307 }, |
| 310 }, | 308 }, |
| 311 ], | 309 ], |
| 312 } | 310 } |
| 313 | 311 |
| 314 # Local Variables: | 312 # Local Variables: |
| 315 # tab-width:2 | 313 # tab-width:2 |
| 316 # indent-tabs-mode:nil | 314 # indent-tabs-mode:nil |
| 317 # End: | 315 # End: |
| 318 # vim: set expandtab tabstop=2 shiftwidth=2: | 316 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |