| Index: gyp/SkiaExamples.gyp
|
| diff --git a/gyp/SkiaExamples.gyp b/gyp/SkiaExamples.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8ec5b90789d4466ea150bc6ed7940dc4a8c89916
|
| --- /dev/null
|
| +++ b/gyp/SkiaExamples.gyp
|
| @@ -0,0 +1,29 @@
|
| +{
|
| + 'targets' : [
|
| + {
|
| + 'target_name': 'HelloSkia',
|
| + 'type': 'executable',
|
| + 'mac_bundle' : 1,
|
| + 'include_dirs' : [
|
| + '../experimental/SkiaExamples',
|
| + ],
|
| + 'includes': [],
|
| + 'sources': [
|
| + '../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
|
| + ]
|
| + }]
|
| + ]
|
| + }
|
| + ]
|
| +}
|
|
|