Chromium Code Reviews| Index: gyp/HelloSkia.gyp |
| diff --git a/gyp/HelloSkia.gyp b/gyp/HelloSkia.gyp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2733ab13752c4be8ca597149bdf47c826651599e |
| --- /dev/null |
| +++ b/gyp/HelloSkia.gyp |
| @@ -0,0 +1,29 @@ |
| +{ |
| + 'targets' : [ |
| + { |
| + 'target_name': 'HelloSkia', |
| + 'type': 'executable', |
| + 'mac_bundle' : 1, |
| + 'include_dirs' : [ |
| + '../helloskia', |
|
caryclark
2013/06/03 19:02:01
please move everything (except for this file) into
sglez
2013/06/03 20:24:07
Done.
|
| + ], |
| + 'includes': [ |
| + ], |
| + 'sources': [ |
| + '../helloskia/HelloSkia.cpp', |
| + ], |
| + 'dependencies': [ |
| + 'skia_lib.gyp:skia_lib', |
| + 'views.gyp:views', |
| + 'xml.gyp:xml', |
| + ], |
| + 'conditions' : [ |
| + [ 'skia_gpu == 1', { |
| + 'include_dirs' : [ |
| + '../src/gpu', #gl/GrGLUtil.h |
| + ] |
| + }] |
| + ] |
| + } |
| + ] |
| +} |