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

Side by Side Diff: experimental/skpdiff/skpdiff.gyp

Issue 16284007: add skpdiff tool to compare bitmaps (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: add commmand line opts Created 7 years, 6 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 | « experimental/skpdiff/main.cpp ('k') | experimental/skpdiff/skpdiff_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # GYP file to build skpdiff.
2 #
3 # To build on Linux:
4 # ./gyp_skia skpdiff.gyp && make skpdiff
5 #
6 {
7 'targets': [
8 {
9 'target_name': 'skpdiff',
10 'type': 'executable',
11 'sources': [
12 'main.cpp',
13 'SkImageDiffer.cpp',
14 'SkCLImageDiffer.cpp',
15 'skpdiff_util.cpp',
16 ],
17 'dependencies': [
18 '../../gyp/skia_lib.gyp:skia_lib',
19 ],
20 'link_settings': {
21 'libraries': [
22 '-lOpenCL',
23 ],
24 },
25 },
26 ],
27 'conditions': [
28 ],
29 }
30
31 # Local Variables:
32 # tab-width:2
33 # indent-tabs-mode:nil
34 # End:
35 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « experimental/skpdiff/main.cpp ('k') | experimental/skpdiff/skpdiff_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698