| 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': [
|
|
|