Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: gyp/gmslides.gypi

Issue 834303005: Factor out checkerboard function in gm and sampleapp into tools. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rename to sk_tools::DrawCheckerboard Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/SampleApp.gyp ('k') | gyp/tools.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 ],
10 'conditions': [ 13 'conditions': [
11 # If we're building SampleApp on the bots, no need to link in the GM slides. 14 # 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. 15 # 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. 16 # 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)', { 17 [ 'not ("<(_target_name)" == "SampleApp" and skia_is_bot)', {
15 'sources': [ 18 'sources': [
16 '../gm/aaclip.cpp', 19 '../gm/aaclip.cpp',
17 '../gm/aarectmodes.cpp', 20 '../gm/aarectmodes.cpp',
18 '../gm/alphagradients.cpp', 21 '../gm/alphagradients.cpp',
19 '../gm/arcofzorro.cpp', 22 '../gm/arcofzorro.cpp',
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 '../gm/shadertext2.cpp', 250 '../gm/shadertext2.cpp',
248 '../gm/shadertext3.cpp', 251 '../gm/shadertext3.cpp',
249 252
250 # TODO(reed): Allocates more memory than Android devices are capable of 253 # TODO(reed): Allocates more memory than Android devices are capable of
251 # fulfilling. See http://skbug.com/1978 254 # fulfilling. See http://skbug.com/1978
252 '../gm/verylargebitmap.cpp', 255 '../gm/verylargebitmap.cpp',
253 ], 256 ],
254 }], 257 }],
255 ], 258 ],
256 } 259 }
OLDNEW
« no previous file with comments | « gyp/SampleApp.gyp ('k') | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698