OLD | NEW |
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 }, | 133 }, |
134 'link_settings': { | 134 'link_settings': { |
135 'ldflags': [ | 135 'ldflags': [ |
136 '<!@(pkg-config --libs-only-L --libs-only-other x11)', | 136 '<!@(pkg-config --libs-only-L --libs-only-other x11)', |
137 ], | 137 ], |
138 'libraries': [ | 138 'libraries': [ |
139 '<!@(pkg-config --libs-only-l x11)', | 139 '<!@(pkg-config --libs-only-l x11)', |
140 ], | 140 ], |
141 }, | 141 }, |
142 }, | 142 }, |
143 { | 143 # TODO(evanm): temporarily disabled while we figure out whether to depend |
144 'target_name': 'gnome-keyring', | 144 # on gnome-keyring etc. |
145 'type': 'settings', | 145 # http://code.google.com/p/chromium/issues/detail?id=12351 |
146 'direct_dependent_settings': { | 146 # { |
147 'cflags': [ | 147 # 'target_name': 'gnome-keyring', |
148 '<!@(pkg-config --cflags gnome-keyring-1)', | 148 # 'type': 'settings', |
149 ], | 149 # 'direct_dependent_settings': { |
150 }, | 150 # 'cflags': [ |
151 'link_settings': { | 151 # '<!@(pkg-config --cflags gnome-keyring-1)', |
152 'ldflags': [ | 152 # ], |
153 '<!@(pkg-config --libs-only-L --libs-only-other gnome-keyring-1)', | 153 # }, |
154 ], | 154 # 'link_settings': { |
155 'libraries': [ | 155 # 'ldflags': [ |
156 '<!@(pkg-config --libs-only-l gnome-keyring-1)', | 156 # '<!@(pkg-config --libs-only-L --libs-only-other gnome-keyring-1)', |
157 ], | 157 # ], |
158 }, | 158 # 'libraries': [ |
159 }, | 159 # '<!@(pkg-config --libs-only-l gnome-keyring-1)', |
160 { | 160 # ], |
161 'target_name': 'dbus-glib', | 161 # }, |
162 'type': 'settings', | 162 # }, |
163 'direct_dependent_settings': { | 163 # { |
164 'cflags': [ | 164 # 'target_name': 'dbus-glib', |
165 '<!@(pkg-config --cflags dbus-glib-1)', | 165 # 'type': 'settings', |
166 ], | 166 # 'direct_dependent_settings': { |
167 }, | 167 # 'cflags': [ |
168 'link_settings': { | 168 # '<!@(pkg-config --cflags dbus-glib-1)', |
169 'ldflags': [ | 169 # ], |
170 '<!@(pkg-config --libs-only-L --libs-only-other dbus-glib-1)', | 170 # }, |
171 ], | 171 # 'link_settings': { |
172 'libraries': [ | 172 # 'ldflags': [ |
173 '<!@(pkg-config --libs-only-l dbus-glib-1)', | 173 # '<!@(pkg-config --libs-only-L --libs-only-other dbus-glib-1)', |
174 ], | 174 # ], |
175 }, | 175 # 'libraries': [ |
176 }, | 176 # '<!@(pkg-config --libs-only-l dbus-glib-1)', |
| 177 # ], |
| 178 # }, |
| 179 # }, |
177 ], | 180 ], |
178 } | 181 } |
OLD | NEW |