summaryrefslogtreecommitdiffstats
path: root/tools/checkbins
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-06 02:37:30 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-06 02:37:30 +0000
commitfe78b8ce39d0721c806a375811406291f3f9d67a (patch)
tree113c5a843177375c61d752ef6b8cdc7e59a02d5f /tools/checkbins
parent6c27a1fd292d5c11f071adb0ca3146a5d09f323d (diff)
downloadchromium_src-fe78b8ce39d0721c806a375811406291f3f9d67a.zip
chromium_src-fe78b8ce39d0721c806a375811406291f3f9d67a.tar.gz
chromium_src-fe78b8ce39d0721c806a375811406291f3f9d67a.tar.bz2
Add xinput1_3.dll to checkbins' excluded_files
xinput1_3.dll is a Microsoft DirectX redist file. Unfortunately it's shipped without /NXCOMPAT and /DYNAMICBASE. This DLL is only be loaded when the user interacts with a gamepad. BUG=79050 Review URL: http://codereview.chromium.org/8806020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113091 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/checkbins')
-rwxr-xr-xtools/checkbins/checkbins.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/checkbins/checkbins.py b/tools/checkbins/checkbins.py
index 708bebf5..e166eec 100755
--- a/tools/checkbins/checkbins.py
+++ b/tools/checkbins/checkbins.py
@@ -30,7 +30,9 @@ MACHINE_TYPE_AMD64 = 0x8664
# Windows guru for advice.
EXCLUDED_FILES = ['chrome_frame_mini_installer.exe',
'mini_installer.exe',
- 'wow_helper.exe']
+ 'wow_helper.exe',
+ 'xinput1_3.dll' # Microsoft DirectX redistributable.
+ ]
def IsPEFile(path):
return (os.path.isfile(path) and