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/alphagradients.cpp', | 18 '../gm/alphagradients.cpp', |
19 '../gm/arcofzorro.cpp', | 19 '../gm/arcofzorro.cpp', |
20 '../gm/arithmode.cpp', | 20 '../gm/arithmode.cpp', |
21 '../gm/astcbitmap.cpp', | 21 '../gm/astcbitmap.cpp', |
22 '../gm/beziereffects.cpp', | 22 '../gm/beziereffects.cpp', |
23 '../gm/beziers.cpp', | 23 '../gm/beziers.cpp', |
24 '../gm/bigblurs.cpp', | 24 '../gm/bigblurs.cpp', |
25 '../gm/bigmatrix.cpp', | 25 '../gm/bigmatrix.cpp', |
26 '../gm/bigtext.cpp', | 26 '../gm/bigtext.cpp', |
27 '../gm/bitmapcopy.cpp', | 27 '../gm/bitmapcopy.cpp', |
28 '../gm/bitmapmatrix.cpp', | |
29 '../gm/bitmapfilters.cpp', | 28 '../gm/bitmapfilters.cpp', |
30 '../gm/bitmappremul.cpp', | 29 '../gm/bitmappremul.cpp', |
31 '../gm/bitmaprect.cpp', | 30 '../gm/bitmaprect.cpp', |
32 '../gm/bitmaprecttest.cpp', | 31 '../gm/bitmaprecttest.cpp', |
33 '../gm/bitmapscroll.cpp', | 32 '../gm/bitmapscroll.cpp', |
34 '../gm/bitmapshader.cpp', | 33 '../gm/bitmapshader.cpp', |
35 '../gm/bitmapsource.cpp', | 34 '../gm/bitmapsource.cpp', |
36 '../gm/bleed.cpp', | 35 '../gm/bleed.cpp', |
37 '../gm/blurcircles.cpp', | 36 '../gm/blurcircles.cpp', |
38 '../gm/blurs.cpp', | 37 '../gm/blurs.cpp', |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 '../gm/shadertext2.cpp', | 242 '../gm/shadertext2.cpp', |
244 '../gm/shadertext3.cpp', | 243 '../gm/shadertext3.cpp', |
245 | 244 |
246 # TODO(reed): Allocates more memory than Android devices are capable of | 245 # TODO(reed): Allocates more memory than Android devices are capable of |
247 # fulfilling. See http://skbug.com/1978 | 246 # fulfilling. See http://skbug.com/1978 |
248 '../gm/verylargebitmap.cpp', | 247 '../gm/verylargebitmap.cpp', |
249 ], | 248 ], |
250 }], | 249 }], |
251 ], | 250 ], |
252 } | 251 } |
OLD | NEW |