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

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: bad... Created 6 years, 1 month 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 | include/core/SkString.h » ('j') | src/core/SkString.cpp » ('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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 'type': 'executable', 270 'type': 'executable',
271 'sources': [ 271 'sources': [
272 '../tools/skimage_main.cpp', 272 '../tools/skimage_main.cpp',
273 ], 273 ],
274 'include_dirs': [ 274 'include_dirs': [
275 # For SkBitmapHasher.h 275 # For SkBitmapHasher.h
276 '../src/utils/', 276 '../src/utils/',
277 '../tools/', 277 '../tools/',
278 ], 278 ],
279 'dependencies': [ 279 'dependencies': [
280 'flags.gyp:flags',
280 'gm_expectations', 281 'gm_expectations',
281 'flags.gyp:flags',
282 'jsoncpp.gyp:jsoncpp', 282 'jsoncpp.gyp:jsoncpp',
283 'skia_lib.gyp:skia_lib', 283 'skia_lib.gyp:skia_lib',
284 ], 284 ],
285 }, 285 },
286 { 286 {
287 'target_name': 'skpinfo', 287 'target_name': 'skpinfo',
288 'type': 'executable', 288 'type': 'executable',
289 'sources': [ 289 'sources': [
290 '../tools/skpinfo.cpp', 290 '../tools/skpinfo.cpp',
291 ], 291 ],
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 'flags.gyp:flags', 706 'flags.gyp:flags',
707 'skia_lib.gyp:skia_lib', 707 'skia_lib.gyp:skia_lib',
708 'resources', 708 'resources',
709 ], 709 ],
710 }, 710 },
711 ], 711 ],
712 }, 712 },
713 ], 713 ],
714 ], 714 ],
715 } 715 }
OLDNEW
« no previous file with comments | « no previous file | include/core/SkString.h » ('j') | src/core/SkString.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698