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

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

Issue 7413004: Uploading for backup... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: today's work Created 9 years, 5 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 | content/browser/geolocation/wifi_data_provider_linux.cc » ('j') | net/dbus/dbus.h » ('J')
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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 'libraries': [ 372 'libraries': [
373 '-ldl', 373 '-ldl',
374 ], 374 ],
375 }, 375 },
376 }], 376 }],
377 ], 377 ],
378 }], 378 }],
379 ], 379 ],
380 }, 380 },
381 { 381 {
382 'target_name': 'dbus',
383 'type': 'settings',
384 'direct_dependent_settings': {
385 'cflags': [
386 '<!@(<(pkg-config) --cflags dbus-1)',
387 ],
388 },
389 'link_settings': {
390 'ldflags': [
391 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-1)',
392 ],
393 'libraries': [
394 '<!@(<(pkg-config) --libs-only-l dbus-1)',
395 ],
396 },
397 },
398 {
382 'target_name': 'dbus-glib', 399 'target_name': 'dbus-glib',
383 'type': 'settings', 400 'type': 'settings',
384 'direct_dependent_settings': { 401 'direct_dependent_settings': {
385 'cflags': [ 402 'cflags': [
386 '<!@(<(pkg-config) --cflags dbus-glib-1)', 403 '<!@(<(pkg-config) --cflags dbus-glib-1)',
387 ], 404 ],
388 }, 405 },
389 'link_settings': { 406 'link_settings': {
390 'ldflags': [ 407 'ldflags': [
391 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)', 408 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 ], 441 ],
425 'libraries': [ 442 'libraries': [
426 '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_min_version)" )', 443 '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_min_version)" )',
427 ], 444 ],
428 }, 445 },
429 }], 446 }],
430 ], 447 ],
431 }, 448 },
432 ], 449 ],
433 } 450 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/geolocation/wifi_data_provider_linux.cc » ('j') | net/dbus/dbus.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698