summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorscottmg@google.com <scottmg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 20:25:31 +0000
committerscottmg@google.com <scottmg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 20:25:31 +0000
commit361e5cbf9de1ee2f14a66014c90ee140f72e8a05 (patch)
tree809d8bdcd905ad9bc1cffae933b2136f1a09a6cd /build
parent5d99bd565007df94b327a550c30c36ff8221dcd8 (diff)
downloadchromium_src-361e5cbf9de1ee2f14a66014c90ee140f72e8a05.zip
chromium_src-361e5cbf9de1ee2f14a66014c90ee140f72e8a05.tar.gz
chromium_src-361e5cbf9de1ee2f14a66014c90ee140f72e8a05.tar.bz2
Add gamepad data fetcher for Linux
BUG=79050 Review URL: http://codereview.chromium.org/8899017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116724 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/linux/system.gyp21
1 files changed, 21 insertions, 0 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp
index 90c8b45..cc50d59 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -625,5 +625,26 @@
}],
],
},
+ {
+ 'target_name': 'udev',
+ 'type': 'none',
+ 'conditions': [
+ ['_toolset=="target"', {
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags libudev)'
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)',
+ ],
+ 'libraries': [
+ '<!@(<(pkg-config) --libs-only-l libudev)',
+ ],
+ },
+ }],
+ ],
+ },
],
}