aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-28 13:19:34 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-28 13:19:34 +0000
commitfe78847f1261553c21b6b6ea3349bea55a695b77 (patch)
tree81016331f39f7c557c035de5094cbaeac7d68e5f /gyp
parent5729387fe012dc05de2b8ae121e4504ec2b54654 (diff)
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@14393 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp')
-rw-r--r--gyp/tools.gyp20
1 files changed, 19 insertions, 1 deletions
diff --git a/gyp/tools.gyp b/gyp/tools.gyp
index 39a784734b..0abed7a155 100644
--- a/gyp/tools.gyp
+++ b/gyp/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',