Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1579)

Unified Diff: gyp/SkiaExamples.gyp

Issue 16337012: Smallest possible desktop application that uses Skia to render stuff. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Presentation example Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
+ ]
+ }]
+ ]
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698