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.h', | 222 'host/event_executor_win.h', |
223 ], | 223 ], |
224 }], | 224 }], |
225 ['OS=="linux"', { | 225 ['OS=="linux"', { |
226 'sources': [ | 226 'sources': [ |
227 'host/capturer_linux.cc', | 227 'host/capturer_linux.cc', |
228 'host/capturer_linux.h', | 228 'host/capturer_linux.h', |
229 'host/event_executor_linux.cc', | 229 'host/event_executor_linux.cc', |
230 'host/event_executor_linux.h', | 230 'host/event_executor_linux.h', |
231 ], | 231 ], |
| 232 'dependencies': [ |
| 233 '../build/linux/system.gyp:gtk', |
| 234 ], |
232 'link_settings': { | 235 'link_settings': { |
233 'libraries': [ | 236 'libraries': [ |
234 '-lX11', | 237 '-lX11', |
235 '-lXdamage', | 238 '-lXdamage', |
236 '-lXtst', | 239 '-lXtst', |
237 ], | 240 ], |
238 }, | 241 }, |
239 }], | 242 }], |
240 ['OS=="mac"', { | 243 ['OS=="mac"', { |
241 'sources': [ | 244 'sources': [ |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
577 ], # end of 'conditions' | 580 ], # end of 'conditions' |
578 }, # end of target 'chromoting_unittests' | 581 }, # end of target 'chromoting_unittests' |
579 ], # end of targets | 582 ], # end of targets |
580 } | 583 } |
581 | 584 |
582 # Local Variables: | 585 # Local Variables: |
583 # tab-width:2 | 586 # tab-width:2 |
584 # indent-tabs-mode:nil | 587 # indent-tabs-mode:nil |
585 # End: | 588 # End: |
586 # vim: set expandtab tabstop=2 shiftwidth=2: | 589 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |