Chromium Code Reviews| Index: gyp/SkiaExamples.gyp |
| diff --git a/gyp/SkiaExamples.gyp b/gyp/SkiaExamples.gyp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c0308401035cbd41c0ac6fdc2f22a7b7249fda14 |
| --- /dev/null |
| +++ b/gyp/SkiaExamples.gyp |
| @@ -0,0 +1,30 @@ |
| +{ |
| + 'targets' : [ |
| + { |
| + 'target_name': 'HelloSkia', |
|
caryclark
2013/06/10 15:48:40
seems inconsistent to name this here and comment i
sglez
2013/06/11 04:24:38
Changed the target name to SkiaExamples. Also remo
|
| + 'type': 'executable', |
| + 'mac_bundle' : 1, |
| + 'include_dirs' : [ |
| + '../experimental/SkiaExamples', |
| + ], |
| + 'includes': [], |
| + 'sources': [ |
| + '../experimental/SkiaExamples/Presentation.cpp', |
| + #'../experimental/SkiaExamples/HelloSkiaExample.cpp', |
| + '../experimental/SkiaExamples/BaseExample.cpp', |
| + ], |
| + 'dependencies': [ |
| + 'skia_lib.gyp:skia_lib', |
| + 'views.gyp:views', |
| + 'xml.gyp:xml', |
| + ], |
| + 'conditions' : [ |
| + [ 'skia_gpu == 1', { |
| + 'include_dirs' : [ |
| + '../src/gpu', #gl/GrGLUtil.h |
| + ] |
| + }] |
| + ] |
| + } |
| + ] |
| +} |