summaryrefslogtreecommitdiffstats
path: root/build/linux
diff options
context:
space:
mode:
authorscottmg@google.com <scottmg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 22:28:08 +0000
committerscottmg@google.com <scottmg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 22:28:08 +0000
commit47ced5e4a552bee8e0d350804044cd16082242bb (patch)
tree5d34fb58e3305745d0d32f94db62f019526a91ae /build/linux
parent77a3b1967055e8b3757d19e191ad1def92b2fe4a (diff)
downloadchromium_src-47ced5e4a552bee8e0d350804044cd16082242bb.zip
chromium_src-47ced5e4a552bee8e0d350804044cd16082242bb.tar.gz
chromium_src-47ced5e4a552bee8e0d350804044cd16082242bb.tar.bz2
Add gamepad data fetcher for Linux
BUG=79050 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=116724 Review URL: http://codereview.chromium.org/8899017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116752 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/linux')
-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)',
+ ],
+ },
+ }],
+ ],
+ },
],
}