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