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

Side by Side Diff: build/linux/system.gyp

Issue 84005: fix linking on linux by explicitly adding gthread (Closed)
Patch Set: Created 11 years, 8 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.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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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': 'gtk', 8 'target_name': 'gtk',
9 'type': 'settings', 9 'type': 'settings',
10 'direct_dependent_settings': { 10 'direct_dependent_settings': {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 }, 99 },
100 'link_settings': { 100 'link_settings': {
101 'ldflags': [ 101 'ldflags': [
102 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gcon f-2.0)', 102 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gcon f-2.0)',
103 ], 103 ],
104 'libraries': [ 104 'libraries': [
105 '<!@(python pkg_config_wrapper.py --libs-only-l gconf-2.0)', 105 '<!@(python pkg_config_wrapper.py --libs-only-l gconf-2.0)',
106 ], 106 ],
107 }, 107 },
108 }, 108 },
109 {
110 'target_name': 'gthread',
111 'type': 'settings',
112 'direct_dependent_settings': {
113 'cflags': [
114 '<!@(python pkg_config_wrapper.py --cflags gthread-2.0)',
115 ],
116 },
117 'link_settings': {
118 'ldflags': [
119 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gthr ead-2.0)',
120 ],
121 'libraries': [
122 '<!@(python pkg_config_wrapper.py --libs-only-l gthread-2.0)',
123 ],
124 },
125 },
109 ], 126 ],
110 } 127 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698