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

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

Issue 193813003: ozone: evdev: Add libgestures bindings for touchpad & mouse support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add class comments Created 6 years, 9 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"', 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"',
10 }, { 10 }, {
(...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after
997 'ldflags': [ 997 'ldflags': [
998 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)', 998 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)',
999 ], 999 ],
1000 'libraries': [ 1000 'libraries': [
1001 '<!@(<(pkg-config) --libs-only-l libudev)', 1001 '<!@(<(pkg-config) --libs-only-l libudev)',
1002 ], 1002 ],
1003 }, 1003 },
1004 }], 1004 }],
1005 ], 1005 ],
1006 }, 1006 },
1007 {
1008 'target_name': 'libevdev-cros',
1009 'type': 'none',
1010 'conditions': [
1011 ['use_evdev_gestures == 1', {
1012 'direct_dependent_settings': {
1013 'cflags': [
1014 '<!@(<(pkg-config) --cflags libevdev-cros)'
1015 ],
1016 },
1017 'link_settings': {
1018 'ldflags': [
1019 '<!@(<(pkg-config) --libs-only-L --libs-only-other libevdev-cros)' ,
1020 ],
1021 'libraries': [
1022 '<!@(<(pkg-config) --libs-only-l libevdev-cros)',
1023 ],
1024 },
1025 }],
1026 ],
1027 },
1028 {
1029 'target_name': 'libgestures',
1030 'type': 'none',
1031 'conditions': [
1032 ['use_evdev_gestures == 1', {
1033 'direct_dependent_settings': {
1034 'cflags': [
1035 '<!@(<(pkg-config) --cflags libgestures)'
1036 ],
1037 },
1038 'link_settings': {
1039 'ldflags': [
1040 '<!@(<(pkg-config) --libs-only-L --libs-only-other libgestures)',
1041 ],
1042 'libraries': [
1043 '<!@(<(pkg-config) --libs-only-l libgestures)',
1044 ],
1045 },
1046 }],
1047 ],
1048 },
1007 ], 1049 ],
1008 } 1050 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | ui/events/events.gyp » ('j') | ui/events/events.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698