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

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

Issue 7457023: Adding a Wayland basic toolkit (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Formatting and moved library deps to system.gyp Created 9 years, 4 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 | ui/wayland/events/wayland_event.h » ('j') | ui/wayland/wayland.gyp » ('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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 'ldflags': [ 456 'ldflags': [
457 '<!@(<(pkg-config) --libs-only-L --libs-only-other "ibus-1.0 >= <( ibus_min_version)")', 457 '<!@(<(pkg-config) --libs-only-L --libs-only-other "ibus-1.0 >= <( ibus_min_version)")',
458 ], 458 ],
459 'libraries': [ 459 'libraries': [
460 '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_min_version)" )', 460 '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_min_version)" )',
461 ], 461 ],
462 }, 462 },
463 }], 463 }],
464 ], 464 ],
465 }, 465 },
466 {
467 'target_name': 'wayland',
468 'type': 'settings',
469 'conditions': [
470 ['use_wayland == 1', {
471 'cflags': [
472 '<!@(<(pkg-config) --cflags cairo wayland-client wayland-egl xkbcomm on)',
tfarina 2011/07/26 16:14:41 I think wayland-client and the others will be need
473 ],
474 'direct_dependent_settings': {
475 'cflags': [
476 '<!@(<(pkg-config) --cflags cairo wayland-client wayland-egl xkbco mmon)',
477 ],
478 },
479 'link_settings': {
480 'ldflags': [
481 '<!@(<(pkg-config) --libs-only-L --libs-only-other wayland-client wayland-egl xkbcommon)',
482 ],
483 'libraries': [
484 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)',
485 ],
486 },
487 }],
488 ],
489 },
466 ], 490 ],
467 } 491 }
OLDNEW
« no previous file with comments | « no previous file | ui/wayland/events/wayland_event.h » ('j') | ui/wayland/wayland.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698