blob: dd02c41ac81ffe961bfe1b1183da013bef31c50f [file] [log] [blame]
yangsu@google.com5f802c12011-06-17 15:00:44 +00001{
yangsu@google.com5f802c12011-06-17 15:00:44 +00002 'targets': [
3 {
4 'target_name': 'SimpleCocoaApp',
5 'type': 'executable',
6 'mac_bundle' : 1,
7 'include_dirs' : [
8 '../experimental/SimpleCocoaApp/',
9 ],
10 'sources': [
bungeman@google.comcbd76ae2012-03-21 20:59:49 +000011 '../src/views/mac/SkEventNotifier.h',
12 '../src/views/mac/SkEventNotifier.mm',
13 '../src/views/mac/skia_mac.mm',
14 '../src/views/mac/SkNSView.h',
15 '../src/views/mac/SkNSView.mm',
16 '../src/views/mac/SkOptionsTableView.h',
17 '../src/views/mac/SkOptionsTableView.mm',
18 '../src/views/mac/SkOSWindow_Mac.mm',
19 '../src/views/mac/SkTextFieldCell.h',
20 '../src/views/mac/SkTextFieldCell.m',
rmistry@google.comd6176b02012-08-23 18:14:13 +000021
yangsu@google.coma8540412011-08-30 14:40:49 +000022 '../experimental/SimpleCocoaApp/SimpleApp-Info.plist',
23 '../experimental/SimpleCocoaApp/SimpleApp.h',
24 '../experimental/SimpleCocoaApp/SimpleApp.mm',
rmistry@google.comd6176b02012-08-23 18:14:13 +000025
yangsu@google.com5f802c12011-06-17 15:00:44 +000026 ],
27 'dependencies': [
28 'core.gyp:core',
29 'opts.gyp:opts',
caryclark@google.com11f66142012-06-18 14:40:51 +000030 'ports.gyp:ports',
yangsu@google.com5f802c12011-06-17 15:00:44 +000031 'utils.gyp:utils',
32 'views.gyp:views',
33 'xml.gyp:xml',
34 ],
35 'conditions' : [
36 # Only supports Mac currently
epoger@google.com8846cb22011-07-01 20:20:07 +000037 [ 'skia_os == "mac"', {
yangsu@google.com5f802c12011-06-17 15:00:44 +000038 'sources': [
39 '../include/utils/mac/SkCGUtils.h',
40 '../src/utils/mac/SkCreateCGImageRef.cpp',
41 ],
42 'link_settings': {
43 'libraries': [
yangsu@google.coma8540412011-08-30 14:40:49 +000044 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
yangsu@google.com5f802c12011-06-17 15:00:44 +000045 ],
46 },
47 'xcode_settings' : {
yangsu@google.coma8540412011-08-30 14:40:49 +000048 'INFOPLIST_FILE' : '../experimental/SimpleCocoaApp/SimpleApp-Info.plist',
yangsu@google.com5f802c12011-06-17 15:00:44 +000049 },
50 'mac_bundle_resources' : [
yangsu@google.coma8540412011-08-30 14:40:49 +000051 '../experimental/SimpleCocoaApp/SimpleApp.xib',
yangsu@google.com5f802c12011-06-17 15:00:44 +000052 ],
53 }],
54 ],
55 },
56 ],
57}
58
59# Local Variables:
60# tab-width:2
61# indent-tabs-mode:nil
62# End:
63# vim: set expandtab tabstop=2 shiftwidth=2: