| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 'skia_lib.gyp:skia_lib', | 145 'skia_lib.gyp:skia_lib', |
| 146 'views.gyp:views', | 146 'views.gyp:views', |
| 147 'animator.gyp:animator', | 147 'animator.gyp:animator', |
| 148 'xml.gyp:xml', | 148 'xml.gyp:xml', |
| 149 'experimental.gyp:experimental', | 149 'experimental.gyp:experimental', |
| 150 'pdf.gyp:pdf', | 150 'pdf.gyp:pdf', |
| 151 'views_animated.gyp:views_animated', | 151 'views_animated.gyp:views_animated', |
| 152 'lua.gyp:lua', | 152 'lua.gyp:lua', |
| 153 ], | 153 ], |
| 154 'conditions' : [ | 154 'conditions' : [ |
| 155 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { | 155 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { |
| 156 'sources!': [ | 156 'sources!': [ |
| 157 '../samplecode/SampleDecode.cpp', | 157 '../samplecode/SampleDecode.cpp', |
| 158 ], | 158 ], |
| 159 }], | 159 }], |
| 160 [ 'skia_os == "win"', { | 160 [ 'skia_os == "win"', { |
| 161 'sources!': [ | 161 'sources!': [ |
| 162 # require UNIX functions | 162 # require UNIX functions |
| 163 '../samplecode/SampleEncode.cpp', | 163 '../samplecode/SampleEncode.cpp', |
| 164 ], | 164 ], |
| 165 }], | 165 }], |
| (...skipping 141 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 |