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

Side by Side Diff: remoting/remoting.gyp

Issue 10829346: Remove -lpam from remoting host link command. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 'host/x_server_pixel_buffer.h', 1332 'host/x_server_pixel_buffer.h',
1333 ], 1333 ],
1334 'conditions': [ 1334 'conditions': [
1335 ['OS=="linux"', { 1335 ['OS=="linux"', {
1336 'link_settings': { 1336 'link_settings': {
1337 'libraries': [ 1337 'libraries': [
1338 '-lX11', 1338 '-lX11',
1339 '-lXdamage', 1339 '-lXdamage',
1340 '-lXfixes', 1340 '-lXfixes',
1341 '-lXtst', 1341 '-lXtst',
1342 '-lpam',
1343 '-lXext' 1342 '-lXext'
1344 ], 1343 ],
1345 }, 1344 },
1346 }], 1345 }],
1347 ['toolkit_uses_gtk==1', { 1346 ['toolkit_uses_gtk==1', {
1348 'dependencies': [ 1347 'dependencies': [
1349 '../build/linux/system.gyp:gtk', 1348 '../build/linux/system.gyp:gtk',
1350 ], 1349 ],
1351 }, { # else toolkit_uses_gtk!=1 1350 }, { # else toolkit_uses_gtk!=1
1352 'sources!': [ 1351 'sources!': [
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
1857 '../base/allocator/allocator.gyp:allocator', 1856 '../base/allocator/allocator.gyp:allocator',
1858 ], 1857 ],
1859 }, 1858 },
1860 ], 1859 ],
1861 ], 1860 ],
1862 }], 1861 }],
1863 ], # end of 'conditions' 1862 ], # end of 'conditions'
1864 }, # end of target 'remoting_unittests' 1863 }, # end of target 'remoting_unittests'
1865 ], # end of targets 1864 ], # end of targets
1866 } 1865 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698