summaryrefslogtreecommitdiff
path: root/experimental.gyp
diff options
context:
space:
mode:
authorsglez@google.com <sglez@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-24 17:48:03 +0000
committersglez@google.com <sglez@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-24 17:48:03 +0000
commit463558a519673337b3b5464f632e3f69183ad406 (patch)
treef1a37600e1dac86c5f5f9d172a0564c757d796f3 /experimental.gyp
parent1f1e4fd7b688aa5a63d7444cb74e2cbccefe6c66 (diff)
downloadgyp-463558a519673337b3b5464f632e3f69183ad406.tar.gz
SkiaExamples improvements.
Make it possible for a client to write a Hello World in less than 50 lines. R=caryclark@google.com Review URL: https://codereview.chromium.org/18574002 git-svn-id: http://skia.googlecode.com/svn/trunk/gyp@10319 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental.gyp')
-rw-r--r--experimental.gyp69
1 files changed, 69 insertions, 0 deletions
diff --git a/experimental.gyp b/experimental.gyp
index 09711ac..5552b4c 100644
--- a/experimental.gyp
+++ b/experimental.gyp
@@ -18,6 +18,75 @@
],
},
},
+ {
+ 'target_name': 'SkiaExamples',
+ 'type': 'executable',
+ 'mac_bundle' : 1,
+ 'include_dirs' : [
+ '../tools/flags',
+ ],
+ 'includes': [],
+ 'sources': [
+ '../experimental/SkiaExamples/SkExample.h',
+ '../experimental/SkiaExamples/SkExample.cpp',
+ '../experimental/SkiaExamples/HelloSkiaExample.cpp',
+ ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'views.gyp:views',
+ 'xml.gyp:xml',
+ 'flags.gyp:flags'
+ ],
+ 'conditions' : [
+ [ 'skia_gpu == 1', {
+ 'include_dirs' : [
+ '../src/gpu', #gl/GrGLUtil.h
+ ]
+ }],
+ [ 'skia_os == "win"', {
+ 'sources' : [
+ '../src/views/win/SkOSWindow_Win.cpp',
+ '../src/views/win/skia_win.cpp',
+ ],
+ },
+ ],
+
+ [ 'skia_os == "mac"', {
+ 'sources': [
+
+# SkiaExamples specific files
+ '../experimental/SkiaExamples/SkiaExamples-Info.plist',
+ '../experimental/SkiaExamples/SkExampleNSView.h',
+ '../experimental/SkiaExamples/SkExampleNSView.mm',
+
+# Mac files
+ '../src/views/mac/SampleAppDelegate.h',
+ '../src/views/mac/SampleAppDelegate.mm',
+ '../src/views/mac/SkEventNotifier.mm',
+ '../src/views/mac/skia_mac.mm',
+ '../src/views/mac/SkNSView.h',
+ '../src/views/mac/SkNSView.mm',
+ '../src/views/mac/SkOptionsTableView.h',
+ '../src/views/mac/SkOptionsTableView.mm',
+ '../src/views/mac/SkOSWindow_Mac.mm',
+ '../src/views/mac/SkTextFieldCell.h',
+ '../src/views/mac/SkTextFieldCell.m',
+ ],
+ 'include_dirs' : [
+ '../src/views/mac/'
+ ],
+ 'link_settings': {
+ },
+ 'xcode_settings' : {
+ 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.plist',
+ },
+ 'mac_bundle_resources' : [
+ '../experimental/SkiaExamples/SkiaExamples.xib'
+ ],
+ }
+ ],
+ ],
+ }
],
}