Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium/tryserver_chromium_linux.py |
| diff --git a/scripts/slave/recipe_modules/chromium/tryserver_chromium_linux.py b/scripts/slave/recipe_modules/chromium/tryserver_chromium_linux.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..515b0ad0b014c20088d8c5f6c4c8a72dbe2fc614 |
| --- /dev/null |
| +++ b/scripts/slave/recipe_modules/chromium/tryserver_chromium_linux.py |
| @@ -0,0 +1,23 @@ |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +from . import steps |
| + |
| +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.
|
| + 'builders': { |
| + 'Linux ASan LSan Builder': { |
| + 'recipe_config': 'chromium_asan', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'builder_tester', |
| + 'testing': {'platform': 'linux'}, |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + }, |
| + }, |
| +} |
| + |