aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2016-02-02 11:07:39 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-02 11:07:39 -0800
commit136f517627556f9f831f92bc3e9e51c1ab9241d3 (patch)
treeb51bb9ae783ee300cebd755c16828d29f79e0639 /gyp
parentbf907e628fe245305d0f987aed8b8ecff8356374 (diff)
Modify skiaserve to support drawTo
Diffstat (limited to 'gyp')
-rw-r--r--gyp/skiaserve.gyp18
1 files changed, 15 insertions, 3 deletions
diff --git a/gyp/skiaserve.gyp b/gyp/skiaserve.gyp
index 1c5ce5a94e..c133762b70 100644
--- a/gyp/skiaserve.gyp
+++ b/gyp/skiaserve.gyp
@@ -12,12 +12,24 @@
{
'target_name': 'skiaserve',
'type': 'executable',
- 'sources': [
- '<!@(python find.py ../tools/skiaserve "*.cpp")',
- ],
'include_dirs': [
+ '../src/core',
+ '../src/ports',
+ '../src/utils/debugger',
'../tools/json',
],
+ 'sources': [
+ # Stuff for the debug canvas
+ '../src/utils/debugger/SkDrawCommand.h',
+ '../src/utils/debugger/SkDrawCommand.cpp',
+ '../src/utils/debugger/SkDebugCanvas.h',
+ '../src/utils/debugger/SkDebugCanvas.cpp',
+ '../src/utils/debugger/SkObjectParser.h',
+ '../src/utils/debugger/SkObjectParser.cpp',
+ '../src/utils/debugger/SkOverdrawMode.h',
+ '../src/utils/debugger/SkOverdrawMode.cpp',
+ '<!@(python find.py ../tools/skiaserve "*.cpp")',
+ ],
'dependencies': [
'flags.gyp:flags',
'gputest.gyp:skgputest',