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

Unified Diff: experimental/skpdiff/skpdiff.gyp

Issue 19608005: move skpdiff into tools (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 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
deleted file mode 100644
index 0a692294a9f8b872be2a7492e52f58daa9e2cdd2..0000000000000000000000000000000000000000
--- a/experimental/skpdiff/skpdiff.gyp
+++ /dev/null
@@ -1,70 +0,0 @@
-# GYP file to build skpdiff.
-#
-# To build on Linux:
-# ./gyp_skia skpdiff.gyp && make skpdiff
-#
-{
- 'targets': [
- {
- 'target_name': 'skpdiff',
- 'type': 'executable',
- 'sources': [
- 'main.cpp',
- 'SkDiffContext.cpp',
- 'SkImageDiffer.cpp',
- 'SkPMetric.cpp',
- 'skpdiff_util.cpp',
- '../../tools/flags/SkCommandLineFlags.cpp',
- ],
- 'include_dirs': [
- '../../tools/flags'
- ],
- 'dependencies': [
- '../../gyp/skia_lib.gyp:skia_lib',
- ],
- 'cflags': [
- '-O3',
- ],
- 'conditions': [
- [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
- 'link_settings': {
- 'libraries': [
- '-lrt',
- ],
- },
- }],
- ['skia_opencl', {
- 'sources': [
- 'SkCLImageDiffer.cpp',
- 'SkDifferentPixelsMetric_opencl.cpp',
- ],
- 'conditions': [
- [ 'skia_os == "mac"', {
- 'link_settings': {
- 'libraries': [
- '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework',
- ]
- }
- }, {
- 'link_settings': {
- 'libraries': [
- '-lOpenCL',
- ],
- },
- }],
- ],
- }, { # !skia_opencl
- 'sources': [
- 'SkDifferentPixelsMetric_cpu.cpp',
- ],
- }],
- ],
- },
- ],
-}
-
-# 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