Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: build/android/pylib/local/machine/local_machine_environment.py

Issue 2605083002: [android] Clean up test_runner.py arguments. (Closed)
Patch Set: mikecase comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import devil_chromium
6 from pylib import constants
5 from pylib.base import environment 7 from pylib.base import environment
6 8
7 9
8 class LocalMachineEnvironment(environment.Environment): 10 class LocalMachineEnvironment(environment.Environment):
9 11
10 def __init__(self, _args, _error_func): 12 def __init__(self, _args, _error_func):
11 super(LocalMachineEnvironment, self).__init__() 13 super(LocalMachineEnvironment, self).__init__()
12 14
15 devil_chromium.Initialize(
16 output_directory=constants.GetOutDirectory())
17
13 #override 18 #override
14 def SetUp(self): 19 def SetUp(self):
15 pass 20 pass
16 21
17 #override 22 #override
18 def TearDown(self): 23 def TearDown(self):
19 pass 24 pass
OLDNEW
« no previous file with comments | « build/android/pylib/local/device/local_device_environment.py ('k') | build/android/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698