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

Side by Side Diff: base/base.gypi

Issue 656014: Add '-ldl' to Linux targets that use dynamic loader functions. (Closed)
Patch Set: Created 10 years, 10 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
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | 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) 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 'LINUX_USE_TCMALLOC', 373 'LINUX_USE_TCMALLOC',
374 ], 374 ],
375 }, 375 },
376 }, 376 },
377 ], 377 ],
378 [ 'OS == "linux"', { 378 [ 'OS == "linux"', {
379 'link_settings': { 379 'link_settings': {
380 'libraries': [ 380 'libraries': [
381 # We need rt for clock_gettime(). 381 # We need rt for clock_gettime().
382 '-lrt', 382 '-lrt',
383 # For 'native_library_linux.cc'
384 '-ldl',
383 ], 385 ],
384 }, 386 },
385 }], 387 }],
386 ], 388 ],
387 'dependencies': [ 389 'dependencies': [
388 '../build/util/build_util.gyp:lastchange', 390 '../build/util/build_util.gyp:lastchange',
389 '../build/linux/system.gyp:gtk', 391 '../build/linux/system.gyp:gtk',
390 '../build/linux/system.gyp:nss', 392 '../build/linux/system.gyp:nss',
391 'symbolize', 393 'symbolize',
392 'xdg_mime', 394 'xdg_mime',
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 'third_party/xdg_mime/xdgmimemagic.c', 622 'third_party/xdg_mime/xdgmimemagic.c',
621 'third_party/xdg_mime/xdgmimemagic.h', 623 'third_party/xdg_mime/xdgmimemagic.h',
622 'third_party/xdg_mime/xdgmimeparent.c', 624 'third_party/xdg_mime/xdgmimeparent.c',
623 'third_party/xdg_mime/xdgmimeparent.h', 625 'third_party/xdg_mime/xdgmimeparent.h',
624 ], 626 ],
625 }, 627 },
626 ], 628 ],
627 }], 629 }],
628 ], 630 ],
629 } 631 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698