blob: ec8c11b51b11393edfa131b7f8b8787864d38ecd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#filter substitution
import os
import sys
sys.path.append(os.path.join('@topsrcdir@', 'js', 'src', 'gdb'))
sys.path.append(os.path.join('@topsrcdir@', 'python', 'gdbpp'))
# JS prettyprinters
import mozilla.autoload
mozilla.autoload.register(gdb.current_objfile())
import mozilla.asmjs
mozilla.asmjs.install()
# Gecko prettyprinters
import gdbpp
|