summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-24 00:57:54 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-24 00:57:54 +0000
commit58e56144d4831f31dbd4ea534d538bc7ae75fe03 (patch)
tree0317066e89d52530c6dfe7a6a2419be9a37ff2d7 /build
parent65d6800d7c15fb13895ab3770b39c1e7f547ed94 (diff)
downloadchromium_src-58e56144d4831f31dbd4ea534d538bc7ae75fe03.zip
chromium_src-58e56144d4831f31dbd4ea534d538bc7ae75fe03.tar.gz
chromium_src-58e56144d4831f31dbd4ea534d538bc7ae75fe03.tar.bz2
Add gamepad hardware data fetcher, and higher level thread container
DataFetcher is the hardware and platform-specific data getter that talks to OS level interfaces for each platform and fill in a structure provided to it. Currently only Windows is here. Provider is a manager for the background thread that the DataFetcher runs on, and interacts with the rest of browser. This is part of a larger patch, the remainder of which is at http://codereview.chromium.org/8345027/ BUG=79050 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=111189 Review URL: http://codereview.chromium.org/8568029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111456 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 8f840b4..b728380 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2425,8 +2425,8 @@
}],
],
'msvs_system_include_dirs': [
- '<(DEPTH)/third_party/platformsdk_win7/files/Include',
'<(DEPTH)/third_party/directxsdk/files/Include',
+ '<(DEPTH)/third_party/platformsdk_win7/files/Include',
'$(VSInstallDir)/VC/atlmfc/include',
],
'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
@@ -2463,8 +2463,8 @@
'VCLibrarianTool': {
'AdditionalOptions': ['/ignore:4221'],
'AdditionalLibraryDirectories': [
- '<(DEPTH)/third_party/platformsdk_win7/files/Lib',
'<(DEPTH)/third_party/directxsdk/files/Lib/x86',
+ '<(DEPTH)/third_party/platformsdk_win7/files/Lib',
],
},
'VCLinkerTool': {
@@ -2500,8 +2500,8 @@
}],
],
'AdditionalLibraryDirectories': [
- '<(DEPTH)/third_party/platformsdk_win7/files/Lib',
'<(DEPTH)/third_party/directxsdk/files/Lib/x86',
+ '<(DEPTH)/third_party/platformsdk_win7/files/Lib',
],
'GenerateDebugInformation': 'true',
'MapFileName': '$(OutDir)\\$(TargetName).map',