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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 'sources': [ | 225 'sources': [ |
226 'host/capturer_linux.cc', | 226 'host/capturer_linux.cc', |
227 'host/capturer_linux.h', | 227 'host/capturer_linux.h', |
228 'host/event_executor_linux.cc', | 228 'host/event_executor_linux.cc', |
229 'host/event_executor_linux.h', | 229 'host/event_executor_linux.h', |
230 ], | 230 ], |
231 'link_settings': { | 231 'link_settings': { |
232 'libraries': [ | 232 'libraries': [ |
233 '-lX11', | 233 '-lX11', |
234 '-lXdamage', | 234 '-lXdamage', |
235 '-lXtst', | |
236 ], | 235 ], |
237 }, | 236 }, |
| 237 'dependencies': [ |
| 238 '../build/linux/system.gyp:xtst', |
| 239 ], |
238 }], | 240 }], |
239 ['OS=="mac"', { | 241 ['OS=="mac"', { |
240 'sources': [ | 242 'sources': [ |
241 'host/capturer_mac.cc', | 243 'host/capturer_mac.cc', |
242 'host/capturer_mac.h', | 244 'host/capturer_mac.h', |
243 'host/event_executor_mac.cc', | 245 'host/event_executor_mac.cc', |
244 'host/event_executor_mac.h', | 246 'host/event_executor_mac.h', |
245 ], | 247 ], |
246 'link_settings': { | 248 'link_settings': { |
247 'libraries': [ | 249 'libraries': [ |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 ], # end of 'conditions' | 524 ], # end of 'conditions' |
523 }, # end of target 'chromoting_unittests' | 525 }, # end of target 'chromoting_unittests' |
524 ], # end of targets | 526 ], # end of targets |
525 } | 527 } |
526 | 528 |
527 # Local Variables: | 529 # Local Variables: |
528 # tab-width:2 | 530 # tab-width:2 |
529 # indent-tabs-mode:nil | 531 # indent-tabs-mode:nil |
530 # End: | 532 # End: |
531 # vim: set expandtab tabstop=2 shiftwidth=2: | 533 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |