Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1310)

Unified Diff: remoting/chromoting.gyp

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/base/protocol_decoder_unittest.cc ('k') | remoting/client/chromoting_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/chromoting.gyp
diff --git a/remoting/chromoting.gyp b/remoting/chromoting.gyp
index 7951abe11cf95f61807bfcbe09b99ef8deb154d0..0f1547031984a70d5a18615976c7ae9b9ad5be3d 100644
--- a/remoting/chromoting.gyp
+++ b/remoting/chromoting.gyp
@@ -70,7 +70,6 @@
'client/pepper/pepper_main.cc',
],
'conditions': [
-
['OS=="linux" and target_arch=="x64" and linux_fpic!=1', {
# Shared libraries need -fPIC on x86-64
'cflags': [
@@ -194,9 +193,14 @@
'chromoting_jingle_glue',
],
'sources': [
+ 'client/client_util.cc',
+ 'client/client_util.h',
+ 'client/chromoting_view.h',
'client/decoder.h',
'client/decoder_verbatim.cc',
'client/decoder_verbatim.h',
+ 'client/host_connection.cc',
+ 'client/host_connection.h',
],
}, # end of target 'chromoting_client'
@@ -228,13 +232,34 @@
'chromoting_jingle_glue',
],
'sources': [
- 'client/host_connection.cc',
- 'client/host_connection.h',
'client/simple_client.cc',
],
}, # end of target 'chromoting_simple_client'
{
+ 'target_name': 'chromoting_x11_client',
+ 'type': 'executable',
+ 'dependencies': [
+ 'chromoting_base',
+ 'chromoting_client',
+ 'chromoting_jingle_glue',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '-ldl',
+ '-lX11',
+ '-lXrender',
+ '-lXext',
+ ],
+ },
+ 'sources': [
+ 'client/x11_client.cc',
+ 'client/x11_view.cc',
+ 'client/x11_view.h',
+ ],
+ }, # end of target 'chromoting_x11_client'
+
+ {
'target_name': 'chromoting_jingle_glue',
'type': '<(library)',
'dependencies': [
« no previous file with comments | « remoting/base/protocol_decoder_unittest.cc ('k') | remoting/client/chromoting_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698