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

Unified Diff: gyp/HelloSkia.gyp

Issue 16337012: Smallest possible desktop application that uses Skia to render stuff. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: GPU support 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/HelloSkia.gyp
diff --git a/gyp/HelloSkia.gyp b/gyp/HelloSkia.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..769ab3a1b19f71e5af8d1bee885baf9f6e88e0af
--- /dev/null
+++ b/gyp/HelloSkia.gyp
@@ -0,0 +1,29 @@
+{
+ 'targets' : [
+ {
+ 'target_name': 'HelloSkia',
+ 'type': 'executable',
+ 'mac_bundle' : 1,
+ 'include_dirs' : [
+ '../experimental/HelloSkia',
+ ],
+ 'includes': [
+ ],
+ 'sources': [
+ '../experimental/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
+ ]
+ }]
+ ]
+ }
+ ]
+}
« experimental/HelloSkia/HelloSkia.cpp ('K') | « experimental/HelloSkia/HelloSkia.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698