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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_webrtc_fyi.py

Issue 2097223002: Remove traces of removed Mac/Win GN builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 collections 6 import collections
7 7
8 from . import chromium_linux 8 from . import chromium_linux
9 from . import chromium_mac 9 from . import chromium_mac
10 from . import chromium_win 10 from . import chromium_win
11 from . import chromium_webrtc 11 from . import chromium_webrtc
12 12
13 13
14 # GN builders are added first. They're setup to be as similar as possible to 14 # GN builders are added first. They're setup to be as similar as possible to
15 # the builders in Chromium, to be able to detect breakages pre-roll. 15 # the builders in Chromium, to be able to detect breakages pre-roll.
16 SPEC = { 16 SPEC = {
17 'settings': { 17 'settings': {
18 'build_gs_bucket': 'chromium-webrtc', 18 'build_gs_bucket': 'chromium-webrtc',
19 }, 19 },
20 'builders': {}, 20 'builders': {},
21 } 21 }
22 22
23 23
24 def AddGNBuilder(spec, name, dest_name=None): 24 def AddGNBuilder(spec, name, dest_name=None):
25 SPEC['builders'][dest_name or name] = copy.deepcopy(spec['builders'][name]) 25 SPEC['builders'][dest_name or name] = copy.deepcopy(spec['builders'][name])
26 26
27 27
28 AddGNBuilder(chromium_mac.SPEC, 'Mac GN') 28 AddGNBuilder(chromium_mac.SPEC, 'Mac Builder', 'Mac GN')
29 AddGNBuilder(chromium_mac.SPEC, 'Mac GN (dbg)') 29 AddGNBuilder(chromium_mac.SPEC, 'Mac Builder (dbg)', 'Mac GN (dbg)')
Dirk Pranke 2016/06/25 05:10:46 @kjellander - I had to swap these in since the old
30 AddGNBuilder(chromium_win.SPEC, 'Win x64 Builder', 'Win x64 GN') 30 AddGNBuilder(chromium_win.SPEC, 'Win x64 Builder', 'Win x64 GN')
31 AddGNBuilder(chromium_win.SPEC, 'Win x64 Builder (dbg)', 'Win x64 GN (dbg)') 31 AddGNBuilder(chromium_win.SPEC, 'Win x64 Builder (dbg)', 'Win x64 GN (dbg)')
32 32
33 33
34 for b in SPEC['builders'].itervalues(): 34 for b in SPEC['builders'].itervalues():
35 b.setdefault('gclient_apply_config', []) 35 b.setdefault('gclient_apply_config', [])
36 b['gclient_apply_config'].append('chromium_webrtc_tot') 36 b['gclient_apply_config'].append('chromium_webrtc_tot')
37 b['tests'] = [] # These WebRTC builders only run compile. 37 b['tests'] = [] # These WebRTC builders only run compile.
38 38
39 39
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 target_bits=32, build_config='Debug') 85 target_bits=32, build_config='Debug')
86 AddTestSpec('Android Tests (dbg) (L Nexus6)', 86 AddTestSpec('Android Tests (dbg) (L Nexus6)',
87 'chromium-webrtc-trunk-tot-dbg-android-nexus6', 'android', 87 'chromium-webrtc-trunk-tot-dbg-android-nexus6', 'android',
88 target_bits=32, build_config='Debug') 88 target_bits=32, build_config='Debug')
89 AddTestSpec('Android Tests (dbg) (L Nexus7.2)', 89 AddTestSpec('Android Tests (dbg) (L Nexus7.2)',
90 'chromium-webrtc-trunk-tot-dbg-android-nexus72', 'android', 90 'chromium-webrtc-trunk-tot-dbg-android-nexus72', 'android',
91 target_bits=32, build_config='Debug') 91 target_bits=32, build_config='Debug')
92 AddTestSpec('Android Tests (dbg) (L Nexus9)', 92 AddTestSpec('Android Tests (dbg) (L Nexus9)',
93 'chromium-webrtc-trunk-tot-dbg-android-nexus9', 'android', 93 'chromium-webrtc-trunk-tot-dbg-android-nexus9', 'android',
94 build_config='Debug') 94 build_config='Debug')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698