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

Unified Diff: tools/checkbins/checkbins.py

Issue 8806020: Add xinput1_3.dll to checkbins' excluded_files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/checkbins/checkbins.py
diff --git a/tools/checkbins/checkbins.py b/tools/checkbins/checkbins.py
index 708bebf5021849032fed46969c7226368ed6db63..e166eec5514f8cfece1b9b4f8aeaa590822e06af 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698