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

Side by Side Diff: gyp/tools.gyp

Issue 646213002: Eliminate one copy of replace_char() function. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | tools/picture_utils.h » ('j') | tools/picture_utils.h » ('J')
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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 'type': 'executable', 271 'type': 'executable',
272 'sources': [ 272 'sources': [
273 '../tools/skimage_main.cpp', 273 '../tools/skimage_main.cpp',
274 ], 274 ],
275 'include_dirs': [ 275 'include_dirs': [
276 # For SkBitmapHasher.h 276 # For SkBitmapHasher.h
277 '../src/utils/', 277 '../src/utils/',
278 '../tools/', 278 '../tools/',
279 ], 279 ],
280 'dependencies': [ 280 'dependencies': [
281 'flags.gyp:flags',
281 'gm_expectations', 282 'gm_expectations',
282 'flags.gyp:flags',
283 'jsoncpp.gyp:jsoncpp', 283 'jsoncpp.gyp:jsoncpp',
284 'picture_utils',
284 'skia_lib.gyp:skia_lib', 285 'skia_lib.gyp:skia_lib',
285 ], 286 ],
286 }, 287 },
287 { 288 {
288 'target_name': 'skpinfo', 289 'target_name': 'skpinfo',
289 'type': 'executable', 290 'type': 'executable',
290 'sources': [ 291 'sources': [
291 '../tools/skpinfo.cpp', 292 '../tools/skpinfo.cpp',
292 ], 293 ],
293 'include_dirs': [ 294 'include_dirs': [
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 'flags.gyp:flags', 708 'flags.gyp:flags',
708 'skia_lib.gyp:skia_lib', 709 'skia_lib.gyp:skia_lib',
709 'resources', 710 'resources',
710 ], 711 ],
711 }, 712 },
712 ], 713 ],
713 }, 714 },
714 ], 715 ],
715 ], 716 ],
716 } 717 }
OLDNEW
« no previous file with comments | « no previous file | tools/picture_utils.h » ('j') | tools/picture_utils.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698