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

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

Issue 7799001: Add glib to system.gyp for cros static library (load.cc) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 'link_settings': { 419 'link_settings': {
420 'ldflags': [ 420 'ldflags': [
421 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)', 421 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)',
422 ], 422 ],
423 'libraries': [ 423 'libraries': [
424 '<!@(<(pkg-config) --libs-only-l dbus-glib-1)', 424 '<!@(<(pkg-config) --libs-only-l dbus-glib-1)',
425 ], 425 ],
426 }, 426 },
427 }, 427 },
428 { 428 {
429 'target_name': 'glib',
430 'type': 'settings',
431 'direct_dependent_settings': {
432 'cflags': [
433 '<!@(<(pkg-config) --cflags glib-2.0)',
434 ],
435 },
436 'link_settings': {
437 'ldflags': [
438 '<!@(<(pkg-config) --libs-only-L --libs-only-other glib-2.0)',
439 ],
440 'libraries': [
441 '<!@(<(pkg-config) --libs-only-l glib-2.0)',
442 ],
443 },
444 },
445 {
429 'target_name': 'libresolv', 446 'target_name': 'libresolv',
430 'type': 'settings', 447 'type': 'settings',
431 'link_settings': { 448 'link_settings': {
432 'libraries': [ 449 'libraries': [
433 '-lresolv', 450 '-lresolv',
434 ], 451 ],
435 }, 452 },
436 }, 453 },
437 { 454 {
438 'target_name': 'ibus', 455 'target_name': 'ibus',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 ], 495 ],
479 'libraries': [ 496 'libraries': [
480 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)', 497 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)',
481 ], 498 ],
482 }, 499 },
483 }], 500 }],
484 ], 501 ],
485 }, 502 },
486 ], 503 ],
487 } 504 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698