diff options
author | joshualitt <joshualitt@chromium.org> | 2015-11-13 11:22:19 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-13 11:22:19 -0800 |
commit | 04d52f3a92bb3d72e035a7c002926953edb0b505 (patch) | |
tree | d035e4577b7295dd93c800139d8be0ec60b45847 /gyp | |
parent | d28ada7fd6495923d8756f9738b8ca7044481b1d (diff) |
Create a standalone example for using Skia with SDL
BUG=skia:
Review URL: https://codereview.chromium.org/1442573003
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/example.gyp | 15 |
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', + ], + }, ], } |