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

Side by Side Diff: gyp/tools.gyp

Issue 12381087: Convert skhello tool to SkFlags API. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: review Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/skhello.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build various tools. 1 # GYP file to build various tools.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia tools.gyp && make tools 4 # ./gyp_skia tools.gyp && make tools
5 # 5 #
6 # Building on other platforms not tested yet. 6 # Building on other platforms not tested yet.
7 # 7 #
8 { 8 {
9 'includes': [ 9 'includes': [
10 'apptype_console.gypi', 10 'apptype_console.gypi',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 'skia_base_libs.gyp:skia_base_libs', 59 'skia_base_libs.gyp:skia_base_libs',
60 'effects.gyp:effects', 60 'effects.gyp:effects',
61 'images.gyp:images', 61 'images.gyp:images',
62 ], 62 ],
63 }, 63 },
64 { 64 {
65 'target_name': 'skhello', 65 'target_name': 'skhello',
66 'type': 'executable', 66 'type': 'executable',
67 'sources': [ 67 'sources': [
68 '../tools/skhello.cpp', 68 '../tools/skhello.cpp',
69 '../tools/SkFlags.h',
70 '../tools/SkFlags.cpp',
69 ], 71 ],
70 'dependencies': [ 72 'dependencies': [
71 'skia_base_libs.gyp:skia_base_libs', 73 'skia_base_libs.gyp:skia_base_libs',
72 'effects.gyp:effects', 74 'effects.gyp:effects',
73 'images.gyp:images', 75 'images.gyp:images',
74 ], 76 ],
75 }, 77 },
76 { 78 {
77 'target_name': 'skimage', 79 'target_name': 'skimage',
78 'type': 'executable', 80 'type': 'executable',
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 ], 233 ],
232 }, 234 },
233 ], 235 ],
234 } 236 }
235 237
236 # Local Variables: 238 # Local Variables:
237 # tab-width:2 239 # tab-width:2
238 # indent-tabs-mode:nil 240 # indent-tabs-mode:nil
239 # End: 241 # End:
240 # vim: set expandtab tabstop=2 shiftwidth=2: 242 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | tools/skhello.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698