aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-11-13 11:22:19 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-13 11:22:19 -0800
commit04d52f3a92bb3d72e035a7c002926953edb0b505 (patch)
treed035e4577b7295dd93c800139d8be0ec60b45847 /gyp
parentd28ada7fd6495923d8756f9738b8ca7044481b1d (diff)
Create a standalone example for using Skia with SDL
Diffstat (limited to 'gyp')
-rw-r--r--gyp/example.gyp15
1 files changed, 15 insertions, 0 deletions
diff --git a/gyp/example.gyp b/gyp/example.gyp
index a01717e67e..75d53b317b 100644
--- a/gyp/example.gyp
+++ b/gyp/example.gyp
@@ -23,5 +23,20 @@
'views.gyp:views',
],
},
+ {
+ 'target_name': 'SkiaSDLExample',
+ 'type': 'executable',
+ 'include_dirs' : [
+ '../include/gpu',
+ '../src/gpu',
+ ],
+ 'sources': [
+ '../example/SkiaSDLExample.cpp',
+ ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'sdl.gyp:sdl',
+ ],
+ },
],
}