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

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

Issue 758002: Make views depend on Xext (Closed)
Patch Set: Had merge collisions Created 10 years, 9 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 | views/views.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 'conditions': [ 6 'conditions': [
7 ['sysroot!=""', { 7 ['sysroot!=""', {
8 'variables': { 8 'variables': {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)"',
10 }, 10 },
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 'ldflags': [ 216 'ldflags': [
217 '<!@(<(pkg-config) --libs-only-L --libs-only-other x11)', 217 '<!@(<(pkg-config) --libs-only-L --libs-only-other x11)',
218 ], 218 ],
219 'libraries': [ 219 'libraries': [
220 '<!@(<(pkg-config) --libs-only-l x11)', 220 '<!@(<(pkg-config) --libs-only-l x11)',
221 ], 221 ],
222 }, 222 },
223 }]] 223 }]]
224 }, 224 },
225 { 225 {
226 'target_name': 'xext',
227 'type': 'settings',
228 'conditions': [
229 ['_toolset=="target"', {
230 'direct_dependent_settings': {
231 'cflags': [
232 '<!@(<(pkg-config) --cflags xext)',
233 ],
234 },
235 'link_settings': {
236 'ldflags': [
237 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)',
238 ],
239 'libraries': [
240 '<!@(<(pkg-config) --libs-only-l xext)',
241 ],
242 },
243 }]]
244 },
245 {
226 'target_name': 'selinux', 246 'target_name': 'selinux',
227 'type': 'settings', 247 'type': 'settings',
228 'conditions': [ 248 'conditions': [
229 ['_toolset=="target"', { 249 ['_toolset=="target"', {
230 'link_settings': { 250 'link_settings': {
231 'libraries': [ 251 'libraries': [
232 '-lselinux', 252 '-lselinux',
233 ], 253 ],
234 }, 254 },
235 }]] 255 }]]
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 # }, 292 # },
273 # }, 293 # },
274 ], 294 ],
275 } 295 }
276 296
277 # Local Variables: 297 # Local Variables:
278 # tab-width:2 298 # tab-width:2
279 # indent-tabs-mode:nil 299 # indent-tabs-mode:nil
280 # End: 300 # End:
281 # vim: set expandtab tabstop=2 shiftwidth=2: 301 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | views/views.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698