Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: scripts/slave/recipe_modules/chromium/chromium_lkgr.py

Issue 1185693002: Move builders.py and steps.py to chromium_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Address review comments. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 RESULTS_URL = 'https://chromeperf.appspot.com'
8
9 SPEC = {
10 'builders': {
11 'Win SyzyASAN LKGR': {
12 'chromium_config': 'chromium_no_goma',
13 'chromium_apply_config': ['syzyasan', 'clobber'],
14 'gclient_config': 'chromium',
15 'chromium_config_kwargs': {
16 'BUILD_CONFIG': 'Release',
17 'TARGET_BITS': 32,
18 },
19 'bot_type': 'builder',
20 'disable_tests': True,
21 'cf_archive_build': True,
22 'cf_gs_bucket': 'chromium-browser-syzyasan',
23 'cf_gs_acl': 'public-read',
24 'cf_archive_name': 'asan',
25 'compile_targets': [
26 'chromium_builder_asan',
27 ],
28 'testing': {
29 'platform': 'win',
30 },
31 },
32 },
33 }
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium/chromium_linux.py ('k') | scripts/slave/recipe_modules/chromium/chromium_mac.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698