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

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

Issue 6883221: Linux: clean up the usage of "use_cups" gyp switch: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 | « no previous file | chrome/browser/ui/webui/print_preview_handler.cc » ('j') | printing/printing.gyp » ('J')
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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 'ldflags': [ 263 'ldflags': [
264 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)', 264 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)',
265 ], 265 ],
266 'libraries': [ 266 'libraries': [
267 '<!@(<(pkg-config) --libs-only-l xext)', 267 '<!@(<(pkg-config) --libs-only-l xext)',
268 ], 268 ],
269 }, 269 },
270 }]] 270 }]]
271 }, 271 },
272 { 272 {
273 'target_name': 'libgcrypt',
274 'type': 'settings',
275 'conditions': [
276 ['_toolset=="target"', {
277 'direct_dependent_settings': {
278 'cflags': [
279 '<!@(libgcrypt-config --cflags)',
280 ],
281 },
282 'link_settings': {
283 'libraries': [
284 '<!@(libgcrypt-config --libs)',
285 ],
286 },
287 }]]
288 },
289 {
273 'target_name': 'selinux', 290 'target_name': 'selinux',
274 'type': 'settings', 291 'type': 'settings',
275 'conditions': [ 292 'conditions': [
276 ['_toolset=="target"', { 293 ['_toolset=="target"', {
277 'link_settings': { 294 'link_settings': {
278 'libraries': [ 295 'libraries': [
279 '-lselinux', 296 '-lselinux',
280 ], 297 ],
281 }, 298 },
282 }]] 299 }]]
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 ], 388 ],
372 }, 389 },
373 ], 390 ],
374 } 391 }
375 392
376 # Local Variables: 393 # Local Variables:
377 # tab-width:2 394 # tab-width:2
378 # indent-tabs-mode:nil 395 # indent-tabs-mode:nil
379 # End: 396 # End:
380 # vim: set expandtab tabstop=2 shiftwidth=2: 397 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/print_preview_handler.cc » ('j') | printing/printing.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698