https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 284f5c756bb7b0f967dc6ec76c7ddbf856d3bc07 authored by Carsten "Tomcat" Book on 14 December 2015, 07:24:17 UTC
merge mozilla-aurora to b2g44 a=merge
Tip revision: 284f5c7
js-gdb.py.in
""" GDB Python customization auto-loader for js shell """
#filter substitution

import os.path
sys.path[0:0] = [os.path.join('@topsrcdir@', 'gdb')]

import mozilla.autoload
mozilla.autoload.register(gdb.current_objfile())

import mozilla.asmjs
mozilla.asmjs.install()
back to top