| 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 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-chromiumos-archive', | 9 'build_gs_bucket': 'chromium-chromiumos-archive', |
| 10 }, | 10 }, |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'unit_tests', | 50 'unit_tests', |
| 51 'url_unittests', | 51 'url_unittests', |
| 52 'views_unittests', | 52 'views_unittests', |
| 53 ], | 53 ], |
| 54 'tests': [ | 54 'tests': [ |
| 55 steps.ArchiveBuildStep( | 55 steps.ArchiveBuildStep( |
| 56 'chromium-browser-snapshots', | 56 'chromium-browser-snapshots', |
| 57 gs_acl='public-read', | 57 gs_acl='public-read', |
| 58 ), | 58 ), |
| 59 steps.Deps2GitTest(), | 59 steps.Deps2GitTest(), |
| 60 steps.Deps2SubmodulesTest(), | |
| 61 steps.CheckpermsTest(), | 60 steps.CheckpermsTest(), |
| 62 ], | 61 ], |
| 63 'testing': { | 62 'testing': { |
| 64 'platform': 'linux', | 63 'platform': 'linux', |
| 65 }, | 64 }, |
| 66 }, | 65 }, |
| 67 | 66 |
| 68 'Linux ChromiumOS Builder': { | 67 'Linux ChromiumOS Builder': { |
| 69 'recipe_config': 'chromium_chromeos', | 68 'recipe_config': 'chromium_chromeos', |
| 70 'chromium_config_kwargs': { | 69 'chromium_config_kwargs': { |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 'tests': [ | 209 'tests': [ |
| 211 steps.DynamicGTestTests('Linux ChromiumOS Tests (dbg)(3)'), | 210 steps.DynamicGTestTests('Linux ChromiumOS Tests (dbg)(3)'), |
| 212 ], | 211 ], |
| 213 'parent_buildername': 'Linux ChromiumOS Builder (dbg)', | 212 'parent_buildername': 'Linux ChromiumOS Builder (dbg)', |
| 214 'testing': { | 213 'testing': { |
| 215 'platform': 'linux', | 214 'platform': 'linux', |
| 216 }, | 215 }, |
| 217 }, | 216 }, |
| 218 }, | 217 }, |
| 219 } | 218 } |
| OLD | NEW |