diff options
author | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 17:11:01 +0000 |
---|---|---|
committer | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 17:11:01 +0000 |
commit | 9fdc2fd095ab601356c6912b6b31e77ad7b5ce22 (patch) | |
tree | 7bcef4fe46c9711d32d0e1030dc900aef3e2966d /remoting | |
parent | ae0637b962a4f62891504ca9e50c6237925188c5 (diff) | |
download | chromium_src-9fdc2fd095ab601356c6912b6b31e77ad7b5ce22.zip chromium_src-9fdc2fd095ab601356c6912b6b31e77ad7b5ce22.tar.gz chromium_src-9fdc2fd095ab601356c6912b6b31e77ad7b5ce22.tar.bz2 |
Get remoting.gyp depending only on the bits of gfx we need to depend on.
BUG=none
TEST=build
Review URL: http://codereview.chromium.org/2849031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51268 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/remoting.gyp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp index fd37683..d0ad8cc 100644 --- a/remoting/remoting.gyp +++ b/remoting/remoting.gyp @@ -104,7 +104,7 @@ 'target_name': 'chromoting_base', 'type': '<(library)', 'dependencies': [ - '../gfx/gfx.gyp:*', + '../gfx/gfx.gyp:gfx', '../media/media.gyp:media', '../third_party/protobuf2/protobuf.gyp:protobuf_lite', 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', @@ -193,6 +193,11 @@ 'host/event_executor_mac.cc', 'host/event_executor_mac.h', ], + 'link_settings': { + 'libraries': [ + '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', + ], + }, }], ], }, # end of target 'chromoting_host' @@ -311,7 +316,7 @@ 'chromoting_jingle_glue', '../base/base.gyp:base', '../base/base.gyp:base_i18n', - '../gfx/gfx.gyp:*', + '../gfx/gfx.gyp:gfx', '../testing/gmock.gyp:gmock', '../testing/gtest.gyp:gtest', ], |