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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/skpdiff/main.cpp ('k') | experimental/skpdiff/skpdiff_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/skpdiff/skpdiff.gyp
diff --git a/experimental/skpdiff/skpdiff.gyp b/experimental/skpdiff/skpdiff.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..5b07a44458fbcf6a7c00a756952707e67ba2ae88
--- /dev/null
+++ b/experimental/skpdiff/skpdiff.gyp
@@ -0,0 +1,35 @@
+# GYP file to build skpdiff.
+#
+# To build on Linux:
+# ./gyp_skia skpdiff.gyp && make skpdiff
+#
+{
+ 'targets': [
+ {
+ 'target_name': 'skpdiff',
+ 'type': 'executable',
+ 'sources': [
+ 'main.cpp',
+ 'SkImageDiffer.cpp',
+ 'SkCLImageDiffer.cpp',
+ 'skpdiff_util.cpp',
+ ],
+ 'dependencies': [
+ '../../gyp/skia_lib.gyp:skia_lib',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '-lOpenCL',
+ ],
+ },
+ },
+ ],
+ 'conditions': [
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2:
« 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