Home | History | Annotate | Download | only in port

Lines Matching refs:port_name

36 def get(platform=None, port_name='chromium-gpu', **kwargs):
41 if port_name == 'chromium-gpu':
43 port_name = 'chromium-gpu-win'
45 port_name = 'chromium-gpu-linux'
47 port_name = 'chromium-gpu-mac'
51 if port_name.startswith('chromium-gpu-linux'):
52 return ChromiumGpuLinuxPort(port_name=port_name, **kwargs)
53 if port_name.startswith('chromium-gpu-mac'):
54 return ChromiumGpuMacPort(port_name=port_name, **kwargs)
55 if port_name.startswith('chromium-gpu-win'):
56 return ChromiumGpuWinPort(port_name=port_name, **kwargs)
57 raise NotImplementedError('unsupported port: %s' % port_name)
89 def __init__(self, port_name='chromium-gpu-linux', **kwargs):
90 chromium_linux.ChromiumLinuxPort.__init__(self, port_name=port_name, **kwargs)
110 def __init__(self, port_name='chromium-gpu-mac', **kwargs):
111 chromium_mac.ChromiumMacPort.__init__(self, port_name=port_name, **kwargs)
130 def __init__(self, port_name='chromium-gpu-win', **kwargs):
131 chromium_win.ChromiumWinPort.__init__(self, port_name=port_name, **kwargs)