Gyp files for Cocoa Debugger and Simple Cocoa App
http://codereview.appspot.com/4632045/


git-svn-id: http://skia.googlecode.com/svn/trunk@1632 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gyp/SimpleCocoaApp.gyp b/gyp/SimpleCocoaApp.gyp
new file mode 100644
index 0000000..68caa05
--- /dev/null
+++ b/gyp/SimpleCocoaApp.gyp
@@ -0,0 +1,66 @@
+{
+  'includes': [
+    'target_defaults.gypi',
+  ],
+  'targets': [
+    {
+      'target_name': 'SimpleCocoaApp',
+      'type': 'executable',
+      'mac_bundle' : 1,
+      'include_dirs' : [
+        '../experimental/SimpleCocoaApp/',
+      ],
+      'sources': [
+        '../experimental/SimpleCocoaApp/main.m',
+        '../experimental/SimpleCocoaApp/SampleWindow.mm',
+        '../experimental/SimpleCocoaApp/SimpleCocoaApp-Info.plist',
+        '../experimental/SimpleCocoaApp/SimpleCocoaApp_Prefix.pch',
+        '../experimental/SimpleCocoaApp/SimpleCocoaAppDelegate.mm',
+        '../experimental/SimpleCocoaApp/SkNSView.mm',
+        '../experimental/SimpleCocoaApp/SkNSWindow.mm',
+      ],
+      'dependencies': [
+        'core.gyp:core',
+        'opts.gyp:opts',
+        'utils.gyp:utils',
+        'views.gyp:views',
+        'xml.gyp:xml',
+      ],
+      'conditions' : [
+        # Only supports Mac currently
+        [ 'OS == "mac"', {
+          'sources': [
+            '../include/utils/mac/SkCGUtils.h',
+            '../src/utils/mac/SkCreateCGImageRef.cpp',
+          ],
+          'link_settings': {
+            'libraries': [
+              '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
+              '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
+            ],
+            'libraries!': [
+              # Currently skia mac apps rely on Carbon and AGL for UI. Future
+              # apps should use Cocoa instead and dependencies on Carbon and AGL
+              # should eventually be removed
+              '$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
+              '$(SDKROOT)/System/Library/Frameworks/AGL.framework',
+            ],
+          },
+          'xcode_settings' : {
+            'INFOPLIST_FILE' : '../experimental/SimpleCocoaApp/SimpleCocoaApp-Info.plist',
+          },
+          'mac_bundle_resources' : [
+            '../experimental/SimpleCocoaApp/English.lproj/InfoPlist.strings',
+            '../experimental/SimpleCocoaApp/English.lproj/MainMenu.xib',
+          ],
+        }],
+      ],
+    },
+  ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2: