| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
| 8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
| 9 'chromium_code': 1, | 9 'chromium_code': 1, |
| 10 | 10 |
| (...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1310 'host/video_frame_capturer_helper.h', | 1310 'host/video_frame_capturer_helper.h', |
| 1311 'host/video_frame_capturer_linux.cc', | 1311 'host/video_frame_capturer_linux.cc', |
| 1312 'host/video_frame_capturer_mac.mm', | 1312 'host/video_frame_capturer_mac.mm', |
| 1313 'host/video_frame_capturer_win.cc', | 1313 'host/video_frame_capturer_win.cc', |
| 1314 'host/vlog_net_log.cc', | 1314 'host/vlog_net_log.cc', |
| 1315 'host/vlog_net_log.h', | 1315 'host/vlog_net_log.h', |
| 1316 'host/win/desktop.cc', | 1316 'host/win/desktop.cc', |
| 1317 'host/win/desktop.h', | 1317 'host/win/desktop.h', |
| 1318 'host/win/scoped_thread_desktop.cc', | 1318 'host/win/scoped_thread_desktop.cc', |
| 1319 'host/win/scoped_thread_desktop.h', | 1319 'host/win/scoped_thread_desktop.h', |
| 1320 'host/x_server_clipboard.cc', |
| 1321 'host/x_server_clipboard.h', |
| 1320 'host/x_server_pixel_buffer.cc', | 1322 'host/x_server_pixel_buffer.cc', |
| 1321 'host/x_server_pixel_buffer.h', | 1323 'host/x_server_pixel_buffer.h', |
| 1322 ], | 1324 ], |
| 1323 'conditions': [ | 1325 'conditions': [ |
| 1324 ['OS=="linux"', { | 1326 ['OS=="linux"', { |
| 1325 'link_settings': { | 1327 'link_settings': { |
| 1326 'libraries': [ | 1328 'libraries': [ |
| 1327 '-lX11', | 1329 '-lX11', |
| 1328 '-lXdamage', | 1330 '-lXdamage', |
| 1329 '-lXfixes', | 1331 '-lXfixes', |
| 1330 '-lXtst', | 1332 '-lXtst', |
| 1331 '-lXext' | 1333 '-lXext' |
| 1332 ], | 1334 ], |
| 1333 }, | 1335 }, |
| 1334 }], | 1336 }], |
| 1335 ['toolkit_uses_gtk==1', { | 1337 ['toolkit_uses_gtk==1', { |
| 1336 'dependencies': [ | 1338 'dependencies': [ |
| 1337 '../build/linux/system.gyp:gtk', | 1339 '../build/linux/system.gyp:gtk', |
| 1338 ], | 1340 ], |
| 1339 }, { # else toolkit_uses_gtk!=1 | 1341 }, { # else toolkit_uses_gtk!=1 |
| 1340 'sources!': [ | 1342 'sources!': [ |
| 1341 '*_gtk.cc', | 1343 '*_gtk.cc', |
| 1342 ], | 1344 ], |
| 1343 }], | 1345 }], |
| 1344 ['OS!="linux"', { | 1346 ['OS!="linux"', { |
| 1345 'sources!': [ | 1347 'sources!': [ |
| 1348 'host/x_server_clipboard.cc', |
| 1349 'host/x_server_clipboard.h', |
| 1346 'host/x_server_pixel_buffer.cc', | 1350 'host/x_server_pixel_buffer.cc', |
| 1347 'host/x_server_pixel_buffer.h', | 1351 'host/x_server_pixel_buffer.h', |
| 1348 ], | 1352 ], |
| 1349 }], | 1353 }], |
| 1350 ['OS=="mac"', { | 1354 ['OS=="mac"', { |
| 1351 'sources': [ | 1355 'sources': [ |
| 1352 '../third_party/GTM/AppKit/GTMCarbonEvent.h', | 1356 '../third_party/GTM/AppKit/GTMCarbonEvent.h', |
| 1353 '../third_party/GTM/AppKit/GTMCarbonEvent.m', | 1357 '../third_party/GTM/AppKit/GTMCarbonEvent.m', |
| 1354 '../third_party/GTM/DebugUtils/GTMDebugSelectorValidation.h', | 1358 '../third_party/GTM/DebugUtils/GTMDebugSelectorValidation.h', |
| 1355 '../third_party/GTM/DebugUtils/GTMTypeCasting.h', | 1359 '../third_party/GTM/DebugUtils/GTMTypeCasting.h', |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1849 '../base/allocator/allocator.gyp:allocator', | 1853 '../base/allocator/allocator.gyp:allocator', |
| 1850 ], | 1854 ], |
| 1851 }, | 1855 }, |
| 1852 ], | 1856 ], |
| 1853 ], | 1857 ], |
| 1854 }], | 1858 }], |
| 1855 ], # end of 'conditions' | 1859 ], # end of 'conditions' |
| 1856 }, # end of target 'remoting_unittests' | 1860 }, # end of target 'remoting_unittests' |
| 1857 ], # end of targets | 1861 ], # end of targets |
| 1858 } | 1862 } |
| OLD | NEW |