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

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

Issue 7977025: aura: Make 'ui' buildable without gtk. (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 | chrome/browser/chromeos/login/language_switch_menu.cc » ('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) 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 }, 500 },
501 }], 501 }],
502 ['chromeos==1', { 502 ['chromeos==1', {
503 'link_settings': { 503 'link_settings': {
504 'libraries': [ '-lXtst' ] 504 'libraries': [ '-lXtst' ]
505 } 505 }
506 }], 506 }],
507 ], 507 ],
508 }, 508 },
509 { 509 {
510 'target_name': 'pangocairo',
511 'type': 'settings',
512 'toolsets': ['host', 'target'],
513 'conditions': [
514 ['_toolset=="target"', {
515 'direct_dependent_settings': {
516 'cflags': [
517 '<!@(<(pkg-config) --cflags pangocairo)',
518 ],
519 },
520 'link_settings': {
521 'ldflags': [
522 '<!@(<(pkg-config) --libs-only-L --libs-only-other pangocairo)',
523 ],
524 'libraries': [
525 '<!@(<(pkg-config) --libs-only-l pangocairo)',
526 ],
527 },
528 }, {
529 'direct_dependent_settings': {
530 'cflags': [
531 '<!@(pkg-config --cflags pangocairo)',
532 ],
533 },
534 'link_settings': {
535 'ldflags': [
536 '<!@(pkg-config --libs-only-L --libs-only-other pangocairo)',
537 ],
538 'libraries': [
539 '<!@(pkg-config --libs-only-l pangocairo)',
540 ],
541 },
542 }],
543 ],
544 },
545 {
510 'target_name': 'libresolv', 546 'target_name': 'libresolv',
511 'type': 'settings', 547 'type': 'settings',
512 'link_settings': { 548 'link_settings': {
513 'libraries': [ 549 'libraries': [
514 '-lresolv', 550 '-lresolv',
515 ], 551 ],
516 }, 552 },
517 }, 553 },
518 { 554 {
519 'target_name': 'ibus', 555 'target_name': 'ibus',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 ], 595 ],
560 'libraries': [ 596 'libraries': [
561 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)', 597 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)',
562 ], 598 ],
563 }, 599 },
564 }], 600 }],
565 ], 601 ],
566 }, 602 },
567 ], 603 ],
568 } 604 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/language_switch_menu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698