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

Side by Side Diff: remoting/remoting.gyp

Issue 6484002: Authenticate user/password with PAM in BeginSessionRequest() (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add free() back in, and remove unused scoped_ptr #include. Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 'host/host_config.cc', 206 'host/host_config.cc',
207 'host/host_config.h', 207 'host/host_config.h',
208 'host/host_key_pair.cc', 208 'host/host_key_pair.cc',
209 'host/host_key_pair.h', 209 'host/host_key_pair.h',
210 'host/host_stub_fake.cc', 210 'host/host_stub_fake.cc',
211 'host/host_stub_fake.h', 211 'host/host_stub_fake.h',
212 'host/json_host_config.cc', 212 'host/json_host_config.cc',
213 'host/json_host_config.h', 213 'host/json_host_config.h',
214 'host/in_memory_host_config.cc', 214 'host/in_memory_host_config.cc',
215 'host/in_memory_host_config.h', 215 'host/in_memory_host_config.h',
216 'host/user_authenticator.h',
216 ], 217 ],
217 'conditions': [ 218 'conditions': [
218 ['OS=="win"', { 219 ['OS=="win"', {
219 'sources': [ 220 'sources': [
220 'host/capturer_gdi.cc', 221 'host/capturer_gdi.cc',
221 'host/capturer_gdi.h', 222 'host/capturer_gdi.h',
222 'host/event_executor_win.cc', 223 'host/event_executor_win.cc',
223 'host/event_executor_win.h', 224 'host/event_executor_win.h',
224 ], 225 ],
225 }], 226 }],
226 ['OS=="linux"', { 227 ['OS=="linux"', {
227 'sources': [ 228 'sources': [
228 'host/capturer_linux.cc', 229 'host/capturer_linux.cc',
229 'host/capturer_linux.h', 230 'host/capturer_linux.h',
230 'host/event_executor_linux.cc', 231 'host/event_executor_linux.cc',
231 'host/event_executor_linux.h', 232 'host/event_executor_linux.h',
233 'host/user_authenticator_pam.cc',
234 'host/user_authenticator_pam.h',
232 ], 235 ],
233 'link_settings': { 236 'link_settings': {
234 'libraries': [ 237 'libraries': [
235 '-lX11', 238 '-lX11',
236 '-lXdamage', 239 '-lXdamage',
237 '-lXtst', 240 '-lXtst',
241 '-lpam',
238 ], 242 ],
239 }, 243 },
240 }], 244 }],
241 ['OS=="mac"', { 245 ['OS=="mac"', {
242 'sources': [ 246 'sources': [
243 'host/capturer_mac.cc', 247 'host/capturer_mac.cc',
244 'host/capturer_mac.h', 248 'host/capturer_mac.h',
245 'host/event_executor_mac.cc', 249 'host/event_executor_mac.cc',
246 'host/event_executor_mac.h', 250 'host/event_executor_mac.h',
247 ], 251 ],
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 ], # end of 'conditions' 542 ], # end of 'conditions'
539 }, # end of target 'chromoting_unittests' 543 }, # end of target 'chromoting_unittests'
540 ], # end of targets 544 ], # end of targets
541 } 545 }
542 546
543 # Local Variables: 547 # Local Variables:
544 # tab-width:2 548 # tab-width:2
545 # indent-tabs-mode:nil 549 # indent-tabs-mode:nil
546 # End: 550 # End:
547 # vim: set expandtab tabstop=2 shiftwidth=2: 551 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« remoting/host/user_authenticator_pam.cc ('K') | « remoting/host/user_authenticator_pam.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698