mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	This patch: - moves PrintDepsWindows folder to `//browser_patches/winldd` - adds `build.sh`, `archive.sh`, `clean.sh` and `BUILD_NUMBER` to power builds on buildbots - starts building `winldd-win64` on windows buildbot
		
			
				
	
	
		
			12 lines
		
	
	
		
			622 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			622 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# Tool for printing .exe and .dll dependencies on Windows
 | 
						|
 | 
						|
This is similar to `ldd` on linux in that loads specified files and tries to
 | 
						|
resolve all DLLs referenced by it, printing in the formar `<lib name> => <full path> | "no found"`
 | 
						|
To minimize dependencies we link all C runtime libraries statically, there is
 | 
						|
still one dynamic dependency on `dbghelp.dll` which is supposed to be preinstalled
 | 
						|
on all Windows machines.
 | 
						|
 | 
						|
## Build instructions
 | 
						|
 | 
						|
Open `PrintDeps.sln` solution in Visual Studio 2019 and build `x64/Release` configuration. We
 | 
						|
currently commit output binary into `bin/PrintDeps.exe` and bundle it in every npm. |