Home | History | Annotate | Download | only in browsertester

Lines Matching refs:cmd

177   def Launch(self, cmd, env):
178 browser_path = cmd[0]
197 print 'LAUNCHING: %s' % ' '.join(cmd)
199 self.browser_process = RunCommand(cmd, env=env)
212 cmd = self.MakeCmd(url, host, port)
213 self.Launch(cmd, MakeEnv(self.options))
265 cmd = [self.binary,
295 cmd.append('--log-net-log=%s' % self.NetLogName())
299 cmd.append('--use-gl=osmesa')
301 cmd.append('--enable-nacl')
308 cmd.append('--no-sandbox')
310 cmd.append('--register-pepper-plugins=%s;%s'
313 cmd.append('--no-sandbox')
315 cmd.append('--load-extension=%s' %
317 cmd.append('--enable-experimental-extension-apis')
319 cmd.append('--enable-crash-reporter-for-testing')
321 cmd = ['src/third_party/valgrind/memcheck.sh',
332 '--log-file=%s/log.%%p' % (self.tool_log_dir,)] + cmd
334 cmd = ['src/third_party/valgrind/tsan.sh',
341 '--log-file=%s/log.%%p' % (self.tool_log_dir,)] + cmd
345 cmd.append('--allow-nacl-socket-api=%s' % host)
346 cmd.extend(self.options.browser_flags)
347 cmd.append(url)
348 return cmd