blob: 8bb18eb640c0c3dca860aba8fda08a1864b740e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# List of chrome.exe's dependencies.
dependents = [
'KERNEL32.dll',
'USER32.dll',
'ADVAPI32.dll',
'SHELL32.dll',
'VERSION.dll', # Used by breakpad
]
dependents_google_chrome = [
'KERNEL32.dll',
'USER32.dll',
'ADVAPI32.dll',
'SHELL32.dll',
'VERSION.dll',
]
delay_loaded = [
]
|