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

Side by Side Diff: chrome/chrome_browser.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 | « base/base.gypi ('k') | gpu/gpu.gyp » ('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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA',
(...skipping 2178 matching lines...) Expand 10 before | Expand all | Expand 10 after
2189 'dependencies': [ 2189 'dependencies': [
2190 # Temporarily disabled while we figure some stuff out. 2190 # Temporarily disabled while we figure some stuff out.
2191 # http://code.google.com/p/chromium/issues/detail?id=12351 2191 # http://code.google.com/p/chromium/issues/detail?id=12351
2192 # '../build/linux/system.gyp:dbus-glib', 2192 # '../build/linux/system.gyp:dbus-glib',
2193 # '../build/linux/system.gyp:gnome-keyring', 2193 # '../build/linux/system.gyp:gnome-keyring',
2194 '../build/linux/system.gyp:gtk', 2194 '../build/linux/system.gyp:gtk',
2195 '../build/linux/system.gyp:gtkprint', 2195 '../build/linux/system.gyp:gtkprint',
2196 '../build/linux/system.gyp:nss', 2196 '../build/linux/system.gyp:nss',
2197 '../base/base.gyp:linux_versioninfo', 2197 '../base/base.gyp:linux_versioninfo',
2198 ], 2198 ],
2199 'link_settings': {
2200 'libraries': [
2201 # For dlsym() in 'browser/zygote_main_linux.cc'
2202 '-ldl',
2203 ],
2204 },
2199 'sources!': [ 2205 'sources!': [
2200 # Exclude extension shelf for toolstrips. 2206 # Exclude extension shelf for toolstrips.
2201 'browser/views/extensions/extension_shelf.cc', 2207 'browser/views/extensions/extension_shelf.cc',
2202 'browser/views/extensions/extension_shelf.h', 2208 'browser/views/extensions/extension_shelf.h',
2203 'browser/views/extensions/extension_view.cc', 2209 'browser/views/extensions/extension_view.cc',
2204 'browser/views/extensions/extension_view.h', 2210 'browser/views/extensions/extension_view.h',
2205 # Windows-specific files. 2211 # Windows-specific files.
2206 'browser/password_manager/password_store_win.cc', 2212 'browser/password_manager/password_store_win.cc',
2207 'browser/password_manager/password_store_win.h', 2213 'browser/password_manager/password_store_win.h',
2208 ], 2214 ],
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
2789 ], 2795 ],
2790 }, 2796 },
2791 ], 2797 ],
2792 } 2798 }
2793 2799
2794 # Local Variables: 2800 # Local Variables:
2795 # tab-width:2 2801 # tab-width:2
2796 # indent-tabs-mode:nil 2802 # indent-tabs-mode:nil
2797 # End: 2803 # End:
2798 # vim: set expandtab tabstop=2 shiftwidth=2: 2804 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | gpu/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698