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

Unified Diff: gyp/tools.gyp

Issue 16284007: add skpdiff tool to compare bitmaps (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« experimental/skpdiff/main.cpp ('K') | « experimental/skpdiff/skpdiff_util.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/tools.gyp
diff --git a/gyp/tools.gyp b/gyp/tools.gyp
index 25aa1dbf066f91355e1e0ab759f3d1cdacf47a28..35f2d9cb024babb92d2ca45c197798f59b33f935 100644
--- a/gyp/tools.gyp
+++ b/gyp/tools.gyp
@@ -57,6 +57,23 @@
],
},
{
+ 'target_name': 'skpdiff',
djsollen 2013/06/12 13:32:04 we need to figure out a better place to put this.
Zach Reizner 2013/06/12 21:57:47 Done.
+ 'type': 'executable',
+ 'sources': [
+ '../experimental/skpdiff/main.cpp',
+ '../experimental/skpdiff/SkImageDiffer.cpp',
+ '../experimental/skpdiff/skpdiff_util.cpp',
+ ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
djsollen 2013/06/12 13:32:04 you will need to update this line to be ../../gyp/
Zach Reizner 2013/06/12 21:57:47 Done.
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '-lOpenCL',
+ ],
+ },
+ },
+ {
'target_name': 'skhello',
'type': 'executable',
'sources': [
« experimental/skpdiff/main.cpp ('K') | « experimental/skpdiff/skpdiff_util.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698