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

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

Issue 56188: Separate the pkg-config --libs output into --libs-only-l for... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
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 | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | 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) 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': {
11 'cflags': [ 11 'cflags': [
12 '<!@(python pkg_config_wrapper.py --cflags gtk+-2.0)', 12 '<!@(python pkg_config_wrapper.py --cflags gtk+-2.0)',
13 ], 13 ],
14 }, 14 },
15 'link_settings': { 15 'link_settings': {
16 'ldflags': [
17 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gtk+ -2.0)',
18 ],
16 'libraries': [ 19 'libraries': [
17 '<!@(python pkg_config_wrapper.py --libs gtk+-2.0)', 20 '<!@(python pkg_config_wrapper.py --libs-only-l gtk+-2.0)',
18 ], 21 ],
19 }, 22 },
20 }, 23 },
21 { 24 {
22 'target_name': 'nss', 25 'target_name': 'nss',
23 'type': 'settings', 26 'type': 'settings',
24 'direct_dependent_settings': { 27 'direct_dependent_settings': {
25 'cflags': [ 28 'cflags': [
26 '<!@(python pkg_config_wrapper.py --cflags nss)', 29 '<!@(python pkg_config_wrapper.py --cflags nss)',
27 ], 30 ],
28 }, 31 },
29 'link_settings': { 32 'link_settings': {
33 'ldflags': [
34 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other nss) ',
35 ],
30 'libraries': [ 36 'libraries': [
31 '<!@(python pkg_config_wrapper.py --libs nss)', 37 '<!@(python pkg_config_wrapper.py --libs-only-l nss)',
32 ], 38 ],
33 }, 39 },
34 }, 40 },
35 { 41 {
36 'target_name': 'freetype2', 42 'target_name': 'freetype2',
37 'type': 'settings', 43 'type': 'settings',
38 'direct_dependent_settings': { 44 'direct_dependent_settings': {
39 'cflags': [ 45 'cflags': [
40 '<!@(python pkg_config_wrapper.py --cflags freetype2)', 46 '<!@(python pkg_config_wrapper.py --cflags freetype2)',
41 ], 47 ],
42 }, 48 },
43 'link_settings': { 49 'link_settings': {
50 'ldflags': [
51 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other free type2)',
52 ],
44 'libraries': [ 53 'libraries': [
45 '<!@(python pkg_config_wrapper.py --libs freetype2)', 54 '<!@(python pkg_config_wrapper.py --libs-only-l freetype2)',
46 ], 55 ],
47 }, 56 },
48 }, 57 },
49 { 58 {
50 'target_name': 'fontconfig', 59 'target_name': 'fontconfig',
51 'type': 'settings', 60 'type': 'settings',
52 'direct_dependent_settings': { 61 'direct_dependent_settings': {
53 'cflags': [ 62 'cflags': [
54 '<!@(python pkg_config_wrapper.py --cflags fontconfig)', 63 '<!@(python pkg_config_wrapper.py --cflags fontconfig)',
55 ], 64 ],
56 }, 65 },
57 'link_settings': { 66 'link_settings': {
67 'ldflags': [
68 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other font config)',
69 ],
58 'libraries': [ 70 'libraries': [
59 '<!@(python pkg_config_wrapper.py --libs fontconfig)', 71 '<!@(python pkg_config_wrapper.py --libs-only-l fontconfig)',
60 ], 72 ],
61 }, 73 },
62 }, 74 },
63 { 75 {
64 'target_name': 'gdk', 76 'target_name': 'gdk',
65 'type': 'settings', 77 'type': 'settings',
66 'direct_dependent_settings': { 78 'direct_dependent_settings': {
67 'cflags': [ 79 'cflags': [
68 '<!@(python pkg_config_wrapper.py --cflags gdk-2.0)', 80 '<!@(python pkg_config_wrapper.py --cflags gdk-2.0)',
69 ], 81 ],
70 }, 82 },
71 'link_settings': { 83 'link_settings': {
84 'ldflags': [
85 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gdk- 2.0)',
86 ],
72 'libraries': [ 87 'libraries': [
73 '<!@(python pkg_config_wrapper.py --libs gdk-2.0)', 88 '<!@(python pkg_config_wrapper.py --libs-only-l gdk-2.0)',
74 ], 89 ],
75 }, 90 },
76 }, 91 },
77 ], 92 ],
78 } 93 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698