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

Unified Diff: scripts/slave/process_dumps.py

Issue 2365773002: Add Windows 10 location for debugger in process_dumps.py (Closed)
Patch Set: Created 4 years, 3 months 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: scripts/slave/process_dumps.py
diff --git a/scripts/slave/process_dumps.py b/scripts/slave/process_dumps.py
index be6caf2480a0b4c97e283f0c07062d51ca54813f..4d014982515df8af8ac78f4a260d42726371cb4d 100755
--- a/scripts/slave/process_dumps.py
+++ b/scripts/slave/process_dumps.py
@@ -57,6 +57,10 @@ def ProbeDebuggerDir():
debugger_dir = '%s\\Windows Kits\\8.1\\Debuggers\\x64' % program_files
if CdbExistsAtLocation(debugger_dir):
return debugger_dir
+ # windows 10 64 bit
+ debugger_dir = '%s\\Windows Kits\\10\\Debuggers\\x64' % program_files
+ if CdbExistsAtLocation(debugger_dir):
+ return debugger_dir
program_files = os.environ.get('PROGRAMW6432')
if not program_files:
return None
« 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