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

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: Indentation fixes... Created 7 years, 7 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..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
+ ]
+ }]
+ ]
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698