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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/client_skia.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
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 import os 6 import os
7 import sys 7 import sys
8 8
9 from . import chromium_linux 9 from . import chromium_linux
10 from . import chromium_mac 10 from . import chromium_mac
(...skipping 25 matching lines...) Expand all
36 } 36 }
37 37
38 for spec_module, test_spec_file, builders_list in _builders: 38 for spec_module, test_spec_file, builders_list in _builders:
39 for builder in builders_list: 39 for builder in builders_list:
40 for builder_name in (builder, builder_name_schema.TrybotName(builder)): 40 for builder_name in (builder, builder_name_schema.TrybotName(builder)):
41 builder_cfg = copy.deepcopy(spec_module.SPEC['builders'][builder]) 41 builder_cfg = copy.deepcopy(spec_module.SPEC['builders'][builder])
42 builder_cfg['gclient_config'] = 'chromium_skia' 42 builder_cfg['gclient_config'] = 'chromium_skia'
43 builder_cfg['testing']['test_spec_file'] = test_spec_file 43 builder_cfg['testing']['test_spec_file'] = test_spec_file
44 builder_cfg['patch_root'] = 'src/third_party/skia' 44 builder_cfg['patch_root'] = 'src/third_party/skia'
45 SPEC['builders'][builder_name] = builder_cfg 45 SPEC['builders'][builder_name] = builder_cfg
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698