OLD | NEW |
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 |
OLD | NEW |