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

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: fix glint warnings 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
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:

Powered by Google App Engine
This is Rietveld 408576698