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 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1380 'host/vlog_net_log.cc', | 1380 'host/vlog_net_log.cc', |
1381 'host/vlog_net_log.h', | 1381 'host/vlog_net_log.h', |
1382 'host/win/desktop.cc', | 1382 'host/win/desktop.cc', |
1383 'host/win/desktop.h', | 1383 'host/win/desktop.h', |
1384 'host/win/scoped_thread_desktop.cc', | 1384 'host/win/scoped_thread_desktop.cc', |
1385 'host/win/scoped_thread_desktop.h', | 1385 'host/win/scoped_thread_desktop.h', |
1386 'host/win/session_desktop_environment_factory.cc', | 1386 'host/win/session_desktop_environment_factory.cc', |
1387 'host/win/session_desktop_environment_factory.h', | 1387 'host/win/session_desktop_environment_factory.h', |
1388 'host/win/session_event_executor.cc', | 1388 'host/win/session_event_executor.cc', |
1389 'host/win/session_event_executor.h', | 1389 'host/win/session_event_executor.h', |
1390 'host/x_server_clipboard.cc', | |
1391 'host/x_server_clipboard.h', | |
1390 'host/x_server_pixel_buffer.cc', | 1392 'host/x_server_pixel_buffer.cc', |
1391 'host/x_server_pixel_buffer.h', | 1393 'host/x_server_pixel_buffer.h', |
1392 ], | 1394 ], |
1393 'conditions': [ | 1395 'conditions': [ |
1394 ['OS=="linux"', { | 1396 ['OS=="linux"', { |
1395 'link_settings': { | 1397 'link_settings': { |
1396 'libraries': [ | 1398 'libraries': [ |
1397 '-lX11', | 1399 '-lX11', |
1398 '-lXdamage', | 1400 '-lXdamage', |
1399 '-lXfixes', | 1401 '-lXfixes', |
1400 '-lXtst', | 1402 '-lXtst', |
1401 '-lXext' | 1403 '-lXext' |
1402 ], | 1404 ], |
1403 }, | 1405 }, |
1404 }], | 1406 }], |
1405 ['toolkit_uses_gtk==1', { | 1407 ['toolkit_uses_gtk==1', { |
1406 'dependencies': [ | 1408 'dependencies': [ |
1407 '../build/linux/system.gyp:gtk', | 1409 '../build/linux/system.gyp:gtk', |
1408 ], | 1410 ], |
1409 }, { # else toolkit_uses_gtk!=1 | 1411 }, { # else toolkit_uses_gtk!=1 |
1410 'sources!': [ | 1412 'sources!': [ |
1411 '*_gtk.cc', | 1413 '*_gtk.cc', |
1412 ], | 1414 ], |
1413 }], | 1415 }], |
1414 ['OS!="linux"', { | 1416 ['OS!="linux"', { |
1415 'sources!': [ | 1417 'sources!': [ |
1418 'host/x_server_clipboard.cc', | |
Sergey Ulanov
2012/09/14 19:35:01
you wouldn't need to specify this explicitly if yo
Lambros
2012/09/14 21:35:13
Done.
| |
1419 'host/x_server_clipboard.h', | |
1416 'host/x_server_pixel_buffer.cc', | 1420 'host/x_server_pixel_buffer.cc', |
1417 'host/x_server_pixel_buffer.h', | 1421 'host/x_server_pixel_buffer.h', |
1418 ], | 1422 ], |
1419 }], | 1423 }], |
1420 ['OS=="mac"', { | 1424 ['OS=="mac"', { |
1421 'sources': [ | 1425 'sources': [ |
1422 '../third_party/GTM/AppKit/GTMCarbonEvent.h', | 1426 '../third_party/GTM/AppKit/GTMCarbonEvent.h', |
1423 '../third_party/GTM/AppKit/GTMCarbonEvent.m', | 1427 '../third_party/GTM/AppKit/GTMCarbonEvent.m', |
1424 '../third_party/GTM/DebugUtils/GTMDebugSelectorValidation.h', | 1428 '../third_party/GTM/DebugUtils/GTMDebugSelectorValidation.h', |
1425 '../third_party/GTM/DebugUtils/GTMTypeCasting.h', | 1429 '../third_party/GTM/DebugUtils/GTMTypeCasting.h', |
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1921 '../base/allocator/allocator.gyp:allocator', | 1925 '../base/allocator/allocator.gyp:allocator', |
1922 ], | 1926 ], |
1923 }, | 1927 }, |
1924 ], | 1928 ], |
1925 ], | 1929 ], |
1926 }], | 1930 }], |
1927 ], # end of 'conditions' | 1931 ], # end of 'conditions' |
1928 }, # end of target 'remoting_unittests' | 1932 }, # end of target 'remoting_unittests' |
1929 ], # end of targets | 1933 ], # end of targets |
1930 } | 1934 } |
OLD | NEW |