diff options
author | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-21 13:12:34 +0000 |
---|---|---|
committer | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-21 13:12:34 +0000 |
commit | 089d1865ae298680c1e34120747d391f62482bb9 (patch) | |
tree | 4cac524d714649a0ed3143179bc849574acd701f /remoting/remoting.gyp | |
parent | 818952be77adbc55b9dd2026c07a5542693d2031 (diff) | |
download | chromium_src-089d1865ae298680c1e34120747d391f62482bb9.zip chromium_src-089d1865ae298680c1e34120747d391f62482bb9.tar.gz chromium_src-089d1865ae298680c1e34120747d391f62482bb9.tar.bz2 |
Implemented shared memory capture method.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/6677083
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78874 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/remoting.gyp')
-rw-r--r-- | remoting/remoting.gyp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp index 88d8266..076763e 100644 --- a/remoting/remoting.gyp +++ b/remoting/remoting.gyp @@ -238,14 +238,19 @@ ], }], ['OS=="linux"', { + 'dependencies': [ + '../build/linux/system.gyp:gtk', + ], 'sources': [ 'host/capturer_linux.cc', 'host/capturer_linux.h', 'host/event_executor_linux.cc', 'host/event_executor_linux.h', + 'host/user_authenticator_linux.cc', 'host/user_authenticator_pam.cc', 'host/user_authenticator_pam.h', - 'host/user_authenticator_linux.cc' + 'host/x_server_pixel_buffer.cc', + 'host/x_server_pixel_buffer.h', ], 'link_settings': { 'libraries': [ @@ -253,6 +258,7 @@ '-lXdamage', '-lXtst', '-lpam', + '-lXext' ], }, }], |