This undoes the mistaken move of this directory into third_party that happened as part of bug 1346025. Differential Revision: https://phabricator.services.mozilla.com/D57141
20 lines
472 B
Python
20 lines
472 B
Python
# Any copyright is dedicated to the Public Domain.
|
|
# http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
from __future__ import absolute_import
|
|
import lldb
|
|
|
|
|
|
__all__ = ['content', 'general', 'gfx', 'layout', 'utils']
|
|
|
|
|
|
def init():
|
|
for name in __all__:
|
|
init = None
|
|
try:
|
|
init = __import__('lldbutils.' + name, globals(), locals(), ['init']).init
|
|
except AttributeError:
|
|
pass
|
|
if init:
|
|
init(lldb.debugger)
|