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

Side by Side Diff: infra/bots/recipe_modules/core/android_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
« no previous file with comments | « infra/bots/recipe_modules/core/__init__.py ('k') | infra/bots/recipe_modules/core/api.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'vm693-m3': SlaveInfo('noserial', MACMINI_SDK_ROOT, False), 90 'vm693-m3': SlaveInfo('noserial', MACMINI_SDK_ROOT, False),
91 'skiabot-linux-swarm-000': SlaveInfo('noserial', DEFAULT_SDK_ROOT, True), 91 'skiabot-linux-swarm-000': SlaveInfo('noserial', DEFAULT_SDK_ROOT, True),
92 'default': 92 'default':
93 SlaveInfo('noserial', DEFAULT_SDK_ROOT, False), 93 SlaveInfo('noserial', DEFAULT_SDK_ROOT, False),
94 } 94 }
95 95
96 96
97 if __name__ == '__main__': 97 if __name__ == '__main__':
98 print json.dumps(SLAVE_INFO) # pragma: no cover 98 print json.dumps(SLAVE_INFO) # pragma: no cover
99 99
OLDNEW
« no previous file with comments | « infra/bots/recipe_modules/core/__init__.py ('k') | infra/bots/recipe_modules/core/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698