summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-28 13:19:34 +0000
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-28 13:19:34 +0000
commit465c7b39f7e80d57f7a9253b78c8697f20d6e0b9 (patch)
treeddc0b9e92ba43936dc35ae4f461f9b0c536aa4b0
parent359920658f4dab23d5e167cab8b7855a9f6688a0 (diff)
downloadgyp-465c7b39f7e80d57f7a9253b78c8697f20d6e0b9.tar.gz
gpuveto tool
This CL adds a command line tool to report the suitableForGpuRasterization status of a single skp file. R=bsalomon@google.com, rmistry@google.com Author: robertphillips@google.com Review URL: https://codereview.chromium.org/259663004 git-svn-id: http://skia.googlecode.com/svn/trunk/gyp@14393 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--tools.gyp20
1 files changed, 19 insertions, 1 deletions
diff --git a/tools.gyp b/tools.gyp
index 39a7847..0abed7a 100644
--- a/tools.gyp
+++ b/tools.gyp
@@ -18,6 +18,7 @@
'bench_record',
'bench_playback',
'filter',
+ 'gpuveto',
'lua_app',
'lua_pictures',
'pinspect',
@@ -198,7 +199,24 @@
'skia_lib.gyp:skia_lib',
],
},
-
+ {
+ 'target_name': 'gpuveto',
+ 'type': 'executable',
+ 'sources': [
+ '../tools/gpuveto.cpp',
+ '../tools/LazyDecodeBitmap.cpp',
+ ],
+ 'include_dirs': [
+ '../src/core/',
+ '../src/images',
+ '../src/lazy',
+ '../tools/flags',
+ ],
+ 'dependencies': [
+ 'flags.gyp:flags',
+ 'skia_lib.gyp:skia_lib',
+ ],
+ },
{
'target_name': 'lua_app',
'type': 'executable',