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

Side by Side Diff: gyp/tools.gyp

Issue 14670021: Write/compare against expectations in skimage tool. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Instead of appending a string of potentially infinite length, append a single character. Created 7 years, 7 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 | « gyp/gm.gyp ('k') | 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'flags.gyp:flags', 71 'flags.gyp:flags',
72 'images.gyp:images', 72 'images.gyp:images',
73 ], 73 ],
74 }, 74 },
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 'include_dirs': [
82 # For SkBitmapHasher.h
83 '../src/utils/',
84 ],
81 'dependencies': [ 85 'dependencies': [
82 'skia_base_libs.gyp:skia_base_libs', 86 'skia_base_libs.gyp:skia_base_libs',
83 'effects.gyp:effects', 87 'effects.gyp:effects',
88 'flags.gyp:flags',
89 'gm.gyp:gm_expectations',
84 'images.gyp:images', 90 'images.gyp:images',
85 'flags.gyp:flags', 91 'jsoncpp.gyp:jsoncpp',
92 'utils.gyp:utils',
86 ], 93 ],
87 }, 94 },
88 { 95 {
89 'target_name': 'render_pictures', 96 'target_name': 'render_pictures',
90 'type': 'executable', 97 'type': 'executable',
91 'sources': [ 98 'sources': [
92 '../tools/render_pictures_main.cpp', 99 '../tools/render_pictures_main.cpp',
93 ], 100 ],
94 'include_dirs': [ 101 'include_dirs': [
95 '../src/pipe/utils/', 102 '../src/pipe/utils/',
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 }, 309 },
303 ], 310 ],
304 ], 311 ],
305 } 312 }
306 313
307 # Local Variables: 314 # Local Variables:
308 # tab-width:2 315 # tab-width:2
309 # indent-tabs-mode:nil 316 # indent-tabs-mode:nil
310 # End: 317 # End:
311 # vim: set expandtab tabstop=2 shiftwidth=2: 318 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/gm.gyp ('k') | tools/skimage_main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698