コード例 #1
0
    def __init__(self, context):
        MachCommandBase.__init__(self, context)

        for attr in ('b2g_home', 'xre_path', 'device_name'):
            setattr(self, attr, getattr(context, attr, None))
コード例 #2
0
ファイル: mach_commands.py プロジェクト: 70599/Waterfox
 def __init__(self, context):
     MachCommandBase.__init__(self, context)
コード例 #3
0
    def __init__(self, context):
        MachCommandBase.__init__(self, context)

        for attr in ('b2g_home', 'xre_path', 'device_name', 'get_build_var'):
            setattr(self, attr, getattr(context, attr, None))
コード例 #4
0
ファイル: mach_commands.py プロジェクト: L2-D2/gecko-dev
    def __init__(self, context):
        MachCommandBase.__init__(self, context)

        for attr in ('b2g_home', 'device_name'):
            setattr(self, attr, getattr(context, attr, None))
コード例 #5
0
ファイル: mach_commands.py プロジェクト: Sts0mrg0/browser-f
 def __init__(self, context):
     MachCommandBase.__init__(self, context)
コード例 #6
0
    def __init__(self, context):
        MachCommandBase.__init__(self, context)

        for attr in ("b2g_home", "xre_path", "device_name"):
            setattr(self, attr, getattr(context, attr, None))
コード例 #7
0
ファイル: mach_commands.py プロジェクト: at13/mozilla-central
 def __init__(self, context):
     MachCommandBase.__init__(self, context)
     self._python_executable = None
コード例 #8
0
ファイル: mach_commands.py プロジェクト: soufianos01/juggler
 def __init__(self, context):
     MachCommandBase.__init__(self, context)
     self.remotedir = os.path.join(self.topsrcdir, "remote")
コード例 #9
0
ファイル: run_commands.py プロジェクト: ahal/b2g-commands
 def __init__(self, context):
     MachCommandBase.__init__(self, context)
     self.b2g_home = context.b2g_home
     self.device_name = context.device_name
コード例 #10
0
    def __init__(self, context):
        MachCommandBase.__init__(self, context)

        for attr in ('device_name', 'target_out'):
            setattr(self, attr, getattr(context, attr, None))
コード例 #11
0
 def __init__(self, context):
     MachCommandBase.__init__(self, context)
     self._python_executable = None