blob: 6d7b9258071e4205a2c4258f203771f0cf7bd3f1 [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': [
djsollen@google.com52f02972013-06-03 12:10:19 +000028 'skia_lib.gyp:skia_lib',
yangsu@google.com5f802c12011-06-17 15:00:44 +000029 'views.gyp:views',
30 'xml.gyp:xml',
31 ],
32 'conditions' : [
33 # Only supports Mac currently
epoger@google.com8846cb22011-07-01 20:20:07 +000034 [ 'skia_os == "mac"', {
yangsu@google.com5f802c12011-06-17 15:00:44 +000035 'sources': [
36 '../include/utils/mac/SkCGUtils.h',
37 '../src/utils/mac/SkCreateCGImageRef.cpp',
38 ],
39 'link_settings': {
40 'libraries': [
yangsu@google.coma8540412011-08-30 14:40:49 +000041 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
yangsu@google.com5f802c12011-06-17 15:00:44 +000042 ],
43 },
44 'xcode_settings' : {
yangsu@google.coma8540412011-08-30 14:40:49 +000045 'INFOPLIST_FILE' : '../experimental/SimpleCocoaApp/SimpleApp-Info.plist',
yangsu@google.com5f802c12011-06-17 15:00:44 +000046 },
47 'mac_bundle_resources' : [
yangsu@google.coma8540412011-08-30 14:40:49 +000048 '../experimental/SimpleCocoaApp/SimpleApp.xib',
yangsu@google.com5f802c12011-06-17 15:00:44 +000049 ],
50 }],
51 ],
52 },
53 ],
54}
55
56# Local Variables:
57# tab-width:2
58# indent-tabs-mode:nil
59# End:
60# vim: set expandtab tabstop=2 shiftwidth=2: