| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 copy | 5 import copy |
| 6 | 6 |
| 7 from . import chromium_chromiumos | 7 from . import chromium_chromiumos |
| 8 from . import steps | 8 from . import steps |
| 9 | 9 |
| 10 SPEC = copy.deepcopy(chromium_chromiumos.SPEC) | 10 SPEC = copy.deepcopy(chromium_chromiumos.SPEC) |
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 'src/third_party/WebKit/LayoutTests/OilpanExpectations', | 782 'src/third_party/WebKit/LayoutTests/OilpanExpectations', |
| 783 ]), | 783 ]), |
| 784 ], | 784 ], |
| 785 'testing': { | 785 'testing': { |
| 786 'platform': 'linux', | 786 'platform': 'linux', |
| 787 }, | 787 }, |
| 788 'enable_swarming': True, | 788 'enable_swarming': True, |
| 789 'use_isolate': True, | 789 'use_isolate': True, |
| 790 }, | 790 }, |
| 791 }) | 791 }) |
| OLD | NEW |