OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 from . import steps | |
6 | |
7 SPEC = { | |
Paweł Hajdan Jr.
2014/08/14 11:25:39
This shouldn't be needed. chromium_trybot does not
cmumford
2014/08/26 16:00:43
Done.
| |
8 'builders': { | |
9 'Linux ASan LSan Builder': { | |
10 'recipe_config': 'chromium_asan', | |
11 'chromium_config_kwargs': { | |
12 'BUILD_CONFIG': 'Release', | |
13 'TARGET_BITS': 64, | |
14 }, | |
15 'bot_type': 'builder_tester', | |
16 'testing': {'platform': 'linux'}, | |
17 'testing': { | |
18 'platform': 'linux', | |
19 }, | |
20 }, | |
21 }, | |
22 } | |
23 | |
OLD | NEW |