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

Side by Side Diff: infra/bots/recipe_modules/core/ssh_devices.py

Issue 2198173002: Re-organize Skia recipes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix missing dependency Created 4 years, 4 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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2015 The Chromium Authors. All rights reserved. 2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 6
7 import collections 7 import collections
8 import json 8 import json
9 9
10 10
(...skipping 10 matching lines...) Expand all
21 'skiabot-shuttle-ubuntu12-004': 21 'skiabot-shuttle-ubuntu12-004':
22 SlaveInfo('root', '192.168.1.134', DEFAULT_PORT), 22 SlaveInfo('root', '192.168.1.134', DEFAULT_PORT),
23 'default': 23 'default':
24 SlaveInfo('nouser', 'noip', 'noport'), 24 SlaveInfo('nouser', 'noip', 'noport'),
25 } 25 }
26 26
27 27
28 if __name__ == '__main__': 28 if __name__ == '__main__':
29 print json.dumps(SLAVE_INFO) # pragma: no cover 29 print json.dumps(SLAVE_INFO) # pragma: no cover
30 30
OLDNEW
« no previous file with comments | « infra/bots/recipe_modules/core/resources/upload_dm_results.py ('k') | infra/bots/recipe_modules/flavor/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698