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

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

Issue 60070: Fix linking with gold by cleaning up lib dependencies. (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 15 matching lines...) Expand all
26 '<!@(python pkg_config_wrapper.py --cflags nss)', 26 '<!@(python pkg_config_wrapper.py --cflags nss)',
27 ], 27 ],
28 }, 28 },
29 'link_settings': { 29 'link_settings': {
30 'libraries': [ 30 'libraries': [
31 '<!@(python pkg_config_wrapper.py --libs nss)', 31 '<!@(python pkg_config_wrapper.py --libs nss)',
32 ], 32 ],
33 }, 33 },
34 }, 34 },
35 { 35 {
36 'target_name': 'pangoft2', 36 'target_name': 'freetype2',
37 'type': 'settings', 37 'type': 'settings',
38 'direct_dependent_settings': { 38 'direct_dependent_settings': {
39 'cflags': [ 39 'cflags': [
40 '<!@(python pkg_config_wrapper.py --cflags pangoft2)', 40 '<!@(python pkg_config_wrapper.py --cflags freetype2)',
41 ], 41 ],
42 }, 42 },
43 'link_settings': { 43 'link_settings': {
44 'libraries': [ 44 'libraries': [
45 '<!@(python pkg_config_wrapper.py --libs pangoft2)', 45 '<!@(python pkg_config_wrapper.py --libs freetype2)',
46 ], 46 ],
47 }, 47 },
48 }, 48 },
49 {
50 'target_name': 'fontconfig',
51 'type': 'settings',
52 'direct_dependent_settings': {
53 'cflags': [
54 '<!@(python pkg_config_wrapper.py --cflags fontconfig)',
55 ],
56 },
57 'link_settings': {
58 'libraries': [
59 '<!@(python pkg_config_wrapper.py --libs fontconfig)',
60 ],
61 },
62 },
63 {
64 'target_name': 'gdk',
65 'type': 'settings',
66 'direct_dependent_settings': {
67 'cflags': [
68 '<!@(python pkg_config_wrapper.py --cflags gdk-2.0)',
69 ],
70 },
71 'link_settings': {
72 'libraries': [
73 '<!@(python pkg_config_wrapper.py --libs gdk-2.0)',
74 ],
75 },
76 },
49 ], 77 ],
50 } 78 }
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