| OLD | NEW |
| 1 # include this gypi to include all the golden master slides. | 1 # include this gypi to include all the golden master slides. |
| 2 { | 2 { |
| 3 'include_dirs': [ | 3 'include_dirs': [ |
| 4 '../gm', | 4 '../gm', |
| 5 # include dirs needed by particular GMs | 5 # include dirs needed by particular GMs |
| 6 '../src/utils/debugger', | 6 '../src/utils/debugger', |
| 7 '../src/images', | 7 '../src/images', |
| 8 '../src/lazy', | 8 '../src/lazy', |
| 9 ], | 9 ], |
| 10 'dependencies': [ | |
| 11 'tools.gyp:checkerboard', | |
| 12 ], | |
| 13 'conditions': [ | 10 'conditions': [ |
| 14 # If we're building SampleApp on the bots, no need to link in the GM slides. | 11 # If we're building SampleApp on the bots, no need to link in the GM slides. |
| 15 # We're not going to run it; we're only making sure it still builds. | 12 # We're not going to run it; we're only making sure it still builds. |
| 16 # It'd be nice to do this in SampleApp.gypi, but I can't find a way to make
it work. | 13 # It'd be nice to do this in SampleApp.gypi, but I can't find a way to make
it work. |
| 17 [ 'not ("<(_target_name)" == "SampleApp" and skia_is_bot)', { | 14 [ 'not ("<(_target_name)" == "SampleApp" and skia_is_bot)', { |
| 18 'sources': [ | 15 'sources': [ |
| 19 '../gm/aaclip.cpp', | 16 '../gm/aaclip.cpp', |
| 20 '../gm/aarectmodes.cpp', | 17 '../gm/aarectmodes.cpp', |
| 21 '../gm/alphagradients.cpp', | 18 '../gm/alphagradients.cpp', |
| 22 '../gm/arcofzorro.cpp', | 19 '../gm/arcofzorro.cpp', |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 '../gm/shadertext2.cpp', | 247 '../gm/shadertext2.cpp', |
| 251 '../gm/shadertext3.cpp', | 248 '../gm/shadertext3.cpp', |
| 252 | 249 |
| 253 # TODO(reed): Allocates more memory than Android devices are capable of | 250 # TODO(reed): Allocates more memory than Android devices are capable of |
| 254 # fulfilling. See http://skbug.com/1978 | 251 # fulfilling. See http://skbug.com/1978 |
| 255 '../gm/verylargebitmap.cpp', | 252 '../gm/verylargebitmap.cpp', |
| 256 ], | 253 ], |
| 257 }], | 254 }], |
| 258 ], | 255 ], |
| 259 } | 256 } |
| OLD | NEW |