mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9 lines
233 B
Python
9 lines
233 B
Python
""" GDB Python customization auto-loader for libxul """
|
|
#filter substitution
|
|
|
|
import os.path
|
|
sys.path[0:0] = [os.path.join('@topsrcdir@', 'js', 'src', 'gdb')]
|
|
|
|
import mozilla.autoload
|
|
mozilla.autoload.register(gdb.current_objfile())
|