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

Unified Diff: gyp/tools.gyp

Issue 1502173003: When was SkPDiff last used? (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years 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 | « gyp/common_variables.gypi ('k') | tools/skpdiff/README » ('j') | 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 423f969a7c2af7e11d835bd60d22f1dcec2b5081..590ac3b1755b7d2b5b1a7a37c3fc4e14465ae464 100644
--- a/gyp/tools.gyp
+++ b/gyp/tools.gyp
@@ -28,7 +28,6 @@
'pinspect',
'skdiff',
'skhello',
- 'skpdiff',
'skpinfo',
'skpmaker',
'test_image_decoder',
@@ -153,65 +152,6 @@
],
},
{
- 'target_name': 'skpdiff',
- 'type': 'executable',
- 'sources': [
- '../tools/skpdiff/skpdiff_main.cpp',
- '../tools/skpdiff/SkDiffContext.cpp',
- '../tools/skpdiff/SkImageDiffer.cpp',
- '../tools/skpdiff/SkPMetric.cpp',
- '../tools/skpdiff/skpdiff_util.cpp',
- ],
- 'include_dirs': [
- '../include/private',
- '../src/core/', # needed for SkTLList.h
- '../tools/', # needed for picture_utils::replace_char
- ],
- 'dependencies': [
- 'flags.gyp:flags',
- 'skia_lib.gyp:skia_lib',
- 'tools.gyp:picture_utils',
- ],
- 'cflags': [
- '-O3',
- ],
- 'conditions': [
- [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
- 'link_settings': {
- 'libraries': [
- '-lrt',
- '-pthread',
- ],
- },
- }],
- ['skia_opencl', {
- 'sources': [
- '../tools/skpdiff/SkCLImageDiffer.cpp',
- '../tools/skpdiff/SkDifferentPixelsMetric_opencl.cpp',
- ],
- 'conditions': [
- [ 'skia_os == "mac"', {
- 'link_settings': {
- 'libraries': [
- '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework',
- ]
- }
- }, {
- 'link_settings': {
- 'libraries': [
- '-lOpenCL',
- ],
- },
- }],
- ],
- }, { # !skia_opencl
- 'sources': [
- '../tools/skpdiff/SkDifferentPixelsMetric_cpu.cpp',
- ],
- }],
- ],
- },
- {
'target_name': 'skpmaker',
'type': 'executable',
'sources': [
« no previous file with comments | « gyp/common_variables.gypi ('k') | tools/skpdiff/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698