| 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 'conditions': [ | 10 'conditions': [ |
| 11 # 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. |
| 12 # 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. |
| 13 # 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. |
| 14 [ 'not ("<(_target_name)" == "SampleApp" and skia_is_bot)', { | 14 [ 'not ("<(_target_name)" == "SampleApp" and skia_is_bot)', { |
| 15 'sources': [ | 15 'sources': [ |
| 16 '../gm/aaclip.cpp', | 16 '../gm/aaclip.cpp', |
| 17 '../gm/aarectmodes.cpp', | 17 '../gm/aarectmodes.cpp', |
| 18 '../gm/addarc.cpp', | 18 '../gm/addarc.cpp', |
| 19 '../gm/all_bitmap_configs.cpp', |
| 19 '../gm/alphagradients.cpp', | 20 '../gm/alphagradients.cpp', |
| 20 '../gm/arcofzorro.cpp', | 21 '../gm/arcofzorro.cpp', |
| 21 '../gm/arithmode.cpp', | 22 '../gm/arithmode.cpp', |
| 22 '../gm/astcbitmap.cpp', | 23 '../gm/astcbitmap.cpp', |
| 23 '../gm/beziereffects.cpp', | 24 '../gm/beziereffects.cpp', |
| 24 '../gm/beziers.cpp', | 25 '../gm/beziers.cpp', |
| 25 '../gm/bigblurs.cpp', | 26 '../gm/bigblurs.cpp', |
| 26 '../gm/bigmatrix.cpp', | 27 '../gm/bigmatrix.cpp', |
| 27 '../gm/bigtext.cpp', | 28 '../gm/bigtext.cpp', |
| 28 '../gm/bitmapcopy.cpp', | 29 '../gm/bitmapcopy.cpp', |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 '../gm/shadertext2.cpp', | 257 '../gm/shadertext2.cpp', |
| 257 '../gm/shadertext3.cpp', | 258 '../gm/shadertext3.cpp', |
| 258 | 259 |
| 259 # TODO(reed): Allocates more memory than Android devices are capable of | 260 # TODO(reed): Allocates more memory than Android devices are capable of |
| 260 # fulfilling. See http://skbug.com/1978 | 261 # fulfilling. See http://skbug.com/1978 |
| 261 '../gm/verylargebitmap.cpp', | 262 '../gm/verylargebitmap.cpp', |
| 262 ], | 263 ], |
| 263 }], | 264 }], |
| 264 ], | 265 ], |
| 265 } | 266 } |
| OLD | NEW |