summaryrefslogtreecommitdiffstats
path: root/remoting/remoting.gyp
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-15 00:37:47 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-15 00:37:47 +0000
commit22e8c5e47e3fa73216a59e90ce25dd8dae8f1b14 (patch)
tree11a0c6617359a09aa1ff9abe34029aa9925e2249 /remoting/remoting.gyp
parente02d8e288c3f4be8220c21b3936e484892e39095 (diff)
downloadchromium_src-22e8c5e47e3fa73216a59e90ce25dd8dae8f1b14.zip
chromium_src-22e8c5e47e3fa73216a59e90ce25dd8dae8f1b14.tar.gz
chromium_src-22e8c5e47e3fa73216a59e90ce25dd8dae8f1b14.tar.bz2
Native remoting host configurer for linux.
This is initial version of the remoting host configurer for linux. It doesn't look pretty yet, but it works. Review URL: https://chromiumcodereview.appspot.com/11260004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167794 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/remoting.gyp')
-rw-r--r--remoting/remoting.gyp24
1 files changed, 24 insertions, 0 deletions
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index 4b037e7..993382d 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -285,6 +285,30 @@
'host/setup/start_host.cc',
],
}, # end of target 'remoting_start_host'
+ {
+ 'target_name': 'remoting_configurer',
+ 'type': 'executable',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'cflags': [
+ '<!@(pkg-config --cflags webkit-1.0)',
+ ],
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(pkg-config --libs-only-L --libs-only-other webkit-1.0)',
+ ],
+ 'libraries': [
+ '<!@(pkg-config --libs-only-l webkit-1.0)',
+ ],
+ },
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'remoting_host_setup_base',
+ 'remoting_resources'
+ ],
+ 'sources': [
+ 'host/setup/linux/linux_host_setup_wizard.cc',
+ ],
+ }, # end of target 'remoting_configurer'
], # end of 'targets'
}], # 'OS=="linux"'