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

Side by Side Diff: gyp/tools.gyp

Issue 14089002: Updates for the skimage tool. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Respond to comments Created 7 years, 8 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/skimage_main.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 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 { 75 {
76 'target_name': 'skimage', 76 'target_name': 'skimage',
77 'type': 'executable', 77 'type': 'executable',
78 'sources': [ 78 'sources': [
79 '../tools/skimage_main.cpp', 79 '../tools/skimage_main.cpp',
80 ], 80 ],
81 'dependencies': [ 81 'dependencies': [
82 'skia_base_libs.gyp:skia_base_libs', 82 'skia_base_libs.gyp:skia_base_libs',
83 'effects.gyp:effects', 83 'effects.gyp:effects',
84 'images.gyp:images', 84 'images.gyp:images',
85 'flags.gyp:flags',
85 ], 86 ],
86 }, 87 },
87 { 88 {
88 'target_name': 'render_pictures', 89 'target_name': 'render_pictures',
89 'type': 'executable', 90 'type': 'executable',
90 'sources': [ 91 'sources': [
91 '../tools/render_pictures_main.cpp', 92 '../tools/render_pictures_main.cpp',
92 ], 93 ],
93 'include_dirs': [ 94 'include_dirs': [
94 '../src/pipe/utils/', 95 '../src/pipe/utils/',
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 }, 302 },
302 ], 303 ],
303 ], 304 ],
304 } 305 }
305 306
306 # Local Variables: 307 # Local Variables:
307 # tab-width:2 308 # tab-width:2
308 # indent-tabs-mode:nil 309 # indent-tabs-mode:nil
309 # End: 310 # End:
310 # vim: set expandtab tabstop=2 shiftwidth=2: 311 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | tools/skimage_main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698