summaryrefslogtreecommitdiffstats
path: root/remoting/remoting_host.gypi
diff options
context:
space:
mode:
authorsergeyu <sergeyu@chromium.org>2015-03-02 18:43:02 -0800
committerCommit bot <commit-bot@chromium.org>2015-03-03 02:43:47 +0000
commitd52d3afcec84f7e15692971de4b9f31bc236c594 (patch)
treee32974721a6481f5e0b79cb2b97496bc6613727d /remoting/remoting_host.gypi
parent2cee8dd7655a7ec82a8ce6f7b30f984d1e498d93 (diff)
downloadchromium_src-d52d3afcec84f7e15692971de4b9f31bc236c594.zip
chromium_src-d52d3afcec84f7e15692971de4b9f31bc236c594.tar.gz
chromium_src-d52d3afcec84f7e15692971de4b9f31bc236c594.tar.bz2
Remove dependency on PAM from the It2Me host
BUG=463132 Review URL: https://codereview.chromium.org/969133002 Cr-Commit-Position: refs/heads/master@{#318819}
Diffstat (limited to 'remoting/remoting_host.gypi')
-rw-r--r--remoting/remoting_host.gypi29
1 files changed, 18 insertions, 11 deletions
diff --git a/remoting/remoting_host.gypi b/remoting/remoting_host.gypi
index e818a97..33d1e4a 100644
--- a/remoting/remoting_host.gypi
+++ b/remoting/remoting_host.gypi
@@ -75,11 +75,6 @@
],
}]
],
- 'link_settings': {
- 'libraries': [
- '-lpam',
- ],
- },
}],
['chromeos==1', {
'dependencies' : [
@@ -102,7 +97,6 @@
'host/linux/x_server_clipboard.cc',
'host/linux/x_server_clipboard.h',
'host/local_input_monitor_x11.cc',
- 'host/remoting_me2me_host.cc',
],
'conditions': [
['use_ash==1', {
@@ -144,7 +138,6 @@
'link_settings': {
'libraries': [
'$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
- 'libpam.a',
],
},
}],
@@ -420,6 +413,8 @@
'dependencies': [
'../base/base.gyp:base',
'../base/base.gyp:base_i18n',
+ '../components/components.gyp:policy',
+ '../components/components.gyp:policy_component_common',
'../net/net.gyp:net',
'../third_party/webrtc/modules/modules.gyp:desktop_capture',
'remoting_base',
@@ -435,14 +430,26 @@
'host/curtain_mode_linux.cc',
'host/curtain_mode_mac.cc',
'host/curtain_mode_win.cc',
+ 'host/pam_authorization_factory_posix.cc',
+ 'host/pam_authorization_factory_posix.h',
'host/posix/signal_handler.cc',
'host/posix/signal_handler.h',
+ 'host/remoting_me2me_host.cc',
],
'conditions': [
- ['os_posix != 1', {
- 'sources/': [
- ['exclude', '^host/posix/'],
- ],
+ ['OS=="linux"', {
+ 'link_settings': {
+ 'libraries': [
+ '-lpam',
+ ],
+ },
+ }],
+ ['OS=="mac"', {
+ 'link_settings': {
+ 'libraries': [
+ 'libpam.a',
+ ],
+ },
}],
], # end of 'conditions'
}, # end of target 'remoting_me2me_host_static'