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

Side by Side Diff: gyp/tools.gyp

Issue 60833002: fix multithread related crashes in skpdiff (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: addressing comments Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/skpdiff/SkCLImageDiffer.h » ('j') | tools/skpdiff/SkImageDiffer.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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'type': 'executable', 58 'type': 'executable',
59 'sources': [ 59 'sources': [
60 '../tools/skpdiff/skpdiff_main.cpp', 60 '../tools/skpdiff/skpdiff_main.cpp',
61 '../tools/skpdiff/SkDiffContext.cpp', 61 '../tools/skpdiff/SkDiffContext.cpp',
62 '../tools/skpdiff/SkImageDiffer.cpp', 62 '../tools/skpdiff/SkImageDiffer.cpp',
63 '../tools/skpdiff/SkPMetric.cpp', 63 '../tools/skpdiff/SkPMetric.cpp',
64 '../tools/skpdiff/skpdiff_util.cpp', 64 '../tools/skpdiff/skpdiff_util.cpp',
65 '../tools/flags/SkCommandLineFlags.cpp', 65 '../tools/flags/SkCommandLineFlags.cpp',
66 ], 66 ],
67 'include_dirs': [ 67 'include_dirs': [
68 '../tools/flags' 68 '../tools/flags',
69 '../src/core/', # needed for SkTLList.h
69 ], 70 ],
70 'dependencies': [ 71 'dependencies': [
71 'skia_lib.gyp:skia_lib', 72 'skia_lib.gyp:skia_lib',
72 ], 73 ],
73 'cflags': [ 74 'cflags': [
74 '-O3', 75 '-O3',
75 ], 76 ],
76 'conditions': [ 77 'conditions': [
77 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { 78 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
78 'link_settings': { 79 'link_settings': {
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 }, 480 },
480 ], 481 ],
481 ], 482 ],
482 } 483 }
483 484
484 # Local Variables: 485 # Local Variables:
485 # tab-width:2 486 # tab-width:2
486 # indent-tabs-mode:nil 487 # indent-tabs-mode:nil
487 # End: 488 # End:
488 # vim: set expandtab tabstop=2 shiftwidth=2: 489 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | tools/skpdiff/SkCLImageDiffer.h » ('j') | tools/skpdiff/SkImageDiffer.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698