diff options
author | maf@google.com <maf@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-13 23:17:37 +0000 |
---|---|---|
committer | maf@google.com <maf@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-13 23:17:37 +0000 |
commit | fb8d32aab3a33166d3c1814e295eeafbea97174b (patch) | |
tree | 333cebe6d64ed3edb2fc5a3d7ef03fe8f5dec1b1 /o3d/plugin/plugin.gyp | |
parent | ebe89e0676c12a6ebccb35fef1611323d1b35afb (diff) | |
download | chromium_src-fb8d32aab3a33166d3c1814e295eeafbea97174b.zip chromium_src-fb8d32aab3a33166d3c1814e295eeafbea97174b.tar.gz chromium_src-fb8d32aab3a33166d3c1814e295eeafbea97174b.tar.bz2 |
Changes needed to get Mac plugin gyp project build compiling and linking.
Review URL: http://codereview.chromium.org/165433
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23375 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/plugin/plugin.gyp')
-rw-r--r-- | o3d/plugin/plugin.gyp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/o3d/plugin/plugin.gyp b/o3d/plugin/plugin.gyp index e0065ae..b9e22ab 100644 --- a/o3d/plugin/plugin.gyp +++ b/o3d/plugin/plugin.gyp @@ -75,6 +75,9 @@ ], ['OS == "mac"', { + 'dependencies': [ + '../../breakpad/breakpad.gyp:breakpad', + ], 'sources': [ 'mac/config_mac.mm', 'mac/main_mac.mm', @@ -82,13 +85,24 @@ 'mac/plugin_logging-mac.mm', 'mac/plugin_mac.h', 'mac/plugin_mac.mm', + 'mac/graphics_utils_mac.mm', + ], + 'mac_framework_dirs': [ + '../../breakpad/src/client/mac/build/Release', ], 'defines': [ 'XP_MACOSX=1', ], 'link_settings': { 'libraries': [ + '$(SDKROOT)/System/Library/Frameworks/AGL.framework', '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', + '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', + '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', + '$(SDKROOT)/System/Library/Frameworks/QuickTime.framework', + '../../breakpad/src/client/mac/build/Release/Breakpad.framework', + '../../third_party/cg/files/mac/Cg.framework', + '../../third_party/glew/files/lib/libGLEW.a', ], }, }, |