OLD | NEW |
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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 'host/event_executor_win.cc', | 222 'host/event_executor_win.cc', |
223 'host/event_executor_win.h', | 223 'host/event_executor_win.h', |
224 ], | 224 ], |
225 }], | 225 }], |
226 ['OS=="linux"', { | 226 ['OS=="linux"', { |
227 'sources': [ | 227 'sources': [ |
228 'host/capturer_linux.cc', | 228 'host/capturer_linux.cc', |
229 'host/capturer_linux.h', | 229 'host/capturer_linux.h', |
230 'host/event_executor_linux.cc', | 230 'host/event_executor_linux.cc', |
231 'host/event_executor_linux.h', | 231 'host/event_executor_linux.h', |
| 232 'host/user_auth_pam.cc', |
| 233 'host/user_auth_pam.h', |
232 ], | 234 ], |
233 'link_settings': { | 235 'link_settings': { |
234 'libraries': [ | 236 'libraries': [ |
235 '-lX11', | 237 '-lX11', |
236 '-lXdamage', | 238 '-lXdamage', |
237 '-lXtst', | 239 '-lXtst', |
| 240 '-lpam', |
238 ], | 241 ], |
239 }, | 242 }, |
240 }], | 243 }], |
241 ['OS=="mac"', { | 244 ['OS=="mac"', { |
242 'sources': [ | 245 'sources': [ |
243 'host/capturer_mac.cc', | 246 'host/capturer_mac.cc', |
244 'host/capturer_mac.h', | 247 'host/capturer_mac.h', |
245 'host/event_executor_mac.cc', | 248 'host/event_executor_mac.cc', |
246 'host/event_executor_mac.h', | 249 'host/event_executor_mac.h', |
247 ], | 250 ], |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 ], # end of 'conditions' | 541 ], # end of 'conditions' |
539 }, # end of target 'chromoting_unittests' | 542 }, # end of target 'chromoting_unittests' |
540 ], # end of targets | 543 ], # end of targets |
541 } | 544 } |
542 | 545 |
543 # Local Variables: | 546 # Local Variables: |
544 # tab-width:2 | 547 # tab-width:2 |
545 # indent-tabs-mode:nil | 548 # indent-tabs-mode:nil |
546 # End: | 549 # End: |
547 # vim: set expandtab tabstop=2 shiftwidth=2: | 550 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |