Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: remoting/remoting.gyp

Issue 10918224: Cross-platform plumbing for resize-to-client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed Clang errors. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 'host/constants_mac.h', 1283 'host/constants_mac.h',
1284 'host/constants_win.cc', 1284 'host/constants_win.cc',
1285 'host/continue_window.h', 1285 'host/continue_window.h',
1286 'host/continue_window_gtk.cc', 1286 'host/continue_window_gtk.cc',
1287 'host/continue_window_mac.mm', 1287 'host/continue_window_mac.mm',
1288 'host/continue_window_win.cc', 1288 'host/continue_window_win.cc',
1289 'host/desktop_environment.cc', 1289 'host/desktop_environment.cc',
1290 'host/desktop_environment.h', 1290 'host/desktop_environment.h',
1291 'host/desktop_environment_factory.cc', 1291 'host/desktop_environment_factory.cc',
1292 'host/desktop_environment_factory.h', 1292 'host/desktop_environment_factory.h',
1293 'host/desktop_resizer.cc',
1294 'host/desktop_resizer.h',
1295 'host/desktop_resizer_linux.cc',
1296 'host/desktop_resizer_win.cc',
1297 'host/desktop_resizer_mac.cc',
1293 'host/differ.cc', 1298 'host/differ.cc',
1294 'host/differ.h', 1299 'host/differ.h',
1295 'host/disconnect_window.h', 1300 'host/disconnect_window.h',
1296 'host/disconnect_window_gtk.cc', 1301 'host/disconnect_window_gtk.cc',
1297 'host/disconnect_window_mac.h', 1302 'host/disconnect_window_mac.h',
1298 'host/disconnect_window_mac.mm', 1303 'host/disconnect_window_mac.mm',
1299 'host/disconnect_window_win.cc', 1304 'host/disconnect_window_win.cc',
1300 'host/dns_blackhole_checker.cc', 1305 'host/dns_blackhole_checker.cc',
1301 'host/dns_blackhole_checker.h', 1306 'host/dns_blackhole_checker.h',
1302 'host/event_executor.h', 1307 'host/event_executor.h',
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1391 'host/x_server_pixel_buffer.h', 1396 'host/x_server_pixel_buffer.h',
1392 ], 1397 ],
1393 'conditions': [ 1398 'conditions': [
1394 ['OS=="linux"', { 1399 ['OS=="linux"', {
1395 'link_settings': { 1400 'link_settings': {
1396 'libraries': [ 1401 'libraries': [
1397 '-lX11', 1402 '-lX11',
1398 '-lXdamage', 1403 '-lXdamage',
1399 '-lXfixes', 1404 '-lXfixes',
1400 '-lXtst', 1405 '-lXtst',
1401 '-lXext' 1406 '-lXext'
rmsousa 2012/09/13 21:59:05 add -lXrandr
Jamie 2012/09/14 21:07:34 It must be being included somehow, otherwise it wo
1402 ], 1407 ],
1403 }, 1408 },
1404 }], 1409 }],
1405 ['toolkit_uses_gtk==1', { 1410 ['toolkit_uses_gtk==1', {
1406 'dependencies': [ 1411 'dependencies': [
1407 '../build/linux/system.gyp:gtk', 1412 '../build/linux/system.gyp:gtk',
1408 ], 1413 ],
1409 }, { # else toolkit_uses_gtk!=1 1414 }, { # else toolkit_uses_gtk!=1
1410 'sources!': [ 1415 'sources!': [
1411 '*_gtk.cc', 1416 '*_gtk.cc',
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1921 '../base/allocator/allocator.gyp:allocator', 1926 '../base/allocator/allocator.gyp:allocator',
1922 ], 1927 ],
1923 }, 1928 },
1924 ], 1929 ],
1925 ], 1930 ],
1926 }], 1931 }],
1927 ], # end of 'conditions' 1932 ], # end of 'conditions'
1928 }, # end of target 'remoting_unittests' 1933 }, # end of target 'remoting_unittests'
1929 ], # end of targets 1934 ], # end of targets
1930 } 1935 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698